/* ============================================
   PICAM MOBILIARIOS - CSS DEFINITIVO 100% RESPONSIVE
   🔥 SIN DUPLICADOS | ✅ CONTROLES PEGADOS
   ============================================ */

:root { 
  --color-dorado: #FFD700;
  --color-dorado-claro: #FFF000;
  --color-dorado-oscuro: #FFC700;
  --color-verde: #2d5f3f;
  --color-verde-claro: #4a9d5f;
  --color-verde-oscuro: #1e3d2b;
  --color-verde-transparente: rgba(45, 95, 63, 0.85);
  --color-verde-suave: rgba(45, 95, 63, 0.05);
  --color-verde-brillante: #4ade80;
  --color-promo-naranja: #FF6B35;
  --color-promo-rojo: #E63946;
  --fuente-principal: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --border-radius-base: 12px;
  --border-radius-card: 16px;
  --border-radius-grande: 24px;
  --border-radius-completo: 50px;
  --sombra-base: 0 4px 15px rgba(0, 0, 0, 0.08);
  --sombra-media: 0 8px 25px rgba(0, 0, 0, 0.15);
  --sombra-fuerte: 0 12px 30px rgba(45, 95, 63, 0.2);
  --sombra-dorada: 0 6px 20px rgba(255, 215, 0, 0.3);
  --transicion-base: all 0.3s ease;
  --transicion-rapida: all 0.2s ease;
  --transicion-lenta: all 0.5s ease;
  --z-navbar: 1050;
  --z-info-bar: 1049;
  --z-floating-banner: 1048;
  --z-popup: 1047;
  --z-whatsapp: 1045;
  --z-scroll-top: 1040;
  --z-modal: 1060;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--fuente-principal);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 56px;
  margin: 0;
  position: relative;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
 
.skip-to-main {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-verde-oscuro);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: calc(var(--z-modal) + 1);
}

.skip-to-main:focus {
  top: 0;
}

/* ============================================
   ANIMACIONES OPTIMIZADAS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes glow {
  0%, 100% { 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5),
                 0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% { 
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 30px rgba(255, 215, 0, 0.5);
  }
}

@keyframes expandLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes glowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
  }
}

@keyframes slideInCheck {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in { animation: fadeIn 1s ease-out; }
.animate-fade-in-delay { animation: fadeIn 1s ease-out 0.3s backwards; }
.animate-slide-up { animation: slideUp 0.8s ease-out; }
.animate-slide-left { animation: slideLeft 0.8s ease-out; }
.animate-scale { animation: scaleUp 0.6s ease-out; }
.animate-bounce { animation: bounce 2s infinite; }

.text-dorado { color: var(--color-dorado) !important; }
.text-verde { color: var(--color-verde) !important; }
.cursor-pointer { cursor: pointer; }
.container { max-width: 1200px; }
.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.fw-black { font-weight: 900; }

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
  background: linear-gradient(to bottom, rgba(30, 61, 43, 0.88) 0%, rgba(30, 61, 43, 0.92) 100%);
  backdrop-filter: blur(12px);
  transition: var(--transicion-base);
  box-shadow: none;
  z-index: var(--z-navbar);
  border: none;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateZ(0); 
  will-change: background, box-shadow;
}

#mainNav .container {
  margin: 0 auto;
  padding: 0.5rem 1rem;
  border-bottom: none;
}

#mainNav .navbar-brand {
  margin: 0;
  padding: 0.5rem 0;
}

#mainNav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: var(--transicion-base);
  position: relative;
  padding: 8px 16px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active,
#mainNav .nav-link:focus {
  color: var(--color-dorado);
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ============================================
   CINTA INFINITA
   ============================================ */
.info-ticker-bar {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, #2d5f3f 0%, #1e3d2b 50%, #FFD700 100%);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3); 
  border-top: none;
  z-index: var(--z-info-bar);
  height: 38px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  margin: 0;
  margin-top: -1px;
  padding: 0;
  transform: translateZ(0); 
  will-change: transform;
  opacity: 1 !important;
  visibility: visible !important;
}

.ticker-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 13px; 
  opacity: 1 !important;
  visibility: visible !important;
}

