html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Evita el scroll global */
}

/* Solo la tabla tiene permiso de tener scroll lateral */
.table-wrap {
    overflow-x: auto;
    max-width: 100vw;
}


:root{
  --bg: #faf7f2;
  --border: #9D7B4B;
  --text: #2c2a28;
  --muted: #5f564b;
  --chip-bg: #efe8dc;
}



/* 1. Regla de oro para móvil: el padding no suma ancho */
* {
    box-sizing: border-box;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  padding: 0;
  
}

/* ====== TABLA DE PAQUETES ====== */

.section{
  background: var(--bg);
  padding: 32px 16px;
}

.wrap{ 
  max-width: 1100px; 
  margin: 0 auto; 
}



/* Paquetes */
.category-selector {
  display: flex;
  justify-content: center; /* Esto centra todo el grupo */
  gap: 40px;               /* Espacio entre los textos */
  padding: 20px;
  border-bottom: 1px solid #ddd; /* Línea gris fina de tu imagen */
}

.category-item {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #a68962; /* Color de texto base */
  cursor: pointer;
  padding-bottom: 10px;
  position: relative;
  transition: color 0.3s ease;
}

/* Estado inactivo (gris) */
.category-item:not(.active) {
  color: #a8a8a8;
}

/* Efecto de línea inferior para el activo */
.category-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px; /* Ajusta según el grosor del borde contenedor */
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #a68962;
}


/* Solo para Tablet: del punto donde termina tu móvil (721px) hasta 1024px */
/* Solo para tablets (desde 721px hasta 1024px) */
@media (min-width: 721px) and (max-width: 1024px) {
    .table-wrap {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important; /* Habilita el giro derecha/izquierda */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 15px; /* Espacio para la barra de scroll */
    }

    .table-wrap table {
        display: table !important;
        /* Forzamos un ancho mayor al de la tablet para que PUEDA girar */
        min-width: 1200px !important; 
        width: 1200px !important;
    }

    /* Restauramos las celdas para que NO se apilen como en el móvil */
    .table-wrap thead {
        display: table-header-group !important;
    }

    .table-wrap tr {
        display: table-row !important;
    }

    .table-wrap td, .table-wrap th {
        display: table-cell !important;
        white-space: nowrap !important;
        text-align: center !important;
    }

    /* Ocultamos los títulos repetidos que usas en el diseño de móvil */
    .table-wrap td::before {
        display: none !important;
    }
}

/* Mobile chat */
h1 {
color: #000000;
text-align: center;
font-family: 'Montserrat', sans-serif;
}



.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #9D7B4B;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Caja del chat */
.chat-bubble {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
}

/* Header */
.chat-header {
  background: #9D7B4B; /* color corporativo */
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Cuerpo */
.chat-body {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

.chat-btn {
  display: block;
  text-align: center;
  background: #9D7B4B;
  color: white;
  padding: 8px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: 0.3s;
}

.chat-btn:hover {
  background: #9D7B4B;
}

.cliente-container {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center; /* Centramos horizontalmente */
    background: #faf7f2;
    padding: 20px 0;
}

.slider {
    display: flex;
    gap: 50px;
    animation: slide 20s linear infinite;
    align-items: center; /* Centrado vertical dentro del contenedor */
}

.slider img {
    height: 60px; /* Ajusta a tu gusto */
    object-fit: contain;
}

/* Animación continua */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Ajusta según cantidad de logos */
}

/* Opcional: Pausar al pasar el mouse */
.slider:hover {
    animation-play-state: paused;
}



/* Estilo básico del switcher */
.custom-language-switcher {
  display: flex;          /* Siempre visible */
  list-style: none;
  gap: 10px;
  padding: 12px;
  margin: 0;
}



.custom-language-switcher li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.custom-language-switcher li.active a {
  color: #9D7B4B;         /* color principal */
}

/* Opcional: en móvil, agregar un margen para que no quede pegado al menú */
@media (max-width: 768px) {
  .custom-language-switcher {
    margin-top: 10px;
  }
}

h2{
  font-family: "Belleza", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 60px;
  color: #000000;
  text-align: center;
}

.contacto p {
  text-align: center;
  margin: 5px 0;
}

p.subtitulo{
text-align: center;
color: #faf7f2;
background-color: #9D7B4B;
font-weight: bold;
font-family: 'Montserrat', sans-serif;
margin-left: 20px;


}
p.detalle-texto
{
  text-align: center !important;
}

p.seccion-desc
{
  text-align: center !important;
}

p{
color: black;
text-align: justify !important; 
}


p.copyright-text{
   text-align: center !important;
}

P .contact-info
{
text-align: center;
}




/* Barra de navegación */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #faf7f2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar {
  max-width: 1400px;       /* opcional: centrado del contenido */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.nav-links {
  position: fixed;
  top: 0;
  left:-280px; 
  width:280px;
  height: 100vh;
  background-color: #faf7f2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 100px;
  padding-left: 30px;
  transition: left 0.3s ease;
  z-index: 999;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}


.nav-links a:hover {
  color: #cba36b;
}

.nav-links.active {
  left: 0;
}

/* Separadores verticales */
.nav-links a:not(:last-child)::after {
  position: absolute;
  right: -1rem;
  color: #a58a5c; /* tono dorado suave */
  font-weight: 400;
}

/* Hover elegante */
.nav-links a:hover {
  color: #a58a5c;
  transition: color 0.3s ease;
}



  .logo img {
  width: 12%;
  display: flex;
  }


.language-dropdown {
  position: relative;
  display: inline-block;
}

.lang-btn {
  background-color: transparent;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #111;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.lang-btn i {
  transition: transform 0.3s ease;
}

/* Estilo para las banderas */
.flag-icon {
  width: 30px;
  height: auto;
  border-radius: 3px;
}

/* Lista oculta por defecto */
.lang-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #faf7f2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-radius: 5px;
  z-index: 999;
}

