/* HERO BANNER - ESTILO ELEGANTE Y FUTURISTA */
.hero-banner {
    position: relative;
    height: 93vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    top: -50px; /*CAMBNIO DE ALTURA DE ABNNER HERO Y TODO LO DE ABAJO*/
}

.hero-background {
    position: absolute;
    top: 1%;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.6; /* antes era 1 */
    background-color: rgba(0,0,0,0.4); /* Capa negra semi-transparente */
    z-index: -1;
    transition: opacity 1.5s ease-in-out;
}




.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    /* Colocar todo en columna */
    justify-content: flex-start;
    /* Centrar vertical */
    align-items: center;
    /* Centrar horizontal */
    text-align: center;
    width: 100%;
    height: 100vh;
    /* Ocupa toda la altura de la pantalla */
    padding: 0 20px;
    /* Un poco de espacio lateral */
    box-sizing: border-box;

    padding-top: 100px;
    /* 🔥 desplaza todo hacia abajo */
}



.hero-text {
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #c9a467;
    /* Dorado elegante */
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Posicionar los lemas abajo del hero */
.hero-lemas {
    position: absolute;      /* Para sacarlo del flujo normal */
    bottom: 100px;            /* Distancia desde abajo del hero */
    left: 50%;               /* Centrar horizontalmente */
    transform: translateX(-50%);
    width: 90%;              /* Ajustable según quieras margen */
    max-width: 1100px;        /* No demasiado ancho */
    text-align: center;
    min-height: auto;        /* Elimina el min-height que forzaba espacio extra */
    margin: 0;               /* Elimina márgenes */
    padding: 0 10px;         /* Espacio lateral para móviles */
}

.lema-item {
    position: absolute;
    top: -20px; 
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    font-size: 1.2rem;
    line-height: 1.4;
    font-family: Arial, Helvetica, sans-serif; 
    font-weight: 700;      
    font-style: normal !important;  
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2); 

    /* Fondo crema difuminado */
    background: rgba(209, 202, 183, 0.6);
    backdrop-filter: blur(6px);
    padding: 30px 20px 0px 20px; /* arriba, derecha, abajo, izquierda */
    border-radius: 12px;

    /* Centrar el texto vertical y horizontalmente */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-align: center;   
    margin: 0 auto;       
}



.lema-item.active {
    opacity: 1;
}

/* Responsive: adaptar para pantallas pequeñas */
@media (max-width: 768px) {
    .hero-lemas {
        bottom: 40px;
        width: 100%;
        padding: 0 5px;
    }
    
    .lema-item {
        font-size: 1rem;
        line-height: 1.3;
        white-space: normal;  /* Permite que se ajuste en varias líneas si es necesario */
    }
}



.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 70px;
}

.btn-hero {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: #c9a467;
    color: #0a1f2d;
    border: 2px solid #c9a467;
}

.btn-primary:hover {
    background: transparent;
    color: #c9a467;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 164, 103, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0a1f2d;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    width: 300px;
    height: 300px;
    margin-top: 30px;
}

.agave-silhouette {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1615484477205-5a6e42a6c280?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80') center/contain no-repeat;
    opacity: 0.8;
    z-index: 1;
}

.liquid-animation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: rgba(201, 164, 103, 0.6);
    border-radius: 50%;
    filter: blur(20px);
    animation: liquidMove 5s infinite alternate ease-in-out;
}

@keyframes liquidMove {
    0% {
        height: 150px;
        width: 150px;
        opacity: 0.6;
    }

    100% {
        height: 170px;
        width: 130px;
        opacity: 0.8;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hero-scroll:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: 10px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Iconos de redes sociales */
.social-icons {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5c28b;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #c9a467;
    transform: translateY(-5px);
    color: #0a1f2d;
}

/* Secciones de información  SECCIÓN PROPÓSITO */
.info-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.info-section:nth-child(even) {
    background-color: #f8f9fa;
}

#proposito {
    background-color: #4b9177 !important;
    color: white;
}
.dark-section {
    background-color: #0a1f2d;
    color: white;
}

.dark-section .section-title {
    color: white;
}

.dark-section .info-content p {
    color: rgba(255, 255, 255, 0.9);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0a1f2d;
    position: relative;
    display: block; /* <-- cambio aquí */
    text-align: center; /* asegura que esté centrado */
    margin-left: auto;  /* centra horizontalmente */
    margin-right: auto; /* centra horizontalmente */
}


.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #c9a467;
}