.ticker-content {
  display: flex !important;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 130s linear infinite;
  padding-left: 0;
  padding-top: 2px;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  animation-play-state: running !important;
}

.ticker-content:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-dorado);
  font-weight: 600;
  padding: 0 25px;
  animation: glow 3s ease-in-out infinite;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8),
               0 0 25px rgba(255, 215, 0, 0.5);
}

.ticker-item i {
  font-size: 1rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

.ticker-item a {
  color: var(--color-dorado);
  text-decoration: none;
  transition: var(--transicion-rapida);
  text-shadow: inherit;
}

.ticker-item a:hover {
  color: #fff;
  text-decoration: underline;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
}

.ticker-separator {
  color: rgba(255, 215, 0, 0.6);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 15px;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

/* ============================================
   BANNER FLOTANTE
   ============================================ */
.promo-floating-banner {
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-promo-naranja) 0%, var(--color-promo-rojo) 100%);
  color: white;
  padding: 12px 20px;
  z-index: var(--z-floating-banner);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  display: none;
}

.promo-floating-banner.show {
  transform: translateY(0);
  display: block;
}

.promo-floating-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.promo-floating-icon {
  font-size: 1.3rem;
  animation: pulse 2s infinite;
}

.promo-floating-text {
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1;
  text-align: center;
}

.btn-close-floating {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transicion-base);
  color: white;
  margin-left: auto;
}

.btn-close-floating:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* ============================================
   MODAL PROMO GRANDE
   ============================================ */
.promo-modal-grande-content {
  border: none;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3d2b 0%, #2d5f3f 50%, #1e3d2b 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.promo-modal-grande-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.btn-close-promo-grande {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transicion-base);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1.2rem;
}

.btn-close-promo-grande:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}

.promo-modal-grande-wrapper {
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.promo-modal-grande-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-promo-naranja), var(--color-promo-rojo));
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  animation: pulse 2s infinite;
  margin-bottom: 25px;
}

.promo-modal-grande-badge-icon {
  font-size: 1.2rem;
}

.promo-modal-grande-title {
  font-size: clamp(1.3rem, 4vw, 2rem); 
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.discount-highlight {
  color: var(--color-dorado);
  font-size: 1.3em;
  display: inline-block;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: glow 2s ease-in-out infinite;
}

.promo-modal-grande-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.5;
}

.promo-modal-grande-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 25px 0;
}

.promo-feature-item {
  flex-direction: column;
  text-align: center;
  padding: 15px 12px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: var(--transicion-base);
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.promo-feature-item i {
  color: var(--color-dorado);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
  margin-bottom: 8px;
}

.btn-promo-modal-grande {
  background: linear-gradient(135deg, var(--color-dorado) 0%, var(--color-dorado-oscuro) 100%);
  color: var(--color-verde-oscuro);
  border: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transicion-base);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.btn-promo-modal-grande:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.7);
}

.promo-modal-grande-timer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-top: 25px;
  font-style: italic;
}

/* ============================================
   POP-UP LATERAL
   ============================================ */
.promo-popup-lateral {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 320px;
  background: linear-gradient(135deg, var(--color-verde-oscuro) 0%, var(--color-verde) 100%);
  border-radius: 20px;
  padding: 25px;
  z-index: var(--z-popup);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(255, 215, 0, 0.3);
  display: none;
}

.promo-popup-lateral.show {
  transform: translateX(0);
  opacity: 1;
  display: block;
}

.btn-close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transicion-base);
  color: white;
}

.btn-close-popup:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.promo-popup-content {
  text-align: center;
  color: white;
}

.promo-popup-badge {
  background: linear-gradient(135deg, var(--color-promo-naranja), var(--color-promo-rojo));
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

.promo-popup-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.promo-popup-discount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-dorado);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.btn-promo-popup {
  background: linear-gradient(135deg, var(--color-dorado) 0%, var(--color-dorado-oscuro) 100%);
  color: var(--color-verde-oscuro);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transicion-base);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-promo-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: url('IMG/hero-picam/hero-inicio-picam-mobiliarios.webp') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 61, 43, 0.6) 0%, rgba(30, 61, 43, 0.85) 100%);
}