.lang-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

.lang-list li a:hover {
  background-color: #bd9a68;
  color: white;
  font-weight: bold;
}

/* Mostrar lista al hacer hover */
.language-dropdown:hover .lang-list {
  display: block;
}

/* Rotar flecha al hacer hover */
.language-dropdown:hover .lang-btn i {
  transform: rotate(180deg);
}

/* Enlaces del menú (estilo escritorio) */
.nav-links{
       position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100vh;
      background: #faf7f2;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 50px 20px;
      gap: 25px;
      box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
      transition: left 0.4s ease;
      z-index: 998;
      text-align: center;
      
}



.nav-links a i {
  font-size: 18px;
  color: #111;
  transition: color 0.3s;
  
}

.nav-links a:hover i {
  color: #bd9a68;
  font-weight:bold;
 
}


.nav-links a {
  color: #111;
  text-decoration: none;
  font-weight: 1400;
  transition: color 0.3s;
  font-size: 16px;

}

.nav-links a:hover {
  color: #bd9a68;
}


  .mobile-logo {
    display: block;
    width: 120px;
}
  

/* Logo dentro del menú lateral en móvil */
.mobile-logo {
  display: block;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 20px;
}

.mobile-logo img {
  width: 120px;
}

/* Mostrar solo en responsive */
@media (max-width: 768px) {
  .mobile-logo {
    display: block;
  }
}



/* Botón hamburguesa */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1000;
  border: 2px solid #bd9a68;
  border-radius: 5px;
  padding: 8px;
  background-color: #faf7f2;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #bd9a68;
  transition: all 0.3s ease;
}

.contact-info {
  margin-top: 80px;
  text-align: center;
  text-align: center;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  display: none;
}



/* ===== RESPONSIVE / MENÚ LATERAL ===== */


@media (max-width: 768px) {
  .nav-links {
      
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100vh;
      background: #faf7f2;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 50px 20px;
      gap: 25px;
      box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
      transition: left 0.4s ease;
      z-index: 998;
      text-align: center;
      
  }


  @media (max-width: 768px) {
    .contact-info {
      display: block;
  }
}

/* Solo mostrar contacto en escritorio */
.desktop-contacto {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}



.mobile-contact {
  display: none;
  text-align: center;
  margin-top: auto;
  font-size: 14px;
 
}

@media (max-width: 768px) {
  .desktop-contacto {
    display: none;
  }

  .mobile-contact {
    display: block;
  }
}

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* --- BASE Y ESCRITORIO --- */
/* --- VARIABLES --- */
:root {
    --gold-brand: #9D7B4B;
    --dark-bg: #0d0d0f; 
}

/* --- SECCIÓN PRINCIPAL --- */
#hero-minimalista {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #000000 100%);
    /* Padding muy reducido arriba (40px) para que todo suba de inmediato */
    padding: 40px 20px 50px 20px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.hero-container-main {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px; /* Separación exacta y calculada entre el texto y el iframe */
}

/* --- ÁREA DE TEXTO --- */
.hero-text-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 850px; 
    margin: 45px auto ;
}

