:root {
    --color-primario: #1a4c25;
    --color-secundario: #ffcb86;
    --color-texto: #f4f4f4;
    --fuente-principal: 'Outfit', sans-serif;
    --text-color-light: #f4f4f4;
    --text-color-dark: #333;
    --card-bg-color: rgba(255, 255, 255, 0.05);
    --card-border-color: rgba(255, 255, 255, 0.2);
}

body {
    color: var(--color-texto);
    font-family: var(--fuente-principal);
    margin: 0;
    padding: 0;
    background: url('../img/Gold-BG.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contenedor,
.alpha-container {
    max-width: 1600px;
    margin-left: 250px;
    padding: 20px;
}

h2,
h3 {
    font-weight: 700;
}

.contenedor {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 2rem;
}

.encabezado {
    background: rgba(253, 253, 253, 0.121);
    padding: 2rem 0;
    position: fixed;
    width: 95%;
    max-width: 1650px;
    z-index: 1000;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 35px;
    backdrop-filter: blur(5px);
    transition: all .6s;
    transform-origin: center;
}

.encabezado:hover {
    background: rgba(233, 233, 233, 0.091);
    box-shadow: 1px 50px 55px rgba(0, 0, 0, 0.193);
    backdrop-filter: blur(15px);
    scale: 1.02;
    transform-origin: center;
}

.encabezado .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-imagen img {
    height: 50px;
    display: block;
}

.navegacion a {
    color: #ffffff;
    text-decoration: none;
    padding: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Animated underline para la navegación del header */
.navegacion a {
    position: relative;
    display: inline-block;
    padding-bottom: 0.25rem;
    transition: color 250ms ease;
}

.navegacion a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    background: #339e3c;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .7s cubic-bezier(.2, .9, .3, 1), opacity 220ms ease;
    opacity: 0;
    border-radius: 3px;
}

.navegacion a:hover::after,
.navegacion a:focus::after,
.navegacion a.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.navegacion a:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(49, 190, 98, 0.08);
    border-radius: 4px;
}

.navegacion a:hover {
    color: #339e3c;
}

.alpha-about-section {
    background: linear-gradient(216deg, rgba(153, 153, 153, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding-top: 250px;
    text-align: space-between;
    height: 750px;
    position: relative;
    z-index: 1;
}

.alpha-container h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.alpha-container .subtitle {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 1100px;
    margin: 0 auto 1rem auto;
    line-height: 1.6;
}

.subtitle2 {
    text-align: center;
}

.hero-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 200px;
    margin-bottom: 4rem;
}

/* Columna de texto */
.hero-text {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

.hero-text h2 {
    font-size: 4rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 68px;
    width: 900px;
    font-weight: 800;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    color: #555;
    max-width: 100%;
    margin: 0;
    line-height: 1.6;
}

/* Columna de la imagen */
.hero-image {
    flex: 2;
    max-width: 95%;
    text-align: right;
    animation: float 4s ease-in-out infinite;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* --- Grid de Estadísticas --- */
.alpha-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background-color: var(--color-primario);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color-light);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    margin-top: 5px;
}

.boton-conocer2 {
    background: linear-gradient(135deg, rgb(49, 190, 98), rgb(28, 114, 58));
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(49, 190, 98, 0.12);
    width: 220px;
    background-color: #f4f4f4;
    padding: .9rem 1.25rem;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    transition: all .22s ease;
    display: inline-flex;
    align-items: center;
    width: 210px;
    height: 50px;
    text-align: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
}

.boton-conocer2:hover {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.199);
    width: 240px;
    height: 65px;
}

/* --- Contenedor Principal de la Sección --- */
.impact-section {
    background: linear-gradient(135deg, rgb(30, 226, 99), rgb(7, 61, 26));
    color: #f5f5f5;
    padding: 100px 20px;
    overflow: visible;
    box-shadow: 0 10px 70px rgba(33, 33, 33, 0.438);
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    overflow: visible;
}

/* --- Columna Izquierda: Grid de Estadísticas --- */
.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: -200px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease, background 0.3s ease;
    height: 200px;
    z-index: 3;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -18px 100px rgba(0, 0, 0, 0.24);
}

.stats-grid .stat-card:nth-child(1) {
    border: 1px solid rgba(230, 230, 230, 0.46);
    border-radius: 150px 150px 0 150px;
}