.hero-content {
  z-index: 2;
  position: relative;
  padding: clamp(1rem, 5vw, 3rem);
}

.hero-section h2 {
  font-size: clamp(1.2rem, 4vw, 2rem);
  letter-spacing: 2px;
}

.hero-section h1 {
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  line-height: 1.2;
}

.hero-section .lead {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
  position: relative;
  background: url('https://images.pexels.com/photos/20342118/pexels-photo-20342118.jpeg') center/cover no-repeat;
  min-height: clamp(180px, 25vh, 30vh); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 61, 43, 0.75) 0%, rgba(20, 40, 30, 0.9) 100%);
}

.header-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.header-content h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
  margin-bottom: 10px !important;
}

.header-content .lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
}

/* Importar tipografías elegantes desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@700;800&display=swap');

/* ============================================
   SECCIÓN NOSOTROS
   ============================================ */

/* 1. HEADER (INTACTO - NO SE TOCÓ) */
.page-header-nosotros {
  position: relative;
  background: url('https://images.pexels.com/photos/20342118/pexels-photo-20342118.jpeg') center/cover no-repeat;
  min-height: clamp(180px, 25vh, 30vh);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header-nosotros::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 61, 43, 0.75) 0%, rgba(20, 40, 30, 0.9) 100%);
}

.header-content-nosotros {
  position: relative;
  z-index: 2;
  color: white;
  padding: clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.header-content-nosotros h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem) !important;
  margin-bottom: 10px !important;
}

.header-content-nosotros .lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem) !important;
}

/* 2. NUEVA SECCIÓN CENTRAL (REDUCIDA Y ELEGANTE) */
.nosotros-nueva-seccion {
  /* Degradado sutil: Combina un verde muy suave con blanco */
  background: linear-gradient(135deg, #eef7f1 0%, #ffffff 40%, #ffffff 60%, #e6f2eb 100%);
  position: relative;
  overflow: hidden;
  padding: 30px 0; /* REDUCIDO para quitar el exceso de espacio arriba y abajo */
}

/* Badge/Etiqueta Superior */
.nosotros-final-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFC700);
  color: #000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  font-family: 'Montserrat', sans-serif;
}

/* Tipografía elegante para el Título */
.nosotros-final-title {
  font-family: 'Playfair Display', serif; /* Letra de lujo */
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-verde-oscuro, #1e3d2b);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Formas decorativas (línea - punto - línea) */
.nosotros-decorative-shape {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.shape-line {
  height: 3px;
  flex: 1;
  background: linear-gradient(90deg, var(--color-dorado, #FFD700), var(--color-verde, #2d5a3f));
  border-radius: 10px;
  animation: expandLine 1.5s ease-out;
}

.shape-circle {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--color-dorado, #FFD700), var(--color-verde, #2d5a3f));
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  animation: pulse 2s infinite;
}

/* Tipografía sutil y moderna para los textos */
.nosotros-final-text, .nosotros-texto-extra {
  font-family: 'Montserrat', sans-serif; /* Letra limpia */
}

.nosotros-final-text {
  font-size: clamp(1.05rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: #2c3e35; /* Un verde grisáceo muy oscuro y elegante */
  font-weight: 400;
  min-height: 80px; 
}

.nosotros-texto-extra {
  font-size: 0.95rem;
  color: #4a5c52;
  line-height: 1.7;
}

/* 3. IMAGEN Y DETALLES */
.imagen-nosotros-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.imagen-nosotros-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  z-index: 2;
  border: 4px solid white;
}

.imagen-backdrop {
  position: absolute;
  top: 15px; /* Ligeramente más pegado a la imagen para reducir espacios */
  right: -15px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-verde-oscuro, #1e3d2b), #2d5a3f); /* Fondo con dos tonos de verde oscuro */
  border-radius: 20px;
  z-index: 1;
  opacity: 0.2; 
}

/* 4. CONTADORES INFERIORES */
.contador-elegante {
  background: white;
  border: 1px solid rgba(45, 95, 63, 0.08); /* Borde verde súper sutil */
  padding: 12px 18px; /* Un poco más compactos */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e3d2b;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contador-elegante i {
  font-size: 1.2rem;
}

.contador-elegante:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 95, 63, 0.1); /* Sombra verdosa al pasar el mouse */
}

/* ANIMACIONES */
.fade-up-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

@keyframes expandLine {
  0% { width: 0; opacity: 0; }
  100% { width: 100%; opacity: 1; }
}

/* ============================================
   🔥 GALERÍA - CONTROLES PEGADOS
   ============================================ */
#galeria-3d {
  background: linear-gradient(135deg, #1a2a1a 0%, #0d1d0d 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#galeria-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,215,0,0.03)"/></svg>');
  opacity: 0.5;
}

.material-gallery-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  padding: 0 20px;
}

.material-gallery-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  transform: translateZ(0);
}

.material-gallery-item {
  position: relative;
  flex: 0 0 320px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  filter: grayscale(50%) brightness(0.7);
  opacity: 0.7;
  transform: scale(0.75);
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
}
 
.material-gallery-item.active {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  z-index: 10;
}

.material-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
}