/* Badge recuperado y mejorado */
.badge-gold {
    background: rgba(212, 175, 55, 0.12); /* Fondo sutil devuelto */
    color: var(--gold-brand) !important;
    padding: 5px 16px;
    margin-top: 60px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 10px; 
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* Sombra para que destaque */
}

.title-main {
    color: #ffffff !important; 
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.2rem, 4.5vw, 4.2rem) !important; 
    line-height: 1.1 !important;
    margin-bottom: 15px !important; 
    font-weight: normal !important;
    margin-top: 5px;
}

.title-main .text-accent {
    color: var(--gold-brand) !important;
    font-style: italic;
}

/* Subtítulo mejorado (Letra más fina, más clara, y con espaciado elegante) */
.subtitle-main {
    color: #b8b8c0 !important; /* Gris un poco más claro para fácil lectura */
    font-size: 1.15rem !important;
    line-height: 1.6 !important;
    margin: 0 !important; /* El margen ya lo controla el 'gap' del contenedor */
    font-weight: 200 !important; /* Letra fina y elegante */
    letter-spacing: 0px !important; /* Espaciado premium entre letras */
    max-width: 700px;
}

/* --- ÁREA DEL VISOR 360 --- */
.hero-media-area {
    width: 100%;
    max-width: 1100px; /* Al no haber botones, podemos hacerlo un poco más ancho */
    margin: 0 auto;
}

.visor-frame {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.7); /* Sombra elegante */
}

.visor-ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9; /* Formato Cine: Súper ancho, ahorra mucho espacio vertical */
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.visor-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    #hero-minimalista {
        padding-top: 80px;
    }
    
    .visor-ratio {
        aspect-ratio: 16 / 10; /* En celulares vuelve a verse más cuadrado para funcionar bien con el táctil */
    }
}

.media-content, .media-content iframe, .media-content video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* --- RESPONSIVE: TABLET --- */
@media (max-width: 1024px) {
    .hero-text-area h1 { font-size: 1.8rem; }
    .hero-media-wrapper { max-width: 100%; }
}

/* --- RESPONSIVE: MÓVIL --- */
@media (max-width: 768px) {
    #hero {
        padding-top: 100px;
        align-items: flex-start; 
    }

    .hero-text-area h1 {
        font-size: 1.2rem;
        padding: 5px 10px;
     
    }

    /* AQUÍ ESTÁ LA SOLUCIÓN DEFINITIVA PARA EL PÁRRAFO RECTO */
    .hero-text-area p {
        font-size: 0.9rem;
        line-height: 1.4; 
        
        /* 1. Obliga a justificar (bordes rectos) ignorando la plantilla */
        text-align: justify !important; 
        
        /* 2. Mejora el espaciado entre palabras para que no queden huecos feos */
        text-justify: inter-word !important; 
        
        /* 3. Asegura que el texto ocupe todo el ancho disponible */
        width: 100% !important; 
        
        /* 4. Separación de los bordes del celular para que no se pegue a la pantalla */
        padding: 0 15px; 
        box-sizing: border-box; 
    }

    .badge-gold {
      margin-top: 8px;
    }

    .hero-media-wrapper {
        aspect-ratio: 4 / 3; 
        width: 95%;
        margin: 0 auto; 
    }
}
/* Paquetes*/
/* --- ESTILOS DE LA SECCIÓN PAQUETES (No tocar cabecera) --- */
#paquetes {
    padding: 20px 5%;
    background-color: #faf7f2; /* Mantenemos el fondo clarito */
    font-family: 'Outfit', sans-serif;
}

/* (AQUÍ DEBES MANTENER TU CSS DE LA CABECERA Y EL MENÚ) */
/*

/* =========================================
   SECCIÓN PAQUETES - LÓGICA DE PESTAÑAS
   ========================================= */

.tab-content {
    display: none; /* Oculta todas las pestañas por defecto */
    animation: fadeIn 0.5s ease; /* Transición suave al hacer clic */
}

.tab-content.active {
    display: block; /* Muestra solo la pestaña activa */
}

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

/* =========================================
   DISEÑO EDITORIAL (SIN CARDS)
   ========================================= */

/* Contenedor principal de las columnas */
.paquetes-editorial-grid {
    display: grid;
    /* Divide en 4 columnas automáticas en PC */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 50px; /* Espacio amplio "aireado" entre columnas */
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 40px;
}