.stats-grid .stat-card:nth-child(2) {
    border: 1px solid rgba(230, 230, 230, 0.46);
    border-radius: 150px 150px 150px 0;
}

.stats-grid .stat-card:nth-child(3) {
    border: 1px solid rgba(230, 230, 230, 0.46);
    border-radius: 150px 0 150px 150px;
}

.stats-grid .stat-card:nth-child(4) {
    border: 1px solid rgba(230, 230, 230, 0.46);
    border-radius: 0 150px 150px 150px;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.264);
    box-shadow: 0 -18px 140px rgba(192, 192, 192, 0.192);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-label {
    font-size: 1rem;
    font-weight: 400;
    color: #f0f0f0;
    margin: 5px 0 0 0;
}

/* --- Columna Derecha: Contenido de Texto --- */
.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 0.9;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-text h2 svg {
    width: 38px;
    height: 38px;
    color: #e9e9e9;
    flex-shrink: 0;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e4e4e4;
    margin: 0 0 32px 0;
    max-width: 45ch;
}

.cta-button {
    background-color: #f5f5f5;
    color: #1E293B;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 80px;
    height: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-button:hover {
    background-color: #f7f7f72a;
    color: #f3f3f3;
    width: 120px;
    height: 40px;
    border: 1px solid white;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* --- Sección Secundaria "About" --- */
.alpha-about-section2 {
    background: linear-gradient(135deg, #f6f6f6, #7c7c7c);
    padding-top: 120px 0 80px;
    text-align: space-between;
    height: 500px;
    position: relative;
    z-index: 5;
    overflow: visible;
}

.alpha-container2 h2 {
    font-size: 3rem;
    color: #1c1c1c;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.alpha-container2 {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    padding: 20px;
}

/* --- Grid de Misión y Visión --- */
/* Contenedor del slider */
.mission-vision-container {
    width: 1050px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 90%, transparent 100%);
}

.mission-vision-grid {
    display: flex;
    gap: 40px;
    padding: 40px 20px;
    margin-bottom: 4rem;
    cursor: grab;
    user-select: none;
    scroll-behavior: auto;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    padding-left: 25%;
    padding-right: 25%;
    width: 100%;
    scroll-padding: 0 25%;
}

.spacer {
    flex: 0 0 35%;
    pointer-events: none;
}

.mission-vision-grid.grabbing {
    cursor: grabbing;
}

.mission-vision-grid::-webkit-scrollbar {
    display: none;
}

/* Efecto al arrastrar */
.mission-vision-grid.grabbing .mission,
.mission-vision-grid.grabbing .vision,
.mission-vision-grid.grabbing .valores {
    transform: scale(0.98);
    cursor: pointer;
}

.mission,
.vision,
.valores {
    flex: 0 0 calc(100% - 40px);
    transition: transform 0.2s ease;
    background: #292929;
    background: linear-gradient(90deg, rgba(41, 41, 41, 1) 0%, rgba(13, 12, 0, 1) 100%);
    padding: 30px;
    border-radius: 45px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    max-width: 50%;
    scroll-snap-align: center;
}

.mission h3,
.vision h3,
.valores h3 {
    font-size: 1.8rem;
    color: #f4f4f4;
    margin-top: 0;
}

.mission p,
.vision p,
.valores p {
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0px 10px 20px #000000bb);
}

.card-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.mission-vision-grid .is-centered {
    z-index: 10;
    transform: scale(1.08);
    transition: transform 0.3s ease-out, z-index 0s;
    border: 1px solid rgb(255, 176, 119);
}

.mission-vision-grid .mission,
.mission-vision-grid .vision,
.mission-vision-grid .valores {
    transition: transform 0.3s ease-out, z-index 0s, box-shadow 0.3s ease-out;
    z-index: 1;
    position: relative;
}

/* --- Seccion Compra programada --- */
.alpha-section-container {
    max-width: 1100px;
    margin: 80px auto;
    padding: 80px;
    overflow: hidden;
    box-shadow: 0 0px 90px rgba(0, 0, 0, 0.185);
    border-radius: 45px;
    background-color: #ffffff83;
    backdrop-filter: blur(20px);
}

.alpha-section-container h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.alpha-section-container .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #333;
}

.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.stepper-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 35%;
    position: relative;
}

.stepper-nav::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.stepper-nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 15px;
    transition: background-color 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
}

