/* ==========================================================================
   1. IMPORTACIONES Y VARIABLES (MANTENIDAS EXACTAMENTE IGUAL)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Montserrat:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
    --bordo: #9b1313;
    --fondo: #dfddd3; 
    --dorado: #d2c599;
    --gris: #4d4d4d;
    --blanco: white;
    --montserrat: "Montserrat", sans-serif;
}

/* ==========================================================================
   2. ESTILOS GLOBALES Y CAJAS BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    background-color: var(--fondo);
}

/* ==========================================================================
   3. NAVBAR & COMPONENTES DE ENCABEZADO
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0% 18%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    width: 34%;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    font-family: var(--montserrat);
    color: var(--bordo);
}


.linav {
    width: 235px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--primary);
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a.btn-cta-nav {
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#btn-nav {
    background-color: var(--bordo);
    color: var(--dorado);
    border: none;
    padding: 11px 25px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 9px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    letter-spacing: 1px;
}

#btn-nav:hover {
    background-color: #c9bc8b;
    transform: scale(1.02);
}

/* Menú de barras (Hamburguesa) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #8b1a10;
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* ==========================================================================
   4. HERO SECTION & BANNER PUBLICITARIO
   ========================================================================== */
.hero {
    display: flex;
    padding: 0px 10% 40px;
    align-items: center;
    gap: 50px;
    background-color: var(--light);
    position: relative; /* Contexto de posicionamiento para elementos absolutos internos */
    margin-top: 4%;
}

.hero-content h1 span {
    color: var(--accent);
    display: block;
}