.info-content {
    padding: 20px;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.info-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.info-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 31, 45, 0.2), rgba(10, 31, 45, 0.5));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.info-image:hover .image-overlay {
    opacity: 1;
}

/* Tarjetas de problemas */
.problem-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201, 164, 103, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #c9a467;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0a1f2d;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
}

.dark-section .problem-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.dark-section .problem-card h3 {
    color: white;
}

.dark-section .problem-card p {
    color: rgba(255, 255, 255, 0.8);
}

.problem-image {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 15px;
}

.problem-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.problem-image img:hover {
    transform: scale(1.05);
}


/* Tarjetas de solución  SECCIÓN SOLUCIÓN */
.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-image {
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    color: #0a1f2d;
}

.solution-card p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

#solucion {
    background-color: #c48052 !important;
    color: white;
}

.dark-section .solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.dark-section .solution-card h3 {
    color: white;
}

.dark-section .solution-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .lema-item {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 200px;
        margin-bottom: 10px;
    }

    .hero-visual {
        width: 200px;
        height: 200px;
    }

    .info-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
        display: block;
    }

    .info-content,
    .info-image {
        margin-bottom: 30px;
    }

    /* Ajustes para pantallas pequeñas - Botones y Redes Sociales */
    .hero-content {
        padding-top: 80px; /* 🔥 Reduce el padding superior para subir todo el contenido */
        justify-content: center; /* Centra verticalmente todo el contenido */
        height: auto; /* Permite que el contenido se ajuste naturalmente */
        min-height: 93vh; /* Mantiene la altura mínima del viewport */
    }

    .hero-text {
        margin-bottom: 30px; /* Reduce el margen inferior del texto */
    }

    .hero-buttons {
        margin-top: 40px; /* 🔥 Reduce el margen superior de los botones */
        margin-bottom: 30px; /* Agrega espacio inferior antes de las redes sociales */
    }

    .social-icons {
        position: relative; /* Cambia a relativo para que fluya con el contenido */
        top: 0; /* Elimina el posicionamiento superior */
        right: 0; /* Elimina el posicionamiento derecho */
        transform: none; /* Elimina la transformación */
        flex-direction: row; /* Mantiene los iconos en fila */
        justify-content: center; /* Centra los iconos horizontalmente */
        width: 100%; /* Ocupa todo el ancho */
        margin-top: 200px; /* Espacio arriba de los iconos */
        gap: 15px; /* Espacio entre iconos */
    }

    .social-icon {
        width: 45px; /* Tamaño ligeramente más pequeño para móviles */
        height: 45px;
        font-size: 18px;
    }

    /* Asegura que el hero tenga suficiente espacio */
    .hero-banner {
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
    }
}

/* Ajustes adicionales para pantallas muy pequeñas */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .btn-hero {
        width: 220px; /* Botones un poco más anchos en móviles muy pequeños */
    }
    
    .social-icons {
        gap: 10px;
        margin-top: 100px; /* Espacio arriba de los iconos */

    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

html {
    scroll-behavior: smooth;
}

/*Estilos de carrusel*/

/* Mini-carruseles de productos */
#productos .carousel-inner img {
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

#productos .carousel-inner img:hover {
    transform: scale(1.05);
}

#productos .carousel-indicators button {
    background-color: #c9a467;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 2px;
}

#productos .carousel-indicators .active {
    background-color: #0a1f2d;
}

#productos h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
}

#productos p {
    font-size: 0.9rem;
    line-height: 1.4;
}

#productos .btn-hero {
    margin-top: 10px;
    font-size: 0.85rem;
    padding: 8px 20px;
}
#productos .section-title {
    text-align: center !important;
}

/* Fade más lento para carruseles */
.carousel-fade .carousel-item {
    transition: opacity 1.5s ease; /* más suave que el default 0.6s */
}




