/* ===== RESETEO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CORRECCIÓN PRINCIPAL: PREVENIR SCROLL HORIZONTAL */
html, body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: "Montserrat", sans-serif;
}

/* ===== COLORES ===== */
:root {
  --morado: #6f4a57;
  --dorado: #e3c28d;
  --gris-texto: #555;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--morado);
  color: var(--dorado);
  padding: 10px 0;
  width: 100%;
}

.top-content {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-clock {
  width: 22px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icon svg {
  width: 26px;
  height: 26px;
  color: var(--dorado);
  transition: 0.3s;
}
.social-icon:hover svg {
  opacity: 0.7;
}


.btn-reservar {
  margin-left: 10px;
  color: var(--dorado);
  text-decoration: underline;
  font-weight: 600;
}


.btn-reservar {
  margin-left: 12px;
  color: var(--dorado);
  text-decoration: underline;
  font-weight: 600;
}

/* ===== HEADER PRINCIPAL ===== */
.header {
  width: 100%;
  background: white;
  padding: 18px 0;
}

.header-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  width: 230px;
}

/* ===== MENU DESKTOP ===== */
.menu {
  display: flex;
  gap: 100px;
}

.menu a {
  color: var(--gris-texto);
  font-size: 22px;
  text-decoration: none;
  font-weight: 400;
}

/* ===== HAMBURGUESA ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.hamburger span {
  width: 35px;
  height: 4px;
  background: #555;
  display: block;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */

/* ----- MOVIL ----- */
@media (max-width: 900px) {

  /* Top bar EN MÓVIL: solo horario y centrado */
  .top-content {
    justify-content: center;
  }

  .top-left {
    margin: auto;
    text-align: center;
  }

  .top-right {
    display: none;
  }

  .header-container {
    justify-content: space-between;
  }

  .logo {
    width: 200px;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* ----- PC GRANDE (foto 2) ----- */
@media (min-width: 901px) {

  /* Mostrar redes en top bar */
  .top-right {
    display: flex;
    align-items: center;
  }

  /* Esconder hamburguesa */
  .hamburger {
    display: none;
  }

  /* Mostrar menú centrado */
  .menu {
    display: flex;
  }
}


/* ————————————————
   BANNER RESPONSIVE
——————————————— */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* IMAGEN MÓVIL (SIEMPRE SE VE) */
.banner-mobile {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* TEXTO SOBRE LA IMAGEN */
.banner-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;

  color: #6B4B67;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
}
/* Texto de la letra fuerte*/
.purple-word {
  color: #3f0233;
}


/* VERSIÓN PC */
@media (min-width: 768px) {

  /* Fondo para PC */
  .banner {
    height: 500px;
    background-image: url("assets/banner/bannerpc.svg");
    background-size: cover;
    background-position: center;
  }

  /* Ocultar imagen móvil en PC */
  .banner-mobile {
    display: none;
  }

  /* Texto más grande en PC */
  .banner-text {
    font-size: 42px;
    top: 50%;
    left: 75%;
  }
}


/* FUENTE ABHAYA LIBRE */
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@800&display=swap');

.sobre-valench-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cards-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.card {
    flex: 1;
    border-radius: 20px;
    overflow: visible;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CARD DE TEXTO */
.text-card {
    background: linear-gradient(135deg, #6b4d57 0%, #8b6b7a 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* TITULO CENTRADO */
.titulo-sobre {
    text-align: center;
    font-family: "Abhaya Libre", serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: #DDBD85;
    margin-bottom: 25px;
}

/* ICONO SUPERIOR IZQUIERDO */
.icon-izquierdo {
    position: absolute;
    top: -40px;
    left: -30px;
    width: 80px;
    height: 80px;
    opacity: 0.5;
    z-index: 10;
}

/* PARRAFO */
.text-card p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* CARD IMAGEN */
.image-card {
    background-color: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

/* IMAGEN PRINCIPAL */
.image-card .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ICONO INFERIOR DERECHO  — POSICIÓN ORIGINAL */
.icon-derecho {
    position: absolute;
    left: 490px;
    bottom: -20px;
    width: 80px;
    height: 80px;
    opacity: 0.5;
    z-index: 20;
    object-fit: contain;
    pointer-events: none;
}


/* ---------------------------------------------------- */
/* DEFINICIONES GLOBALES DE ESTILO  CONOCE MAS          */
/* ---------------------------------------------------- */

:root {
  /* Tono malva/púrpura apagado similar al de la imagen */
  --color-texto: #6b5569; 
  /* Fuente serif clásica para un estilo elegante */
  --fuente-serif: 'Times New Roman', Times, serif; 
}

/* ---------------------------------------------------- */
/* ESTILOS BASE Y RESPONSIVIDAD             */
/* ---------------------------------------------------- */

/* 1. Ocultar la sección por defecto (PC/Desktop) */
.seccion-conoce-mas {
  display: none; 
}

/* 2. Mostrar la sección en Tabletas y Móviles (Ancho máximo de 1024px) */
@media screen and (max-width: 1024px) {
  .seccion-conoce-mas {
    display: flex; /* Hacemos visible el contenedor */
    justify-content: center; /* Centra el texto */
    padding: 20px 0; /* Espaciado alrededor */
  }
}

/* ---------------------------------------------------- */
/* ESTILOS DEL TEXTO Y SUBRAYADO            */
/* ---------------------------------------------------- */

.texto-conoce-mas {
  /* Estilos del texto */
  font-family: var(--fuente-serif);
  font-size: 24px; 
  font-weight: 500; 
  color: var(--color-texto);
  line-height: 1.2; 
  
  /* Configuración para el subrayado con pseudo-elemento */
  display: inline-block;
  position: relative;
  /* El subrayado real se crea con ::after, por lo que no usamos border-bottom aquí */
}

/* Pseudo-elemento para crear la línea de subrayado ancha */
.texto-conoce-mas::after {
  content: '';
  position: absolute;
  left: -5px; /* Extiende la línea 5px a la izquierda del texto */
  right: -5px; /* Extiende la línea 5px a la derecha del texto */
  bottom: 0;
  height: 1px; /* Grosor de la línea */
  background-color: var(--color-texto); /* Color de la línea */
}
/* esto es seccion 2*/


/* esto es seccion 3*/

/* ********************
   RESPONSIVE LOS DOS CARD DEL TEXTO Y FOTO
******************** */

@media (max-width: 768px) {

    .sobre-valench-section {
        padding: 40px 15px;
    }

    .cards-container {
        flex-direction: column;
        gap: 40px;
    }

    .titulo-sobre {
        font-size: 2.3rem;
    }

    .text-card {
        padding: 30px;
    }

    .text-card p {
        font-size: 0.95rem;
    }

    /* ÍCONO IZQUIERDO — misma posición visual que PC */
    .icon-izquierdo {
        width: 70px;
        height: 70px;
        top: -30px;
        left: -25px;
    }

    .image-card {
        min-height: 400px;
    }

    /* ÍCONO DERECHO — misma posición visual que PC */
    .icon-derecho {
        width: 70px;
        height: 70px;

        /* Mantiene proporción de PC */
        left: calc(100% - 110px); /* equivalente visual al "left:490px" en PC */
        bottom: -15px;
    }
}

@media (max-width: 480px) {

    .titulo-sobre {
        font-size: 1.9rem;
    }

    .text-card p {
        font-size: 0.9rem;
    }

    .image-card {
        min-height: 350px;
    }

    /* ÍCONO IZQUIERDO */
    .icon-izquierdo {
        width: 55px;
        height: 55px;
        top: -20px;
        left: -20px;
    }

    /* ÍCONO DERECHO — posición equivalente a PC pero en pantalla chica */
    .icon-derecho {
        width: 55px;
        height: 55px;

        /* Calculado para verse igual que en PC */
        left: calc(100% - 90px);
        bottom: -10px;
    }
}
/* esto es seccion 3*/



/* esto es seccion 4*/
/* ---------------------------------------------------- */
/* DEFINICIONES GLOBALES DE ESTILO (Reutilizadas)   CONOCE MAS      */
/* ---------------------------------------------------- */

:root {
  /* Tono malva/púrpura apagado */
  --color-texto: #6b5569; 
  /* Fuente serif clásica */
  --fuente-serif: 'Times New Roman', Times, serif; 
}

/* ---------------------------------------------------- */
/* 1. SECCIÓN "conoce más" (Oculta en PC, Visible en Móvil/Tablet) */
/* ---------------------------------------------------- */

/* Ocultar la sección por defecto (PC/Desktop) */
.seccion-conoce-mas {
  display: none; 
}

/* Mostrar la sección en Tabletas y Móviles (Ancho máximo de 1024px) */
@media screen and (max-width: 1024px) {
  .seccion-conoce-mas {
    display: flex; 
    justify-content: center; 
    padding: 20px 0; 
  }
}

/* ---------------------------------------------------- */
/* 2. SECCIÓN "nuestros valores" (Visible en Todos)       */
/* ---------------------------------------------------- */

.seccion-nuestros-valores {
  /* Al no tener display: none; por defecto, siempre será visible */
  display: flex; 
  justify-content: center; /* Centrado en todos los dispositivos */
  padding: 20px 0; 
}
/* esto es seccion 4*/


/* esto es seccion 5*/
/* ---------------------------------------------------- */
/* ESTILOS DEL TEXTO Y SUBRAYADO (REUTILIZADOS) NUESTROS VALORES         */
/* ---------------------------------------------------- */

/* Esta clase aplica el diseño a ambos textos ("conoce más" y "nuestros valores") */
.texto-conoce-mas {
  /* Estilos del texto */
  font-family: var(--fuente-serif);
  font-size: 24px; 
  font-weight: 500; 
  color: var(--color-texto);
  line-height: 1.2; 
  
  /* Configuración para el subrayado con pseudo-elemento */
  display: inline-block;
  position: relative;
}

/* Pseudo-elemento para crear la línea de subrayado ancha */
.texto-conoce-mas::after {
  content: '';
  position: absolute;
  left: -5px; 
  right: -5px; 
  bottom: 0;
  height: 1px; 
  background-color: var(--color-texto); 
}
/* esto es seccion 5*/




/* esto es seccion 6*/

/* ---------------------------------------------------- */
/* VARIABLES DE ESTILO (Asegura que estas estén actualizadas) */
/* ---------------------------------------------------- */

:root {
    /* Color de fondo solicitado */
    --color-fondo: #EBE7E9; 
    
    /* El color de texto e íconos (malva oscuro) */
    --color-texto: #6b5569; 
    
    /* Color de las líneas divisorias (usamos el mismo que el texto) */
    --color-linea: #6b5569; 
    
    /* Fuente serif elegante (basada en tu código anterior) */
    --font-serif: 'Playfair Display', serif; 
}

/* ---------------------------------------------------- */
/* CONTENEDOR PRINCIPAL: VISTA PC (Horizontal, Centrado, MÁS ANCHO) */
/* ---------------------------------------------------- */

.valores-grid-container {
    background-color: var(--color-fondo); 
    padding: 60px 20px; 
    
    /* Configuración de Flexbox: 3 columnas */
    display: flex; 
    justify-content: center; 
    
    /* *** AJUSTE CLAVE: Hacemos el rectángulo más ancho para PC (1100px) *** */
    max-width: 1100px; 
    margin: 0 auto; 
    text-align: center;
}

/* ---------------------------------------------------- */
/* ÍTEM INDIVIDUAL (VALOR) */
/* ---------------------------------------------------- */

.valor-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* SVG en el centro */
    justify-content: flex-start;
    
    flex-basis: 33.33%; 
    flex-grow: 1; 
    padding: 0 40px; /* Más padding para separar los textos en el PC ancho */
    position: relative; 
}

/* ---------------------------------------------------- */
/* ÍCONOS SVG Y TEXTO */
/* ---------------------------------------------------- */

.icon-svg {
    width: 60px; 
    height: 60px;
    display: inline-block;
    margin-bottom: 15px; 
    object-fit: contain;
    line-height: 1; 
}

.valor-item p {
    font-family: var(--font-serif);
    color: var(--color-texto);
    font-size: 16px; 
    line-height: 1.4;
    margin-top: 5px;
}

/* ---------------------------------------------------- */
/* LÍNEAS DIVISORIAS VERTICALES (SOLO PARA PC) */
/* ---------------------------------------------------- */

/* Crea la línea punteada a la DERECHA de cada ítem */
.valor-item::after {
    content: '';
    position: absolute;
    top: 15%; 
    right: 0;
    height: 70%; 
    border-right: 1px dashed var(--color-linea); 
    opacity: 0.6; 
}

/* Elimina la línea punteada del ÚLTIMO elemento en PC */
.valores-grid-container .valor-item:last-child::after {
    content: none;
}

/* ---------------------------------------------------- */
/* RESPONSIVIDAD: MÓVIL/TABLET (Vertical, SIN LÍNEAS divisorias) */
/* ---------------------------------------------------- */

@media (max-width: 768px) {
    .valores-grid-container {
        flex-direction: column; /* Apila los ítems verticalmente */
        max-width: none; 
        padding: 40px 10%; /* Espacio lateral en móvil/tablet */
    }

    .valor-item {
        flex-basis: auto; 
        padding: 30px 0; /* Espaciado vertical entre ítems */
    }

    /* *** AJUSTE CLAVE: Eliminamos las líneas divisorias verticales en móvil/tablet *** */
    .valor-item::after {
        content: none;
    }
    
    /* Si tenías un ::before para la línea vertical continua en móvil, también debe ser eliminado
       para cumplir con el requisito de no tener líneas divisorias. */
    .valor-item::before {
        content: none;
    }

    /* Opcional: Si quieres un separador sutil entre elementos en móvil, usa border-bottom */
    /* .valor-item:not(:last-child) {
        border-bottom: 1px solid #ccc; 
        margin-bottom: 20px;
    } */
}
/* esto es seccion 6*/


/* esto es seccion 7*/
/* ---------------------------------------------------- */
/* VARIABLES DE ESTILO (Recomendadas para consistencia) */
/* ---------------------------------------------------- */

:root {
  /* Color malva/púrpura apagado para el texto y la línea */
  --color-texto: #6b5569; 
  /* Fuente serif clásica y con peso, similar a la imagen (Playfair Display, Times New Roman) */
  --fuente-serif: 'Playfair Display', serif; 
}

/* ---------------------------------------------------- */
/* CONTENEDOR DE LA SECCIÓN */
/* ---------------------------------------------------- */

.seccion-servicios {
  /* Contenedor general para centrar el título */
  display: flex;
  justify-content: center; 
  padding: 40px 0 20px; /* Espaciado superior/inferior */
  background-color: transparent; /* O el color de fondo de tu sección de servicios */
}

/* ---------------------------------------------------- */
/* ESTILOS ESPECÍFICOS DEL TÍTULO */
/* ---------------------------------------------------- */

.titulo-servicios {
  /* El título de la imagen es más grande y negrita que "conoce más" */
  font-family: var(--fuente-serif);
  font-size: 40px; /* Tamaño grande para el encabezado de sección */
  font-weight: 600; /* Un peso intermedio a negrita */
  color: var(--color-texto);
  line-height: 1.2; 
  margin: 0; /* Elimina el margen por defecto del h2 */
  
  /* Hacemos que se comporte como un bloque en línea para el subrayado */
  display: inline-block;
  
}

/* ---------------------------------------------------- */
/* ESTILO REUTILIZABLE PARA EL SUBRAYADO (Clase: .estilo-subrayado) */
/* ---------------------------------------------------- */

/* Reset básico para el underline */
.estilo-subrayado {
  position: relative;
  /* El subrayado real se crea con ::after */
  border-bottom: none; 
}

/* Pseudo-elemento para el subrayado ancho */
.estilo-subrayado::after {
  content: '';
  position: absolute;
  /* Extiende el subrayado más allá del texto a ambos lados (ajusta 5px si es necesario) */
  left: -10px; 
  right: -10px; 
  bottom: 5px; /* Ajusta la separación vertical del texto */
  height: 1px; /* Grosor de la línea */
  background-color: var(--color-texto);
  
  /* Asegura que la línea esté debajo del texto */
  z-index: 1; 
}
/* esto es seccion 7*/


/* esto es seccion 8*/
/* ============================
   SECCIÓN 8 – SERVICIOS
   ============================ */

.services-section {
  padding: 60px 20px;
  background-color: #fafafa;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* GRID PRINCIPAL 3 COLUMNAS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* CARD GENERAL */
.service-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

/* ============================
   CARRUSEL DE IMÁGENES
   ============================ */

.service-image {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.service-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.service-image img.active {
  opacity: 1;
}

/* Dots */
.image-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 20;
}

.image-dots .dot {
  width: 10px;
  height: 10px;
  background: #ffffff90;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.image-dots .dot.active {
  background: #fff;
}

/* ============================
   CONTENIDO DE LA CARD
   ============================ */

.service-content {
  padding: 20px;
}

.service-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.service-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 15px;
  color: #333;
}

/* ============================
   BOTÓN ORIGINAL (NO CAMBIADO)
   ============================ */

/* ESTE ES EL TUYO — NO LO MODIFIQUÉ */
.service-btn {
  width: 100%;
  padding: 12px 0;
  background: #664E62; /* ← si tu botón era negro aquí queda EXACTO */
  color: #fff;
  border: none;
  border-radius: 5px; /* ← como tú lo tenías */
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-btn:hover {
  transform: scale(1.03); /* efecto suave como antes */
}

/* ============================
   FILA INFERIOR (CARD + BANNER)
   ============================ */

.services-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Banner */
.promo-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.promo-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-image {
    height: 230px;
  }
}

/* CORRECCIÓN DE BOTONES DESALINEADOS */
.service-card {
  display: flex;
  flex-direction: column;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-btn {
  margin-top: auto; /* asegura que TODOS los botones bajen */
}

/* CENTRAR SOLO LOS NOMBRES DE LOS PRODUCTOS */
.service-content h3 {
  text-align: center;
  width: 100%;
}

/* Carrusel imágenes */
.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  opacity: 0;
  transition: opacity .4s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}

.service-image img.active {
  opacity: 1;
  position: relative;
}

/* Dots */
.image-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.image-dots .dot {
  width: 9px;
  height: 9px;
  background: #d1c4e9;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.image-dots .dot.active {
  background: #6a1b9a;
  transform: scale(1.2);
}
/* esto es seccion 8*/


/* esto es seccion 9*/
/* ================================
   la letra ¿Qué dicen nuestros clientes?
================================ */

.seccion-testimonios {
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  background-color: #fafafa;
}

/* TÍTULO */
.texto-testimonios {
 font-family: 'Playfair Display', serif;
  color: #6b5569;
  font-size: 36px;
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-bottom: 3px; 
}

/* Subrayado elegante reutilizable */
.texto-testimonios::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #6b5569;
}
/* esto es seccion 9*/



/* esto es seccion 10*/
/* SECCIÓN */
.comentarios-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* COLUMNA IZQUIERDA */
.comentarios-left {
  width: 260px;
  text-align: left;
}

.comentarios-title {
  font-size: 30px;
  font-weight: 700;
}

.comentarios-stars {
  font-size: 28px;
  margin: 10px 0;
}

.comentarios-based {
  color: #333;
  font-size: 14px;
}

/* GOOGLE COLORS */
.google-colored {
  font-size: 34px;
  font-weight: 700;
  font-family: 'Product Sans', Arial, sans-serif;
  margin-top: 10px;
}

.g-blue {
  color: #4285F4;
}

.g-red {
  color: #EA4335;
}

.g-yellow {
  color: #FBBC05;
}

.g-green {
  color: #34A853;
}

/* SLIDER */
.comentarios-slider-container {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.comentarios-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

/* CARD */
.comentario-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  min-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.comentario-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comentario-avatar {
  width: 40px;
  height: 40px;
  background: #444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.comentario-name {
  font-weight: 700;
  font-size: 15px;
}

.comentario-date {
  color: #777;
  font-size: 12px;
}

.comentario-google {
  width: 20px;
  margin-left: auto;
}

.comentario-stars-row {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.verificado-icon {
  width: 18px;
}

.comentario-text {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

/* FLECHAS */
.arrow-left,
.arrow-right {
  display: none;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: white;
  border: none;
  font-size: 28px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
}

.arrow-left { left: 5px; }
.arrow-right { right: 5px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .comentarios-section {
    flex-direction: column;
  }

  .comentarios-left {
    width: 100%;
    text-align: center;
  }

  .arrow-left,
  .arrow-right {
    display: block;
  }
}

/* esto es seccion 10*/




/* el texto subrayado nuestro valores */
.seccion-nuestros-valores {
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  background-color: #fafafa;
}

/* TÍTULO */
.texto-conoce-mas {
  font-family: 'Playfair Display', serif;
  color: #6b5569;
  font-size: 36px;
  font-weight: 600;
  display: inline-block; /* NECESARIO para que tome el ancho del texto */
  position: relative;    /* NECESARIO para ubicar la línea */
  padding-bottom: 2px;   /* Separa el texto de la línea */
}

/* Subrayado elegante (100% del texto) */
.texto-conoce-mas::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;           /* LÍNEA DEL MISMO ANCHO QUE EL TEXTO */
  height: 2px;
  background-color: #6b5569;
}
/* el texto subrayado nuestro valores */



/* ===================================== */
/* VARIABLES CSS GLOBALES                */
/* ===================================== */
:root {
  /* Colores principales */
  --color-primary: #75505F;
  --color-secondary: #DDBD85 ;
  --color-accent:  #f0bf6c;
  --color-text-dark: #4A3428;
  --color-icon: #6B4423;
  
  /* Espaciados */
  --padding-mobile: 15px;
  --padding-tablet: 40px;
  --padding-desktop: 90px;
  
  /* Breakpoints */
  --breakpoint-tablet: 769px;
  --breakpoint-desktop: 1025px;
  
  /* Tipografía */
  --font-heading: 'Playfair Display', serif;
}



/* ===================================== */
/* FOOTER - Sección Ubicación (MOBILE FIRST) */
/* ===================================== */

.footer-ubicacion {
  background-color: var(--color-primary);
  padding: 40px var(--padding-mobile) 30px;
  width: 100%;
}

.footer-title {
  color: var(--color-secondary);
  font-size: 1.8rem;
  font-family: var(--font-heading);
  margin: 0 auto 30px;
  text-align: center;
  font-weight: normal;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 0 auto;
  padding: 0 var(--padding-mobile);
}

.footer-mapa {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.footer-mapa iframe {
  display: block;
  width: 100%;
  height: 250px;
}

.footer-redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  gap: 15px;
}

.footer-red-card {
  display: flex;
  align-items: center;
  background-color: var(--color-secondary);
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  height: 55px;
  width: 100%;
  border: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.footer-red-card:hover,
.footer-red-card:focus {
  transform: scale(1.02);
  outline-color: var(--color-accent);
}

.footer-icon-box {
  background-color: var(--color-accent);
  padding: 0;
  width: 65px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 📌 Íconos de REDES SOCIALES (SVG/IMG) */
.footer-icon-box i,
.footer-icon-box .social-svg {
  display: block;
  width: 30px;
  height: 30px;
  /* Nota: El color de <img> se define en el archivo SVG */
}

.footer-red-card span {
  flex: 1;
  text-align: center;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 500;
  text-transform: uppercase;
}

/* Info contacto del footer (Mobile) */
.footer-info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  color: var(--color-secondary);
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.footer-info-item {
  /* MÓVIL: Apilado vertical */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

/* 📌 Íconos de INFO (SVG/IMG) en MÓVIL */
.footer-info-item .info-svg { /* Usamos la nueva clase */
  display: block;
  width: 20px; /* Tamaño SVG móvil */
  height: 20px;
  margin-bottom: 0;
  vertical-align: middle; 
}

.footer-contact-text {
  font-size: 1.1rem;
  color: var(--color-secondary);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--color-secondary);
  text-align: center;
  margin-top: 10px;
}

/* ===================================== */
/* RESPONSIVE - TABLET (≥ 769px)        */
/* ===================================== */
@media (min-width: 769px) {
  .footer-ubicacion {
    padding: 60px var(--padding-tablet) 40px;
  }
  
  .footer-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: left;
    margin-left: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
    max-width: 768px;
  }
  
  .footer-mapa iframe {
    height: 350px;
  }
  
  .footer-redes {
    max-width: 100%;
    align-items: stretch;
    margin: 0;
  }
  
  .footer-red-card {
    height: 70px;
  }
  
  .footer-icon-box {
    width: 80px;
    height: 70px;
  }
  
  /* 📌 Íconos de REDES SOCIALES (SVG/IMG) en TABLET */
  .footer-icon-box i,
  .footer-icon-box .social-svg {
    width: 35px;
    height: 35px;
  }
  
  .footer-red-card span {
    font-size: 1.5rem;
  }
  
  .footer-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0;
    margin-top: 40px;
    gap: 20px;
  }
  
  .footer-info-item {
    display: flex;
    flex-direction: row; 
    align-items: center; /* Se mantiene centrado para texto de una línea */
    gap: 8px; 
    font-size: 1rem;
  }
  
  /* 📌 Íconos de INFO (SVG/IMG) en TABLET */
  .footer-info-item .info-svg { 
    width: 22px;
    height: 22px;
    margin-bottom: 0;
    vertical-align: middle; 
    flex-shrink: 0; 
  }
  
  .footer-contact-text {
    font-size: 1rem;
  }
  
  .footer-copyright {
    font-size: 0.9rem;
    margin-top: 0;
  }
}

/* ===================================== */
/* RESPONSIVE - DESKTOP (≥ 1025px)      */
/* ===================================== */
@media (min-width: 1025px) {
  .footer-ubicacion {
    padding: 60px 20px 40px;
  }
  
  .footer-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    margin-left: var(--padding-desktop);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    padding: 0 var(--padding-desktop);
  }
  
  .footer-mapa iframe {
    height: 400px;
  }
  
  .footer-redes {
    align-items: stretch;
    gap: 20px;
    margin: 0;
  }
  
  .footer-red-card {
    height: 80px;
  }
  
  .footer-icon-box {
    width: 100px;
    height: 80px;
  }
  
  /* 📌 Íconos de REDES SOCIALES (SVG/IMG) en DESKTOP */
  .footer-icon-box i,
  .footer-icon-box .social-svg {
    width: 45px;
    height: 45px;
  }
  
  .footer-red-card span {
    font-size: 2rem;
  }
  
  .footer-info {
    margin-top: 60px;
    max-width: 1400px;
    padding: 0 var(--padding-desktop);
  }
  
  /* 🟢 CORRECCIÓN DE ALINEACIÓN GENERAL PARA DESKTOP */
  .footer-info-item {
    display: flex;
    flex-direction: row;
    align-items: center; /* Alineación por defecto: centro */
    gap: 10px; 
    font-size: 1.1rem;
  }

  /* 🟢 CORRECCIÓN ESPECÍFICA PARA LA UBICACIÓN (Ícono con texto multilínea) */
  .footer-info-item:nth-child(1) {
    /* Sobreescribe la alineación por defecto para asegurar que el icono se alinee con el inicio del texto */
    align-items: flex-start;
    justify-self: start;
  }

  /* 📌 Íconos de INFO (SVG/IMG) en DESKTOP */
  .footer-info-item .info-svg { /* Usamos la nueva clase */
    width: 24px;
    height: 24px;
    vertical-align: middle; 
    flex-shrink: 0;
  }
  
  /* Alineación específica para desktop (Ajustado el ítem 1) */
  .footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
  }
  
  /* El ítem 1 ya fue ajustado arriba */
  
  .footer-info-item:nth-child(2) {
    justify-self: center;
  }
  
  .footer-info-item:nth-child(3) {
    justify-self: end;
  }
  
  .footer-copyright {
    font-size: 0.9rem;
  }
}

/* ===================================== */
/* MEJORAS DE ACCESIBILIDAD             */
/* ===================================== */
@media (prefers-reduced-motion: reduce) {
  .footer-red-card {
    transition: none;
  }
  
  .footer-red-card:hover,
  .footer-red-card:focus {
    transform: none;
  }
}

/* Soporte para modo alto contraste */
@media (prefers-contrast: high) {
  .footer-red-card {
    outline: 2px solid currentColor;
  }
  
  .footer-mapa {
    border: 2px solid currentColor;
  }
}

/* ===================================== */
/* CORRECCIONES ESPECÍFICAS PARA SCROLL HORIZONTAL */
/* ===================================== */

/* Asegurar que todas las imágenes no excedan el ancho */
img {
  max-width: 100%;
  height: auto;
}

/* Asegurar que el iframe del mapa no cause problemas */
.footer-mapa iframe {
  max-width: 100%;
  display: block;
}

/* Corregir el problema de zoom en móvil - mantener viewport intacto */
@media (max-width: 900px) {
  .banner-text {
    font-size: 22px;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  /* Asegurar que los elementos flex no se desborden */
  .cards-container {
    width: 100%;
    padding: 0 15px;
  }
  
  .valores-grid-container {
    width: 100%;
    padding: 40px 15px;
  }
  
  .services-container {
    width: 100%;
    padding: 0 15px;
  }
  
  .comentarios-section {
    width: 100%;
    padding: 20px 15px;
  }
}

/* Prevenir que elementos con posición absoluta causen scroll */
.service-image,
.promo-banner,
.comentarios-slider-container {
  position: relative;
  overflow: hidden;
}

/* Asegurar que el contenedor del slider no cause overflow */
.comentarios-slider {
  width: max-content;
}

/* CORRECCIÓN FINAL: Garantizar que el body no tenga scroll horizontal */
body {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}



/* ===============================
   FLOATING WHATSAPP CHAT
================================ */

.floating-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Burbuja de mensaje */
.whatsapp-bubble {
  background: #ffffff;
  color: #333;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Visible */
.whatsapp-bubble.show {
  opacity: 1;
  transform: translateX(0);
}

/* Botón */
.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.whatsapp-btn img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ===============================
   RESPONSIVE
================================ */

/* Móvil */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn img {
    width: 24px;
    height: 24px;
  }

  .whatsapp-bubble {
    font-size: 13px;
    padding: 8px 12px;
  }
}





/* ============================
   LIGHTBOX GALERÍA CARD
============================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
}

/* Cerrar */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Flechas */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 40px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
}

.lightbox-arrow.left { left: 20px; }
.lightbox-arrow.right { right: 20px; }

/* Móvil: flechas más chicas */
@media (max-width: 768px) {
  .lightbox-arrow {
    font-size: 28px;
    padding: 8px 14px;
  }
}


/* ===============================
   GLOBAL FIX (quita highlight del navegador)
================================ */

button,
a {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* ===============================
   FLOATING RESEÑA
================================ */

.floating-resena {
  position: fixed;
  bottom: 90px;
  right: 22px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Burbuja de texto */
.resena-bubble {
  background: #ffffff;
  color: #333;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.resena-bubble.show {
  opacity: 1;
  transform: translateX(0);
}

/* Botón circular */
.resena-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #f0bf6c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover desktop */
.resena-btn:hover {
  transform: scale(1.08);
}

/* Tap / Click (feedback propio, sin cuadrado) */
.resena-btn:active {
  transform: scale(0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Imagen */
.resena-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

/* ===============================
   RESPONSIVE (MÓVIL)
================================ */

@media (max-width: 768px) {
  .floating-resena {
    bottom: 85px;
    right: 18px;
  }

  .resena-btn {
    width: 46px;
    height: 46px;
  }

  .resena-btn img {
    width: 26px;
    height: 26px;
  }

  .resena-bubble {
    font-size: 13px;
    padding: 8px 12px;
  }
}