.stepper-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-number {
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    color: #333;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-right: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.step-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

/* Estilo del paso activo */
.stepper-nav-item.active .step-number {
    background-color: #ffc74f;
    color: #333;
}

.stepper-nav-item.active .step-title {
    color: var(--color-secundario);
}

.stepper-content-wrapper {
    width: 65%;
    position: relative;
}

.stepper-content {
    display: none;
    background-color: #ffffff;
    color: var(--text-color-dark);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

.stepper-content.active {
    display: block;
}

.stepper-content h3 {
    color: var(--color-primario);
    margin-top: 0;
}

.stepper-content ul {
    padding-left: 20px;
}

.stepper-content li {
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.comparison-grid {
    margin-top: 60px;
    gap: 30px;
}

.comparison-card {
    background-color: #ffffff;
    color: var(--text-color-dark);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid;
    transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.comparison-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.advantages {
    border-color: #28a745;
}

.advantages h3 {
    color: #28a745;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.comparison-card li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.advantages li::before {
    content: '•';
}

.disadvantages li::before {
    content: '⚠️';
}

.final-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.096);
    border-left: 5px solid var(--color-secundario);
    border-radius: 0 20px 20px 0;
    color: #333;
}

@media (max-width: 992px) {
    .stepper-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .stepper-nav,
    .stepper-content-wrapper {
        width: 100%;
        max-width: 600px;
    }

    .stepper-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stepper-nav::before {
        display: none;
    }

    .stepper-nav-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .alpha-section-container h2 {
        font-size: 2rem;
    }
}

/* --- Contenedor Secundario de la Sección ENFOQUE --- */
.valores-section {
    color: #1a1a1a;
    padding: 100px 20px;
    overflow: visible;
    box-shadow: inset 0 0px 90px #0000005b;
    position: relative;
    z-index: 2;
    padding-top: 10%;
    background: #ffffff5d;
    backdrop-filter: blur(40px);
}

.containerEf {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
    overflow: visible;
}

.stats-grid2 {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.stat-card2 {
    background: rgba(237, 237, 237, 0.267);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease, background 0.3s ease;
    height: 300px;
    z-index: 3;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 40px #00000008;
    max-width: 150px;
}

.stat-card2 h4 {
    color: #242424;
    font-weight: 500;
    cursor: default;
}

.stat-card2 p {
    font-weight: 800;
}

.stats-grid2 .stat-card2:nth-child(1) {
    border: 1px solid #d7d7d7;
    border-radius: 50px 50px 0 50px;
}

.stats-grid2 .stat-card2:nth-child(2) {
    border: 1px solid #d7d7d7;
    border-radius: 50px 50px 50px 0;
}

.stats-grid2 .stat-card2:nth-child(3) {
    border: 1px solid #d7d7d7;
    border-radius: 50px 0 50px 50px;
}

.stats-grid2 .stat-card2:nth-child(4) {
    border: 1px solid #d7d7d7;
    border-radius: 0 50px 50px 50px;
}

.stat-card2:hover {
    transform: translateY(-8px);
    background: rgb(255, 255, 255);
    box-shadow: 0 40px 90px #11111133;
    color: #ffffff;
}

.valores-a {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222222;
}

.stat-label2 {
    font-size: 1rem;
    font-weight: 400;
    color: #191919;
    margin: 5px 0 0 0;
}

/* --- Columna Derecha: Contenido de Texto --- */
.content-text2 {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.content-text2 h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 0.9;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.content-text2 p {
    font-size: 1.2rem;
    color: #505050;
    text-align: center;
    justify-content: center;
}

.card-icon2 {
    width: 100px;
    height: 100px;
}

/* --- Sección de Testimonios --- */
.testimonials-section {
    padding-bottom: 4rem;
    padding-top: 2rem;
    background-color: #f6f6f6;
    z-index: 1;
}

.testimonials-section h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: #141414;
}

.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background: #efefef;
    border: 1px solid #31be62;
    padding: 40px;
    border-radius: 45px;
    backdrop-filter: blur(10px);
}

.testimonial {
    display: none;
    /* Se maneja con JS */
}

.testimonial.active {
    display: block;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid var(--color-primario);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    color: #161616;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #161616;
}

/* --- Navegación del Slider --- */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 115%;
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 0 -20px;
    box-sizing: border-box;
    margin-left: -60px;
}

.slider-nav button {
    background-color: var(--color-primario);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-nav button:hover {
    background-color: #3a8e4c;
}

#prevBtn {
    margin-left: -60px;
}

#nextBtn {
    margin-right: -60px;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #2e8340;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE + MENÚ HAMBURGUESA ===== */

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-right: 15px;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: #ffffff; 
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: absolute;
    left: 0;
}