.hero-image {
    width: 100%;
    height: 520px;
    border-radius: 15px;
    background-image: url('./logohero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Elementos del banner CTA dentro del Hero */
.cta-banner {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    top: 33rem;
    right: 32rem;
}

.cta-text {
    color: var(--dorado);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 9px;
    letter-spacing: 0.5px;
}

 .cta-button {
    position: absolute;
    background-color: #d8cd9e;
    color: #6d0e0a;
    border: none;
    padding: 11px 45px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 9px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    letter-spacing: 1px;
    top: -5rem;
    right: -1rem;
    width: 15rem;
    font-family: var(--montserrat);
}

.cta-button:hover {
    background-color: #c9bc8b;
    transform: scale(1.02);
}

/* Efectos de interacción heredados */
.btn-cta-nav:hover::before, .btn-sweep:hover::before {
    transform: translateX(100%);
}

.btn-cta-nav:focus, .btn-sweep:focus {
    outline: none;
}

/* ==========================================================================
   5. SECCIÓN DE SERVICIOS (GRID EQUILIBRADA)
   ========================================================================== */
.servicios-container {
    background-color: #e2e0d6;
    padding: 80px 10%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.servicios-header {
    margin-bottom: 60px;
}

.titulo-serif {
    font-family: 'Playfair Display', serif;
    color: #8b1a10;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.descripcion-principal {
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--montserrat);
}

.servicios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.servicio-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicio-icon img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.imgserv {
    width: 10%;
}

.servicio-titulo {
    font-family: 'Playfair Display', serif;
    color: #8b1a10;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.servicio-texto {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
    font-family: var(--montserrat);
}

/* Botón colapsable para textos extensos en móviles */
.read-more-btn {
    display: none;
    background: none;
    border: none;
    color: #8b1a10;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    margin-top: 5px;
    padding: 5px;
}

/* Clases duplicadas mapeadas del primer borrador de la grilla */
.services { padding: 60px 10%; text-align: center; }
.service-card { background: var(--light); padding: 30px; border-radius: 10px; text-align: left; transition: transform 0.3s; }
.service-icon { width: 60px; height: 60px; background-color: #ddd; margin-bottom: 20px; border-radius: 8px; }
.more-text { display: none; }
.toggle-btn { background: none; border: 1px solid var(--accent); color: var(--accent); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; margin-top: 10px; font-weight: bold; }

/* ==========================================================================
   6. SECCIÓN DE CONTACTO & FORMULARIO MINIMALISTA
   ========================================================================== */
.contacto-section {
    background-color: #d2c89d;
    padding: 80px 10%;
    display: flex;
    justify-content: center;
}

.contacto-container {
    max-width: 1100px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
}

/* Columna Izquierda: Mensaje de Marca */
.contacto-info {
    flex: 1;
    text-align: right;
    color: #8b1a10;
}

.txt-somos { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; margin-bottom: -10px; }
.txt-valores { font-family: 'Playfair Display', serif; font-size: 6rem; font-style: italic; margin: 0; }
.txt-que { font-family: 'Montserrat', sans-serif; font-size: 2rem; margin-top: -15px; }
.txt-elegimos { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 2.2rem; letter-spacing: 3px; }
.txt-representar { font-family: 'Montserrat', sans-serif; font-weight: 400; font-size: 2.2rem; letter-spacing: 3px; margin-top: -10px; }

/* Columna Derecha: Estructura del Formulario */
.contacto-form-container {
    flex: 1.5;
    color: #8b1a10;
    width: 100%;
}

.form-titulo { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 20px; }
.form-descripcion { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 0.9rem; 
    line-height: 1.4; 
    margin-bottom: 30px; 
    color: #5a4b3d;
}

.consulta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consulta-form input, 
.consulta-form select,
.consulta-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #8b1a10;
    padding: 10px 5px;
    font-family: 'Montserrat', sans-serif;
    color: #5a4b3d;
    font-size: 1rem;
    outline: none;
    width: 100%;
}

.consulta-form input::placeholder,
.consulta-form textarea::placeholder {
    color: #8b1a10;
    opacity: 0.7;
}

.consulta-form select {
    cursor: pointer;
}

.consulta-form select option {
    background-color: #d2c89d;
    color: #8b1a10;
    font-family: 'Montserrat', sans-serif;
}

/* Validaciones y pseudo-clases del formulario nativo */
.consulta-form input:invalid:not(:placeholder-shown) { border-bottom: 2px solid #ff4d4d; }
.consulta-form input:valid:not(:placeholder-shown) { border-bottom: 2px solid #2ecc71; }

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #d2c89d inset !important;
    -webkit-text-fill-color: #8b1a10 !important;
    transition: background-color 5000s ease-in-out 0s;
}

input:autofill { background-color: transparent !important; }

/* Botón del Formulario */
.btn-enviar {
    background-color: #8b1a10;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    align-self: flex-start;
    margin-top: 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-enviar:hover { background-color: #6a130b; }

/* Elementos alternativos de contenedores descartados pero mantenidos */
.contact-section { padding: 60px 10%; background: var(--white); }
.values-header { text-align: center; margin-bottom: 40px; }
.form-container { max-width: 600px; margin: 0 auto; background: var(--light); padding: 40px; border-radius: 15px; }

/* ==========================================================================
   7. FOOTER & COMPONENTES DE MARCA DE AGUA
   ========================================================================= */
.footer-section {
    background-color: #8b1a10;
    color: #ffffff;
    padding: 29px 12%;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.footer-brand {
    flex: 1;
    max-width: 50%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logofooter {
    width: 35%;
}

.brand-text-footer {
    display: flex;
    flex-direction: column;
}

.brand-text-footer .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.brand-text-footer .sub {
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-slogan {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    width: 34rem;
    font-family: var(--montserrat);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
    margin-top: 3%;
    width: 50%;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-right: 29%;
}

.social-links a {
    color: #8b1a10;
    background-color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover { transform: translateY(-5px); }

.contact-info-footer {
    text-align: right;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-info-footer p {
    margin-left: -46%;
    width: 100%;
}

.afooter {
    text-decoration: none;
    color: white;
    margin-right: 34%;
}

.divubi {
    display: flex;
    flex-direction: row;
    gap: 27%;
    margin-top: 1%;
    align-items: center;
    margin-left: 17%;
}

.pubi {
    margin-left: -226px;
    width: 100%;
}

.iconfooter {
    width: 4%;
    margin-right: 2px;
}

.iconfooterubi {
    width: 18px;
    margin-right: 12px;
}

/* Créditos finales de desarrollo */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.daeweb-credit span {
    font-weight: 700;
    color: #d2c599;
}

/* ==========================================================================
   8. COMPONENTE FLOTANTE: WHATSAPP DIRECTO
   ========================================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 2000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.whatsapp-float-sq {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    background-color: #ffffff;
    border: 1.5px solid #8b1a10;
    border-radius: 10px; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wspicon {
    width: 60%;
}

.wa-icon-red {
    width: 32px;
    height: 32px;
    filter: invert(16%) sepia(44%) saturate(5514%) hue-rotate(346deg) brightness(84%) contrast(103%);
}

.whatsapp-float-sq:hover {
    transform: scale(1.1);
    background-color: #f8f8f8;
}

/* KEYFRAMES DE ANIMACIONES NATIVAS */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ==========================================================================
   9. MEDIA QUERIES UNIFICADAS (RESPONSIVE TOTAL PC, TABLET Y MÓVIL)
   ========================================================================== */

/* --- DISPOSITIVOS MEDIANOS / TABLETS (max-width: 900px) --- */
@media (max-width: 900px) {
    .contacto-container {
        flex-direction: column; 
        gap: 40px;
        padding: 0 10px;
    }

    .contacto-info {
        text-align: center; 
        width: 100%;
    }

    .contacto-form-container {
        width: 100%;
    }

    .txt-valores {
        font-size: 4rem; 
    }

    .txt-elegimos, .txt-representar {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .btn-enviar {
        width: 100%;
        justify-content: center;
    }
}

/* --- DISPOSITIVOS MÓVILES ESTÁNDAR (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Navbar Responsiva con Menú Desplegable */
    .navbar {
        padding: 10px 5%;
        background-color: var(--white);
        position: relative;
        flex-direction: row; /* Previene la ruptura de alineación con el botón hamburguesa */
        justify-content: space-between;
    }

    .logo-img {
        width: 39%;
        margin-left: 0; /* Se elimina el margen forzado para alineación fluida */
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 3rem;
    }

    .nav-links {
        display: none; 
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: #d2c599; 
        flex-direction: column;
        align-items: center; 
        justify-content: center;
        padding: 30px 0;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1); 
        z-index: 999;
        border-top: 1px solid rgba(139, 26, 16, 0.15); 
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    .nav-links li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        margin-left: 0;
        font-size: 13px; 
        letter-spacing: 1.5px;
        font-weight: 500;
        text-transform: uppercase;
        display: block;
    }

    #btn-nav {
        margin-top: 10px;
        padding: 10px 30px;
        font-size: 12px;
        width: auto;     
        display: inline-block;
        min-width: 200px;
    }

    /* Hero Adaptable para Teléfonos */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px 5% 40px;
    }

    .hero-image {
                background-image: url(./heromobile.png);
        height: 300px;
        width: 106%;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: 15px;
        margin-left: 0;
    }

    /* Banner de Promoción (CTA) sobrepuesto adaptable */
    .cta-banner {
        position: relative;
        margin: 20px auto 0;
        text-align: center;
        right: -33%;
        top: 18rem;
    }

    .cta-text {
        color: var(--bordo); /* Cambia a bordo en móvil para asegurar la legibilidad sobre fondos claros */
        font-size: 14px;
        margin-bottom: 10px;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
        position: absolute;
        top: 75%;
                width: 10rem;
    }

    #abutton{
    text-decoration: none;
    color: #9b1313;
    font-size: 9px;
}

    /* Grilla de Servicios de una columna */
    .servicios-container {
        padding: 40px 5%;
    }

    .titulo-serif {
        font-size: 2.2rem; 
    }

    .servicios-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
    }

    /* Botón Ver Más del JS funcional en Móviles */
    .read-more-btn {
        display: block;
    }

    .servicio-texto.collapsible {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;  
        overflow: hidden;
    }

    .servicio-texto.expanded {
        display: block;
        -webkit-line-clamp: initial; 
    }

    /* Formulario Adaptable */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Footer y Elementos del extremo inferior */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .logofooter {
        width: 56%;
    }

    .footer-brand {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-slogan {
        font-size: 0.9rem;
        line-height: 1.6;
        opacity: 0.9;
        width: 100%;
        max-width: 23rem;
    }

    .footer-contact {
        align-items: center;
        gap: 20px;
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
        margin-right: 0;
    }

    .contact-info-footer {
        align-items: center;
        text-align: center;
    }

    .contact-info-footer p {
        margin-left: 0;
        justify-content: center;
    }

    .divubi {
        margin-left: 0;
        justify-content: center;
        gap: 0px;
    }

    .pubi {
        margin-left: 0;
    }

    .afooter {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    

    .iconfooter,
    .iconfooterubi {
        width: 18px;
        height: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 15px 10px;
    }
}

/* --- CELULARES MUY PEQUEÑOS (max-width: 480px) --- */
@media (max-width: 480px) {
    .whatsapp-float-sq {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}


/* ==========================================================================
   SECCIÓN DE RESEÑAS & CARRUSEL AUTOMÁTICO
   ========================================================================== */
.reseñas-section {
    background-color: #dfddd3; /* Fondo base de tu marca */
    padding: 80px 10%;
    text-align: center;
    overflow: hidden;
}

.reseñas-titulo {
    font-family: 'Playfair Display', serif;
    color: #8b1a10; /* Rojo bordo */
    font-size: 2.8rem;
    margin-bottom: 40px;
}

/* Contenedor del carrusel (Mantiene el tamaño y oculta el desborde) */
.carrusel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 5px;
}

/* Línea móvil que contiene las tarjetas (Mantiene la funcionalidad del JS) */
.carrusel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* Estructura y tamaño BASE de la tarjeta (IDÉNTICO AL ANTERIOR) */
.reseña-card {
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease;
    
    /* Mantiene estrictamente las 3 tarjetas perfectas en PC con su espacio (gap) */
    flex: 0 0 calc((100% - 60px) / 3); 
}

/* Estilos de los textos internos comunes */
.estrellas {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.reseña-texto {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.reseña-autor {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.reseña-caso {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   COMPORTAMIENTO DE COLORES ALTERNADOS (Mantiene tamaños, solo cambia estética)
   -------------------------------------------------------------------------- */

/* REGLA 1: Tarjetas 1 y 4 -> Fondo Oscuro (#731a16), Letras Blancas */
.reseña-card:nth-child(3n+1) {
    background-color: #731a16;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.reseña-card:nth-child(3n+1) .estrellas { color: #d2c599; } /* Estrellas doradas */
.reseña-card:nth-child(3n+1) .reseña-texto { color: #ffffff; }
.reseña-card:nth-child(3n+1) .reseña-autor { color: #ffffff; }
.reseña-card:nth-child(3n+1) .reseña-caso { color: #d2c599; }

/* REGLA 2: Tarjetas 2 y 5 -> Fondo Claro (#e0ddd4), Letras Bordo */
.reseña-card:nth-child(3n+2) {
    background-color: #e0ddd4;
    border: 1px solid rgba(115, 26, 22, 0.15);
}
.reseña-card:nth-child(3n+2) .estrellas { color: #731a16; } /* Estrellas bordo */
.reseña-card:nth-child(3n+2) .reseña-texto { color: #4d4d4d; } /* Gris oscuro para lectura óptima */
.reseña-card:nth-child(3n+2) .reseña-autor { color: #731a16; }
.reseña-card:nth-child(3n+2) .reseña-caso { color: #731a16; opacity: 0.8; }

/* REGLA 3: Tarjetas 3 y 6 -> Fondo Dorado Claro (#d2c599), Letras Bordo */
.reseña-card:nth-child(3n) {
    background-color: #d2c599;
    border: 1px solid rgba(115, 26, 22, 0.15);
}
.reseña-card:nth-child(3n) .estrellas { color: #731a16; } /* Estrellas bordo */
.reseña-card:nth-child(3n) .reseña-texto { color: #4d4d4d; } 
.reseña-card:nth-child(3n) .reseña-autor { color: #731a16; }
.reseña-card:nth-child(3n) .reseña-caso { color: #731a16; opacity: 0.8; }

/* --------------------------------------------------------------------------
   PUNTITOS INDICADORES DE ABAJO
   -------------------------------------------------------------------------- */
.carrusel-indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(139, 26, 16, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #8b1a10;
    width: 12px;
    height: 12px;
}

/* --------------------------------------------------------------------------
   RESPONSIVE EN TODAS LAS PANTALLAS (Mantiene la funcionalidad exacta)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .reseñas-section { padding: 60px 8%; }
    .reseña-card {
        /* Pasan a verse exactamente 2 tarjetas en pantalla (Ajuste automático) */
        flex: 0 0 calc((100% - 30px) / 2);
    }
    .reseñas-titulo { font-size: 2.3rem; }
}

@media (max-width: 600px) {
    .reseñas-section { padding: 50px 5%; }
    .reseña-card {
        /* Pasa a verse 1 sola tarjeta completa por pantalla en celulares */
        flex: 0 0 100%;
    }
    .reseñas-titulo { font-size: 1.9rem; }
}