.material-gallery-item.active:hover img {
  transform: scale(1.05);
}
 
.material-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  padding: 20px 15px 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.material-gallery-item.active .material-gallery-label {
  opacity: 1;
}

.material-gallery-label span {
  color: var(--color-dorado);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  display: block;
}
 
/* 🔥 CONTROLES PEGADOS A LA GALERÍA */
.material-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 15px;
  position: relative;
  z-index: 20;
  padding: 10px 20px;
}

.btn-gallery-nav {
  background: linear-gradient(135deg, var(--color-dorado) 0%, var(--color-dorado-oscuro) 100%);
  border: 3px solid var(--color-dorado);
  color: var(--color-verde-oscuro);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transicion-base);
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: var(--sombra-dorada);
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.btn-gallery-nav:hover {
  background: linear-gradient(135deg, var(--color-dorado-claro), var(--color-dorado));
  color: #000;
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7);
}

.btn-gallery-nav:active {
  transform: scale(0.95);
}

.gallery-indicators {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px;
}

.gallery-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.5);
  cursor: pointer;
  transition: var(--transicion-base);
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  flex-shrink: 0;
}

.gallery-indicator.active {
  background: var(--color-dorado);
  border-color: var(--color-dorado);
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.gallery-indicator:hover {
  background: rgba(255, 215, 0, 0.6);
  transform: scale(1.2);
}
/* =========================================
   AJUSTE DE GALERÍA EN CELULARES (MÓVIL)
   ========================================= */
@media (max-width: 768px) {
  /* 1. Ocultar los puntos completamente en celular */
  .gallery-indicators {
    display: none !important;
  }

  /* 2. Centrar las flechas amarillas para que se vean bien sin los puntos */
  .material-gallery-controls {
    justify-content: center !important;
    gap: 30px; /* Separación entre la flecha izquierda y la derecha */
    margin-top: 15px !important; /* Quita un poco de espacio extra arriba */
  }
}
 
/* ============================================
   CATÁLOGO
   ============================================ */
.filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0 15px;
}

.btn-filter {
  border: 2px solid var(--color-verde-oscuro);
  background: white;
  color: var(--color-verde-oscuro);
  padding: 10px 24px;
  border-radius: var(--border-radius-completo);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transicion-base);
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-filter:hover {
  background: var(--color-verde-claro);
  border-color: var(--color-verde-claro);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
}

.btn-filter.active {
  background: var(--color-verde-oscuro);
  border-color: var(--color-verde-oscuro);
  color: white;
  box-shadow: 0 4px 15px rgba(45, 95, 63, 0.3);
}
 
.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.producto-item {
  opacity: 1;
  transition: var(--transicion-lenta);
}

.producto-card {
  background: white;
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--sombra-base);
  transition: var(--transicion-lenta);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.producto-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-fuerte);
}

.producto-badge-descuento {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--color-promo-naranja), var(--color-promo-rojo));
  color: white;
  padding: 10px 16px;
  border-radius: 25px;
  font-weight: 800;
  font-size: 0.85rem;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  animation: pulse 2s infinite;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}

.producto-imagen {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.producto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  display: block;
  padding: 15px;
}