.menu-toggle:active span {
    background: #21861e; 
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

@media screen and (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .navegacion {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(26,76,37,0.98), rgba(13,38,19,0.98));
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.32s ease, opacity 0.32s ease, visibility 0s linear 0.32s;
        z-index: 1000;
        border-radius: 35px;
    }

    .navegacion.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }

    .navegacion a {
        margin: 1rem 0;
        font-size: 1.2rem;
        color: #fff;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .navegacion.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .navegacion.active a:nth-child(1) { transition-delay: 0.08s; }
    .navegacion.active a:nth-child(2) { transition-delay: 0.16s; }
    .navegacion.active a:nth-child(3) { transition-delay: 0.24s; }
    .navegacion.active a:nth-child(4) { transition-delay: 0.32s; }
    .navegacion.active a:nth-child(5) { transition-delay: 0.40s; }

    .logo-imagen img {
        height: 30px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .menu-toggle span,
    .navegacion,
    .navegacion a {
        transition: none !important;
    }
}

.pie-pagina {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding-top: 60px;
}

.grid-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.pie-pagina h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

.pie-pagina h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background-color: #31be62;
}

.info-footer .logo-imagen-footer img {
    max-width: 200px;
    margin-bottom: 15px;
}

.info-footer p {
    color: #b3b3b3;
    line-height: 1.6;
}

.navegacion-footer a,
.redes-sociales a {
    color: #f0f0f0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.navegacion-footer a:hover,
.redes-sociales a:hover {
    color: #31be62;
    padding-left: 8px;
}

.contacto-footer p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.derechos-reservados {
    background-color: #0d0d0d;
    text-align: center;
    padding: 20px 10px;
    border-top: 1px solid #d8a25e;
}

.derechos-reservados p {
    margin: 0;
    font-size: 0.9rem;
    color: #8c8c8c;
}

img,
.hero-image img,
.mission img,
.card-icon {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    .contenedor,
    .alpha-container {
        padding: 0 16px;
        margin: 0 auto;
    }

    .mission-vision-grid {
        gap: 16px;
        padding: 16px;
    }

    .spacer {
        display: none;
    }

    .mission,
    .vision,
    .valores {
        flex: 0 0 90%;
        max-width: 90%;
        padding: 18px;
    }

    .hero-text h2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }
}

/* ==========================================================================
   MEDIA QUERIES PARA RESPONSIVIDAD
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Estilos para Laptops y Tablets Grandes (hasta 1200px)
/* -------------------------------------------------------------------------- */
@media (max-width: 1200px) {

    .contenedor,
    .alpha-container {
        margin-left: auto;
        margin-right: auto;
        padding: 0 30px;
    }

    .hero-layout {
        gap: 60px;
        align-items: center;
    }

    .hero-text h2 {
        font-size: 3.2rem;
        width: 100%;
    }

    .impact-section .container {
        gap: 40px;
        max-width: 960px;
    }

    .mission-vision-container {
        width: 95%;
    }
}