/*ESTILOS DE CAMPOS FINALES*/
/* IMPACTO */
.impact-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: left;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.impact-card h3 {
    color: #0a1f2d;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.impact-card ul {
    list-style: disc inside;
    color: #666;
    line-height: 1.6;
}
/* Imagen dentro de las impact-card */
.impact-image {
    margin-top: 15px;
    overflow: hidden;
    border-radius: 12px;
}

.impact-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Efecto hover en imagen */
.impact-card:hover .impact-image img {
    transform: scale(1.08);
}


/*------------------------------------------*/

/* EQUIPO  SECCIÓN NUESTRO EQUIPO */

#equipo {
    background-color: #8cc2d2 !important;
    color: white;
}

/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.dark-section {
    background-color: #1a1a2e;
    color: #fff;
    padding: 60px 20px;
}

/* Estilos para el contenedor de tarjetas */
.cards-scroll {
    display: flex;
    overflow-x: auto;
    padding: 20px 0;
    gap: 25px;
    scroll-behavior: smooth;
}

.cards-scroll::-webkit-scrollbar {
    height: 8px;
}

.cards-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.cards-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.cards-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Estilos para las tarjetas individuales */
.card {
    min-width: 300px;
    border-radius: 15px;
    border: none;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #3b3b3b; /* texto más suave */
}
.c1-card {
    background: linear-gradient(145deg, #faecd8, #f6dec0); /* crema cálido con toque melocotón */
}

.c2-card {
    background: linear-gradient(145deg, #fff4d6, #ffe7af); /* beige dorado luminoso */
}

.c3-card {
    background: linear-gradient(145deg, #f3efe6, #e8e2d3); /* marfil con arena clara */
}

.c4-card {
    background: linear-gradient(145deg, #fce3c2, #f8d1a4); /* crema durazno suave */
}

.c5-card {
    background: linear-gradient(145deg, #f1ead8, #e5dec3); /* lino claro con tono oliva pálido */
}
/*
.c6-card {
    background: linear-gradient(145deg, #fbeadd, #f8d7c7);
}*/




.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-header {
    padding: 20px 20px 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.card-area-name {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.card-content {
    padding: 15px 20px 20px;
}

/* Estilos para los miembros del equipo */
.member {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.356);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.member:hover {
    background: rgba(87, 80, 80, 0.158);
}

.member:last-child {
    margin-bottom: 0;
}

.member-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.member-info {
    flex: 1;
}

.member-name {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 500;
}

.member-role {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        min-width: 280px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}


/*-----------------------------------------------------*/

/* CONTACTO */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card h5 {
    color: #0a1f2d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p,
.contact-card ul {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-card a {
    color: #c9a467;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}
#contactCarousel {
    border-radius: 15px;
    overflow: hidden;
}

#contactCarousel img {
    width: 100%;
    height: auto;         /* mantiene proporción natural */
    object-fit: contain;  /* la muestra completa aunque deje espacio vacío */
    max-height: 350px;    /* controla la altura máxima */
    margin: 0 auto;       /* centra si sobra espacio */
    background: #f5f5f5;  /* opcional, color de fondo detrás si sobra espacio */
}



/* HOJA DE RUTA / FUTURO */
.roadmap-card {
    display: flex;             /* organiza contenido en fila */
    align-items: center;   /* alinea arriba */
    gap: 20px;                 /* espacio entre texto e imagen */
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
}

.roadmap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
/* Contenedor de texto dentro de la tarjeta */
.roadmap-text {
    flex: 1;                   /* ocupa todo el espacio disponible */
}

.roadmap-card h5 {
    color: #0a1f2d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}
#hoja-ruta {
    background-color: #D2B48C !important;
    color: white;
}

.roadmap-card ul {
    list-style: disc inside;
    color: #666;
    line-height: 1.6;
}
/* Imagen a la derecha */
.roadmap-img {
    flex-shrink: 0;            /* no se encoge */
    width: 220px;              /* ancho de la imagen */
    height: 220px;             /* altura de la imagen */
    border-radius: 12px;
    overflow: hidden;
}

.roadmap-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.roadmap-card:hover .roadmap-img img {
  transform: scale(1.08); /* Zoom suave al pasar el mouse */
}

/* Ajuste de títulos y listas dentro del texto */
.roadmap-card h5 {
    color: #0a1f2d;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Asegura que los párrafos tengan el mismo color que la lista */
.roadmap-card ul, .roadmap-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
/* 📱 Ajustes responsivos para la sección Hoja de Ruta / Futuro */
@media (max-width: 992px) {
    .roadmap-card {
        flex-direction: column;        /* Imagen y texto en columna */
        text-align: center;            /* Centra el texto */
        align-items: center;           /* Centra el contenido */
        padding: 25px 15px;            /* Espaciado más compacto */
    }

    .roadmap-text {
        order: 2;                      /* Muestra el texto debajo */
        width: 100%;
    }

    .roadmap-img {
        order: 1;                      /* Imagen arriba */
        width: 80%;                    /* Más grande en tablets */
        height: auto;
        max-width: 350px;
        margin-bottom: 15px;
    }

    .roadmap-img img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
}

/* 🧭 Ajustes extra para pantallas pequeñas (móviles) */
@media (max-width: 576px) {
    .roadmap-card {
        gap: 10px;
        padding: 20px 10px;
    }

    .roadmap-text h5 {
        font-size: 1.1rem;
    }

    .roadmap-card ul,
    .roadmap-card p {
        font-size: 0.9rem;
        text-align: left;               /* Alinea texto para fácil lectura */
        padding-left: 10px;
    }

    .roadmap-img {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }

    .roadmap-img img {
        border-radius: 10px;
    }
}


/*---------------------- TESTIMONIOS ----------------------*/
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

.testimonial-card strong {
    color: #0a1f2d;
    display: block;
    margin-top: 10px;
}



/* BOTÓN FINAL DE LLAMADO A LA ACCIÓN */
#impacto .btn-hero {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 10px 25px;
}



/* SECCIÓN CONTACTOS FILA */
.contact-row-section {
    padding: 40px 0;
    background-color: #f8f9fa; /* puedes cambiar a oscuro si quieres */
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0a1f2d;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 1.5rem;
    color: #c9a467;
}

.contact-item:hover {
    color: #c9a467;
}

.contact-item:hover i {
    transform: translateY(-2px);
}

/* BOTÓN DE LLAMADO A LA ACCIÓN EN LA FILA DE CONTACTOS */
.cta-contact-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background-color: #c9a467;
    color: #0a1f2d;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #c9a467;
}

.cta-contact-btn:hover {
    background: transparent;
    color: #c9a467;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 164, 103, 0.3);
}

.cta-contact-btn i {
    font-size: 1.5rem;
    color: #0a1f2d;
}

.cta-contact-btn:hover i {
    color: #c9a467;
    transform: translateY(-2px);
}



/* FOOTER */
.site-footer {
    padding: 30px 20px;
    background-color: #a68a64; /* oscuro y elegante */
    color: white;
    font-size: 0.9rem;
    text-align: center;
}

.site-footer p {
    margin: 5px 0;
}
/* Flechas del carrusel */
/* Flechas del carrusel */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white; /* color inicial */
    background: transparent; /* sin fondo */
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 0;
    z-index: 20;
    transition: transform 0.3s ease, color 0.3s ease; /* animación suave */
}

/* Animación al pasar el mouse */
.carousel-arrow:hover {
    color: #f5c28b; /* naranja-crema pastel */
    transform: translateY(-50%) translateY(-5px); /* pequeño salto hacia arriba */
}

/* Posición de las flechas */
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }

@media (max-width: 480px) {
    /* Reducir altura del hero a la mitad de la pantalla */
    .hero-banner {
        height: 50vh;   /* Solo la mitad del viewport */
        min-height: 50vh;
        padding: 0;     /* Quita padding extra */
    }

    /* Centrar verticalmente el contenido dentro del hero reducido */
    .hero-content {
        padding-top: 0;       /* Quitar padding superior grande */
        justify-content: center; 
        height: 100%;
    }

    /* Ajustar tamaño de título y subtítulo para que quepan */
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
    }

    /* Ajustar posición de lemas */
    /* Ajustar posición de lemas para que sean visibles */
    .hero-lemas {
        position: absolute;   /* Antes era absolute */
        bottom: auto;         /* Ignora bottom */
        top: auto;            /* Ignora top */
        margin-top: 230px;     /* Separación del título */
        max-width: 90%;
        text-align: center;
    }
    
}