.producto-card:hover .producto-imagen img {
  transform: scale(1.08);
}

.producto-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.producto-nombre {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-verde-oscuro);
  margin: 0;
  line-height: 1.4;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
 
.btn-solicitar {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 2px solid var(--color-verde-oscuro);
  color: var(--color-verde-oscuro);
  border-radius: var(--border-radius-completo);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transicion-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-solicitar i {
  font-size: 1.1rem;
}

.btn-solicitar:hover {
  background: var(--color-verde-oscuro);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 95, 63, 0.25);
}

.btn-dorado {
  background: linear-gradient(135deg, var(--color-dorado) 0%, var(--color-dorado-oscuro) 100%);
  border: none;
  color: var(--color-verde-oscuro);
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: var(--transicion-base);
  box-shadow: var(--sombra-dorada);
}

.btn-dorado:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  color: var(--color-verde-oscuro);
}

/* ============================================
   FORMULARIO CONTACTO
   ============================================ */
.contacto-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  background: white;
  border-radius: var(--border-radius-grande);
  box-shadow: var(--sombra-media);
  overflow: visible;
  margin-top: -40px;
  align-items: start;
}

.contacto-info {
  background: var(--color-verde-oscuro);
  color: white;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  position: relative;
  border-radius: var(--border-radius-grande) 0 0 var(--border-radius-grande);
  height: auto;
  min-height: auto;
  max-height: none;
  overflow: visible;
}

.contacto-form {
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  background: white;
  border-radius: 0 var(--border-radius-grande) var(--border-radius-grande) 0;
  height: auto;
  overflow: visible;
}

.info-item {
  display: flex;
  gap: clamp(15px, 3vw, 20px);
  margin-bottom: clamp(25px, 4vw, 35px);
  align-items: flex-start;
}

.info-item i {
  font-size: clamp(20px, 4vw, 24px);
  margin-top: 4px;
  flex-shrink: 0;
}

.label-dorado {
  color: var(--color-dorado);
  font-weight: 800;
  font-size: clamp(10px, 2vw, 12px);
  letter-spacing: 1px;
}

.info-decor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: var(--color-dorado);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(50%, 50%);
  pointer-events: none;
}

.form-control-pro {
  width: 100%;
  padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: var(--border-radius-base);
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: var(--transicion-base);
}

.form-control-pro:focus {
  outline: none;
  border-color: var(--color-verde-claro);
  background: white;
  box-shadow: 0 5px 15px rgba(45, 95, 63, 0.05);
}
 
.mapa-ubicacion {
  margin-top: 15px;
  width: 100%;
}

.mapa-ubicacion iframe {
  border-radius: var(--border-radius-base);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  width: 100%;
}
  
/* ============================================
   MODAL
   ============================================ */
#modalSolicitud .modal-dialog {
  max-width: 650px;
}

#modalSolicitud .modal-content {
  border-radius: var(--border-radius-grande);
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#modalSolicitud .modal-header {
  border-bottom: 2px solid #f0f0f0;
  padding: 24px;
}

#modalSolicitud .modal-body {
  padding: 24px;
  max-height: 75vh;
  overflow-y: auto;
}
 
#modalSolicitud .modal-body::-webkit-scrollbar {
  width: 8px;
}

#modalSolicitud .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#modalSolicitud .modal-body::-webkit-scrollbar-thumb {
  background: var(--color-verde-claro);
  border-radius: 10px;
}
 
.producto-seleccionado {
  background: #f8f9fa;
  border-left: 4px solid var(--color-verde);
}

.producto-seleccionado img {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
 
.paleta-colores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.color-option {
  position: relative;
  cursor: pointer;
  text-align: center;
}

.color-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
 
.color-swatch-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  display: block;
}
 
.color-option:hover .color-swatch-img {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.color-option input[type="radio"]:checked + .color-swatch-img {
  border-color: var(--color-verde);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(45, 95, 63, 0.4);
}
  
.badge.bg-verde {
  background-color: var(--color-verde);
  padding: 6px 12px;
  border-radius: var(--border-radius-completo);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-pro {
  background: var(--color-verde-oscuro);
  color: #f0f0f0;
  padding: 60px 0 30px;
  border-top: 3px solid var(--color-dorado);
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;  
}

.footer-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-verde-oscuro);
  z-index: -1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  display: inline-block;
}