/* -------------------------------------------------------------------------- */
/* Estilos para Tablets (hasta 992px)
/* -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    body {
        font-size: 15px;
    }

    .encabezado {
        padding: 1.5rem 0;
        top: 1rem;
        width: 95%;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-image {
        text-align: center;
        max-width: 80%;
    }

    .alpha-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .stats-grid {
        margin-top: 0;
        width: 100%;
    }

    .content-text {
        align-items: center;
        text-align: center;
    }

    .content-text p {
        max-width: 100%;
    }

    .alpha-about-section2 {
        height: auto;
        padding: 80px 0;
    }

    .mission-vision-grid {
        gap: 20px;
    }

    .mission,
    .vision,
    .valores {
        max-width: 70%;
        min-height: auto;
    }

    .alpha-section-container {
        margin: 60px auto;
        padding: 40px 25px;
    }

    .stepper-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .stepper-nav,
    .stepper-content-wrapper {
        width: 100%;
        max-width: 600px;
    }

    .stepper-nav {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .stepper-nav::before {
        display: none;
    }

    .stepper-nav-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 5px;
    }
}


/* -------------------------------------------------------------------------- */
/* Estilos para Móviles (hasta 768px)
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {

    h2,
    .alpha-container h2 {
        font-size: 2.2rem !important;
    }

    .hero-text h2 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .alpha-about-section {
        padding-top: 180px;
        height: auto;
        padding-bottom: 60px;
    }

    .alpha-stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        
    }

    .stat-card {
        height: auto;
        padding: 40px 20px;
    }

    .stats-grid .stat-card:nth-child(n) {
        border-radius: 40px;
    }

    .mission,
    .vision,
    .valores {
        max-width: 90%;
        padding: 25px;
    }

    .valores-section {
        padding: 80px 20px;
    }

    .stats-grid2 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-card2 {
        max-width: 300px;
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .stats-grid2 .stat-card2:nth-child(n) {
        border-radius: 40px;
    }

    .testimonial-slider {
        padding: 30px;
        width: 85%;
    }

    .slider-nav {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
        justify-content: center;
        gap: 20px;
    }

    #prevBtn,
    #nextBtn {
        margin: 0;
    }

    .grid-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pie-pagina h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .alpha-section-container h2 {
        font-size: 2rem;
    }
}


/* -------------------------------------------------------------------------- */
/* Estilos para Móviles Pequeños (hasta 480px)
/* -------------------------------------------------------------------------- */
@media (max-width: 480px) {

    .contenedor,
    .alpha-container {
        padding: 0 15px;
    }

    .encabezado {
        border-radius: 25px;
    }

    .logo-imagen img {
        height: 30px;
    }

    .hero-text .subtitle {
        font-size: 1.1rem;
    }

    .boton-conocer2 {
        width: 90%;
        font-size: 16px;
    }

    .boton-conocer2:hover {
        width: 100%;
        height: 50px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .alpha-section-container {
        padding: 30px 15px;
        max-width: 85%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* ---------- Comparison Grid: estilos adicionales y responsive ---------- */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 2.5rem auto;
    align-items: start;
    width: calc(100% - 4rem);
    box-sizing: border-box;
}

/* Tarjeta base (se refuerzan transiciones y accesibilidad) */
.comparison-card {
    padding: 28px;
    border-radius: 16px;
    background-color: #ffffff;
    color: var(--text-color-dark);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    border-top: 6px solid transparent;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    position: relative;
    overflow: hidden;
}

/* Hover / focus */
.comparison-card:hover,
.comparison-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.09);
    outline: none;
}

/* Encabezado */
.comparison-card h3 {
    font-size: 1.35rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Colores específicos */
.comparison-bank {
    border-top-color: #d9534f;
}

.comparison-alpha {
    border-top-color: var(--color-primario);
}

/* Accent bar lateral (subtle) */
.comparison-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: transparent;
    transition: background .28s ease;
}

.comparison-bank::before {
    background: linear-gradient(180deg, #d9534f, #b03535);
}

.comparison-alpha::before {
    background: linear-gradient(180deg, var(--color-primario), #0f6a3a);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    line-height: 1.45;
    font-size: 0.98rem;
    color: #333;
}

.comparison-bank .comparison-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.05rem;
    color: #d9534f;
    line-height: 1;
}

.comparison-alpha .comparison-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.05rem;
    color: var(--color-primario);
    line-height: 1;
}

/* CTA area */
.comparison-cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.comparison-cta .cta-button {
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.comparison-alpha .badge {
    display: inline-block;
    background: rgba(49, 190, 98, 0.12);
    color: var(--color-primario);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 999px;
    margin-left: auto;
}

@keyframes cmpFadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.comparison-card {
    animation: cmpFadeUp .42s cubic-bezier(.2, .9, .25, 1) both;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: calc(100% - 2rem);
    }

    .comparison-card {
        padding: 20px;
        border-radius: 12px;
    }

    .comparison-card h3 {
        font-size: 1.2rem;
    }

    .comparison-list li {
        font-size: 0.98rem;
        padding-left: 32px;
    }
}

@media (prefers-color-scheme: dark) {
    .comparison-card {
        background: rgba(255, 255, 255, 0.02);
        color: var(--text-color-light);
        border-top-color: rgba(255, 255, 255, 0.04);
    }

    .comparison-card h3 {
        color: var(--text-color-light);
    }

    .comparison-list li {
        color: #e6e6e6;
    }
}


/* Título centrado solo en móviles */
.header-title-mobile {
  display: none;
  font-weight: 800;
  letter-spacing: .06em;
  color: #ffffff;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 768px) {
  .header-title-mobile {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.05rem;
  }
}