/* Columna individual invisible */
.columna-editorial {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center; /* Todo el texto centrado */
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* "Opción 1, Opción 2..." */
.opcion-titulo {
    font-size: 0.85rem;
    font-weight: 700;
    color: #D4AF37; /* Dorado */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px; /* Espacio muy pequeño para acercar la nota */
    text-align: center;
}

/* "Ideal para pequeña y mediana..." */
.nota-audiencia {
    font-size: 0.7rem;
    color: #888; /* Gris suave elegante */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px; /* Espacio antes de que comience el precio gigante */
}

/* El Precio Gigante */
.precio-editorial {
    font-family: 'Outfit', sans-serif; /* Asegura tener importada esta fuente */
    font-size: 4rem; /* Número gigante */
    font-weight: 300; /* Tipografía ultra delgada */
    color: #111;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px; /* Junta un poco los números */
    text-align: center;
}

/* Signo de dólar más pequeño y arriba */
.precio-editorial .moneda {
    font-size: 1.8rem;
    font-weight: 400;
    color: #999;
    vertical-align: super;
    margin-right: 2px;
}

/* Línea dorada decorativa debajo del precio */
.separador-mini {
    width: 30px;
    height: 2px;
    background-color: #D4AF37;
    margin: 0 auto 25px auto; /* Centrado absoluto */
}

/* Textos de los paquetes (Planos, Tour 360, etc.) */
.detalle-texto {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 300;
}

/* =========================================
   RESPONSIVE (TABLETS Y MÓVILES)
   ========================================= */

@media (max-width: 992px) {
    .paquetes-editorial-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en Tablet */
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .paquetes-editorial-grid {
        grid-template-columns: 1fr; /* 1 sola columna apilada en Celular */
        gap: 50px;
    }
}
/* Nosotros*/

#nosotro {
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: white;
  background-image: url("/images/elegant.jpg");
  background-size: 100% 150%;
  background-repeat:inherit;
  color: #d4af37;
  padding: 50px 20px;
}


.nosotro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
 
}

.nosotro-text h1 {
  font-size: 2em;
  margin-bottom: 10px;
 
  
}

.nosotro-text p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.nosotro-demo {
  width: 100%;
  max-width: 800px;
  height: 500px;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}

/* Responsivo */
@media (min-width: 768px) {
  .nosotro-container {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
  }

  .nosotro-text {
      flex: 1;
      padding-right: 40px;
  }

  .nosotro-demo {
      flex: 1;
  }
}

.packs, .about, .contact {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.pack-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.pack {
  background-color: #faf7f2;
  padding: 1rem;
  border-radius: 8px;
  border-color: #9D7B4B;
  flex: 1 1 calc(33.333% - 2rem);
  box-sizing: border-box;
}

.pack img {
  width: 100%;
  border-radius: 8px;
}

form {
  display: grid;
  gap: 1rem;
}

form label {
  font-weight: bold;
}

form input, form select, form button {
  padding: 0.5rem;
  font-size: 1rem;
}

form button {
  background-color: #9D7B4B;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #111;
}

/* Estilos del footer */


/* 2. Estilos base (Móvil Primero) */
footer {
    background-color: #000;
    color: #9D7B4B;
    padding: 20px 0;
    width: 100%;
    overflow-x: hidden; /* Corta cualquier desbordamiento accidental */
}


.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column; /* Columna en móvil */
}

/* Corregir el texto del Copyright para que no empuje el ancho */
footer p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    width: 100%;
    padding: 10px 20px;
    white-space: normal; /* Permite que el texto baje de línea */
    word-wrap: break-word; 
}

.footer-logo img {
  width: 100px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
   text-align: justify;
}

.footer-section {
  margin-bottom: 15px;
}

.footer-section h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #9D7B4B;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 15px 0;


}

.footer-social a {
  color: #9D7B4B;
  font-size: 20px;
}



.footer-bottom {
  font-size: 12px;
  margin-top: 10px;
  color: #fff;
}

/* Botones de contacto */
.footer-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-buttons a {
  display: flex;
  align-items: left;
  justify-content: left;
  padding: 10px 20px;
  background-color: #9D7B4B;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.copyright-text {
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 15px; /* Para que no pegue a los bordes */
  width: 100%;
  display: block;
  word-wrap: break-word; /* Obliga al texto a saltar de línea */
}

/* Responsivo */

@media (max-width: 767px) {
    /* Evita que el body se desplace hacia los lados */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    footer {
        width: 100%;
        overflow-x: hidden;
        padding: 30px 15px; /* Padding controlado */
    }

    .footer-container {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Forzar que el texto del copyright no se salga */
    footer p {
        display: block;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        padding: 10px;
        box-sizing: border-box;
    }

    /* Ajuste del botón flotante para que no cree scroll */
    .chat-toggle {
        right: 15px !important;
        bottom: 15px !important;
    }
}
/* 3. TU MEDIA QUERY EXISTENTE (Escritorio) */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }

    .footer-links {
        flex-direction: row;
        gap: 30px;
        text-align: justify;
    }

    .footer-buttons {
        margin-top: 0;
    }
}