.footer-logo span {
  color: var(--color-dorado);
}

.footer-description {
  color: #ccc;
  line-height: 1.7;
  margin-top: 15px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--color-dorado);
  position: relative;
  padding-bottom: 8px;
  font-weight: 700;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-dorado);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-dorado);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ccc;
}

.footer-contact i {
  margin-top: 4px;
  color: var(--color-dorado);
}

.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--color-dorado);
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  transition: var(--transicion-lenta);
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-dorado);
  color: var(--color-verde-oscuro);
  transform: translateY(-5px) rotate(15deg);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-whatsapp);
  transition: var(--transicion-lenta);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  animation: float 3s ease-in-out infinite;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  will-change: transform;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  color: white;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-verde-oscuro) 0%, var(--color-verde-claro) 100%);
  color: white;
  border: 2px solid var(--color-dorado);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-scroll-top);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transicion-base);
  font-size: 1.5rem;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--color-dorado) 0%, var(--color-dorado-oscuro) 100%);
  color: var(--color-verde-oscuro);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.scroll-to-top.show {
  display: flex;
}

.vista-seccion {
  min-height: 60vh;
}

/* ============================================
   OPTIMIZACIONES iOS / ANDROID
   ============================================ */
input[type="text"], 
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  font-size: 16px !important;
  -webkit-appearance: none;
  appearance: none;
}
 
button,
.btn,
.btn-filter,
.btn-solicitar,
.btn-dorado {
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
 
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.navbar-brand, 
.nav-link,
.producto-card,
.material-gallery-item,
.btn-gallery-nav {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
 
.modal {
  -webkit-overflow-scrolling: touch;
}

.modal-body {
  -webkit-overflow-scrolling: touch;
}

#galeria-3d, 
#galeria-3d *,
.material-gallery-wrapper,
.material-gallery-wrapper *,
.material-gallery-controls,
.material-gallery-controls * {
  touch-action: manipulation !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
}

.material-gallery-item img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
  touch-action: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  body {
    padding-top: 94px;
  }

  .info-ticker-bar {
    top: 56px;
    height: 42px;
    margin-top: -1px;
    overflow: hidden;
  }
  
  .ticker-wrapper {
    padding-top: 5px;
    width: 100%;
  }

  .ticker-content {
    padding-top: 3px;
    animation-duration: 100s !important;
  }

  .promo-floating-banner {
    top: 98px;
    padding: 10px 15px;
  }

  .promo-floating-content {
    flex-direction: column;
    gap: 10px;
  }

  .promo-floating-text {
    font-size: 0.85rem;
  }

  .promo-popup-lateral {
    width: 280px;
    right: 15px;
    bottom: 90px;
    padding: 20px;
  }

  .promo-popup-title {
    font-size: 1.2rem;
  }

  .promo-popup-discount {
    font-size: 1.5rem;
  }

  .promo-modal-grande-wrapper {
    padding: 30px 20px;
  }

  .promo-modal-grande-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .promo-feature-item {
    flex-direction: row;
    text-align: left;
    padding: 12px 15px;
  }
  
  .promo-feature-item i {
    margin-bottom: 0;
    margin-right: 10px;
  }

  .nosotros-final-container {
    padding: 30px 20px;
  }

  .nosotros-left-column,
  .nosotros-right-column {
    padding: 0;
    text-align: center;
  }

  .nosotros-final-title {
    margin-bottom: 30px;
  }

  .nosotros-decorative-shape {
    justify-content: center;
    margin: 30px 0;
  }

  .nosotros-final-checks {
    margin-top: 30px;
  }

  .nosotros-final-wrapper {
    padding: 60px 0;
  }
 
  .check-item-final {
    padding: 15px 20px;
  }

  .check-icon-glow {
    font-size: 1.2rem;
  }

  .check-item-final span {
    font-size: 0.95rem;
  }

  #galeria-3d {
    padding: 60px 0;
  }

  #galeria-3d h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .material-gallery-wrapper {
    padding: 0 10px;
    min-height: auto !important;
  }

  .material-gallery-track {
    padding: 40px 0;
    gap: 15px;
  }

  .material-gallery-item {
    flex: 0 0 280px !important;
    height: 380px !important;
  }

  .material-gallery-item.active {
    transform: scale(0.95) !important;
  }

  .material-gallery-item:not(.active) {
    transform: scale(0.65) !important;
  }

  .material-gallery-label span {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  /* 🔥 CONTROLES MÓVIL - PEGADOS */
  .material-gallery-controls {
    gap: 25px !important;
    margin-top: 10px !important;
    padding: 10px 15px !important;
  }

  .btn-gallery-nav {
    width: 52px !important;
    height: 52px !important;
    font-size: 1.3rem !important;
  }

  .gallery-indicators {
    gap: 12px !important;
  }

  .gallery-indicator {
    width: 12px !important;
    height: 12px !important;
  }

  .gallery-indicator.active {
    transform: scale(1.5) !important;
  }

  #modalSolicitud input,
  #modalSolicitud select,
  #modalSolicitud textarea,
  .form-control-pro {
    font-size: 16px !important;
  }

  #modalSolicitud .modal-dialog {
    margin: 1rem auto;
    max-width: calc(100% - 2rem);
  }

  .contacto-wrapper {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 20px;
  }

  .contacto-info {
    border-radius: 20px 20px 0 0;
    height: auto !important;
    overflow: visible !important;
  }

  .contacto-form {
    border-radius: 0 0 20px 20px;
  }

  .productos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 15px;
  }

  .filter-nav {
    gap: 8px;
    padding: 0 10px;
  }

  .btn-filter {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    bottom: 15px;
    right: 15px;
  }

  .scroll-to-top {
    bottom: 80px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .paleta-colores-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  #modalSolicitud .modal-dialog {
    margin: 0.25rem;
    max-width: calc(100% - 0.5rem);
  }

  .color-swatch-img {
    width: 40px !important;
    height: 40px !important;
  }

  /* 🔥 CONTROLES EXTRA PEQUEÑOS - PEGADOS */
  .material-gallery-controls {
    gap: 20px !important;
    margin-top: 8px !important;
    padding: 8px 12px !important;
  }

  .btn-gallery-nav {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.1rem !important;
  }

  .gallery-indicators {
    gap: 10px !important;
  }

  .gallery-indicator {
    width: 11px !important;
    height: 11px !important;
  }

  .gallery-indicator.active {
    transform: scale(1.4) !important;
  }

  .material-gallery-item {
    flex: 0 0 260px !important;
    height: 350px !important;
  }

  .paleta-colores-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ticker-content {
    animation-duration: 90s !important;
  }
}
 
@media (min-width: 769px) and (max-width: 991px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .material-gallery-item {
    flex: 0 0 320px;
    height: 420px;
  }

  .material-gallery-item.active {
    transform: scale(1);
  }

  .material-gallery-item:not(.active) {
    transform: scale(0.75);
  }

  .gallery-indicators {
    gap: 13px;
  }

  .gallery-indicator {
    width: 13px;
    height: 13px;
  }
}
 
@media (min-width: 1400px) {
  .productos-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
  }

  #modalSolicitud .modal-dialog {
    max-width: 700px;
  }

  .material-gallery-item {
    flex: 0 0 400px;
    height: 500px;
  }

  .gallery-indicators {
    gap: 16px;
  }

  .gallery-indicator {
    width: 15px;
    height: 15px;
  }
}

/* ============================================
   FIX MODAL Y CINTA VISIBLE
   ============================================ */
.modal-open .info-ticker-bar,
.modal-open .ticker-content,
.modal-open .ticker-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1049 !important;
}

.modal-backdrop {
  z-index: 1048 !important;
}

.modal {
  z-index: 1060 !important;
}

body:not(.modal-open) .info-ticker-bar,
body:not(.modal-open) .ticker-content {
  opacity: 1 !important;
  visibility: visible !important;
  animation-play-state: running !important;
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-verde-claro);
  outline-offset: 2px;
}