/* --- FAQ --- */

/* ESTILOS DE LA SECCIÓN FAQ */
.faq-section {
    background-color: #f8f6f4; /* Mismo fondo de tu web */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    /* Fuente general para las preguntas/respuestas */
    font-family: Sans-serif;
}

.faq-container {
    width: 100%;
    max-width: 800px;
}

.faq-title {
    text-align: center;
    color: #000000;
    font-size: 32px; /* Un poco más grande para destacar */
    margin-bottom: 40px;
    /* Fuente elegante para el título, igual que "CLIENTES" */
    font-family: 'Playfair Display', serif; 
    font-weight: 400; 
    letter-spacing: 1px;
    font-family: "Belleza", Sans-serif;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0dcd5;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

/* Estilos de la caja de la pregunta */
.faq-pregunta {
    padding: 20px;
    font-size: 16px;
    font-weight: 600; /* Outfit Bold */
    color: #333;
    cursor: pointer;
    list-style: none; /* Quita flecha nativa */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

/* Quitar la flecha por defecto en Safari/Chrome viejo */
.faq-pregunta::-webkit-details-marker {
    display: none;
}

.faq-pregunta:hover {
    background-color: #fdfdfc;
}

/* Crear la flecha personalizada */
.faq-pregunta::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #a68153; /* Color dorado de tu web */
    border-bottom: 2px solid #a68153; 
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 10px;
}

/* Rotar la flecha cuando se abre la pregunta */
.faq-item[open] .faq-pregunta::after {
    transform: rotate(225deg);
    margin-top: 5px;
}

/* Estilo de la respuesta */
.faq-respuesta {
    padding: 0 20px 20px 20px;
    color: #555;
    font-size: 15px;
    font-weight: 300; /* Outfit Light para fácil lectura */
    line-height: 1.6;
    animation: deslizarAbajo 0.4s ease-in-out;
}

.faq-respuesta p {
    margin: 0; /* Evita saltos de línea extra */
}

/* Estilo para la nota de foto extra en Paquetes - VERSIÓN REFORZADA */
.nota-adicional {
    font-size: 14px; 
    color: #9D7B4B; 
    font-style: italic; 
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    
    /* El truco definitivo para centrar: */
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    
    /* Márgenes para que no quede pegado ni arriba ni a los lados */
    margin: 15px auto 0 auto !important; 
}

/* Animación suave al abrir */
@keyframes deslizarAbajo {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   ANIMATED STATS MARQUEE (TICKER)
   ========================================= */

.marquee-container {
  width: 100%;
  background-color: #050505; /* Negro profundo para contrastar sutilmente con el hero */
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #c49b63; /* Borde inferior dorado elegante */
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  position: relative;
  z-index: 10;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  /* Animación: 25 segundos, velocidad lineal, repetición infinita */
  animation: scrollMarquee 25s linear infinite;
}

/* Pausar la animación cuando el usuario pone el mouse encima (opcional pero recomendado) */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  padding-right: 20px; /* Espacio entre el final del texto y el inicio del clon */
}

.marquee-text {
  font-family: inherit;
  font-size: 0.75rem; /* Tamaño sutil tipo noticiero/legal */
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase; /* Opcional: Mayúsculas para darle más formalidad */
}

.gold-text {
  color: #c49b63; /* El color dorado de tu marca */
  font-weight: 600;
}

/* Keyframes para el efecto infinito */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Se mueve el 50% de la pista (que contiene 2 bloques idénticos) para hacer un loop perfecto */
    transform: translateX(-50%); 
  }
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .marquee-text {
    font-size: 0.55rem;
  }
  .marquee-track {
    animation: scrollMarquee 20s linear infinite; /* Un poco más rápido en móviles */
  }

  .marquee-container {
  width: 100%;
  background-color: #050505; /* Negro profundo para contrastar sutilmente con el hero */
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #c49b63; /* Borde inferior dorado elegante */
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  position: relative;
  z-index: 10;
  padding: 6px 0;
}

.category-item {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  color: #a68962; /* Color de texto base */
  cursor: pointer;
  padding-bottom: 10px;
  position: relative;
  transition: color 0.3s ease;
}

 .logo img {
  width: 15%;
  display: flex;
  }
}