.animate-fade-in,
.animate-slide-up,
.animate-slide-left,
.animate-scale,
.animate-bounce,
.producto-card,
.material-gallery-item,
.whatsapp-float {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
  
img[loading="lazy"] {
  content-visibility: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
 
@media print {
  .navbar,
  .info-ticker-bar,
  .promo-floating-banner,
  .promo-popup-lateral,
  .whatsapp-float,
  .btn-gallery-nav,
  .gallery-indicators,
  footer {
    display: none !important;
  }

  .vista-seccion {
    page-break-inside: avoid;
  }
}
/* ============================================
   🔥 FIX DEFINITIVO: CINTA VISIBLE SIEMPRE
   ============================================ */

/* Forzar cinta visible con modal abierto */
.modal-open .info-ticker-bar,
.modal-open .ticker-content,
.modal-open .ticker-wrapper {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  z-index: 1049 !important;
}

/* Forzar animación corriendo siempre */
.ticker-content {
  animation-play-state: running !important;
}

/* Asegurar que el modal no tape la cinta */
.modal-backdrop {
  z-index: 1048 !important;
}

.modal {
  z-index: 1060 !important;
}

/* Fix después de cerrar modal */
body:not(.modal-open) .info-ticker-bar {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

body:not(.modal-open) .ticker-content {
  opacity: 1 !important;
  visibility: visible !important;
  animation-play-state: running !important;
}
/* ============================================
   🔥 FIXES RESPONSIVOS - AGREGAR AL FINAL DEL style.css
   Corrige: (1) Contacto deformado en móvil
            (2) Modal promo no centrado en móvil
   ============================================ */

/* ============================================
   FIX 1: CONTACTO-WRAPPER RESPONSIVO
   El problema era overflow:visible + margin-top:-40px
   que en móvil rompía el layout y no se "reencuadraba"
   ============================================ */

/* BASE MÓVIL: columna única, sin deformación */
.contacto-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  background: white;
  border-radius: var(--border-radius-grande);
  box-shadow: var(--sombra-media);
  overflow: hidden;
  margin-top: 0;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

/* DESKTOP: vuelve al layout original de 2 columnas */
@media (min-width: 769px) {
  .contacto-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: -40px;
    overflow: visible;
  }
}

/* INFO: bordes redondeados arriba en móvil */
.contacto-info {
  background: var(--color-verde-oscuro);
  color: white;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  position: relative;
  border-radius: var(--border-radius-grande) var(--border-radius-grande) 0 0;
  height: auto;
  min-height: auto;
  max-height: none;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .contacto-info {
    border-radius: var(--border-radius-grande) 0 0 var(--border-radius-grande);
  }
}

/* FORM: bordes redondeados abajo en móvil */
.contacto-form {
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  background: white;
  border-radius: 0 0 var(--border-radius-grande) var(--border-radius-grande);
  height: auto;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .contacto-form {
    border-radius: 0 var(--border-radius-grande) var(--border-radius-grande) 0;
  }
}

/* Fix mapa: no se desborda */
.mapa-ubicacion {
  margin-top: 15px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.mapa-ubicacion iframe {
  border-radius: var(--border-radius-base);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  width: 100% !important;
  max-width: 100%;
  display: block;
}

/* ============================================
   FIX 2: MODAL PROMO — centrado real en móvil
   Bootstrap .modal-dialog-centered necesita
   que el dialog tenga min-height correcto
   ============================================ */

#modalPromoGrande .modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
  margin: 0.5rem auto;
  max-width: 800px;
  width: calc(100% - 1rem);
}

@media (max-width: 768px) {
  #modalPromoGrande .modal-dialog {
    margin: 1rem auto !important;
    width: calc(100% - 2rem) !important;
    max-width: calc(100% - 2rem) !important;
    min-height: calc(100% - 2rem);
    left: 0 !important;
    right: 0 !important;
    position: relative;
  }

  .promo-modal-grande-wrapper {
    padding: 25px 18px 30px;
  }

  .promo-modal-grande-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .promo-modal-grande-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .btn-promo-modal-grande {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #modalPromoGrande .modal-dialog {
    margin: 0.5rem;
    width: calc(100% - 1rem);
  }

  .promo-modal-grande-wrapper {
    padding: 20px 15px 25px;
  }
}