* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Lato', 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 810px) {

    html,
    body {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }


    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
    }
}


:root {
    --color-bg-mobile: rgba(12, 12, 12, 0.98);
    --color-text: rgba(255, 255, 255, 0.75);
    --color-text-hover: #ffffff;
    --fuente-principal: 'Lato', 'Segoe UI', Roboto, sans-serif;
}

.site-header {

    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    min-width: 600px;
    height: 48px;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 45px;
    padding: 0;
    margin: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-text-hover);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-list a:hover {
    color: #00ffcc;
}


.mobile-only-contact {
    display: none;
}

.hamburger {
    display: none;
    width: 26px;
    height: 16px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1200;
    position: relative;
}

.barra {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-hover);
    border-radius: 2px;
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease, background-color 0.3s ease;
}

.barra:nth-child(1) {
    top: 0;
}

.barra:nth-child(2) {
    top: 7px;
}

.barra:nth-child(3) {
    top: 14px;
}


@media (max-width: 810px) {

    .site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: transparent !important;
        z-index: 10;
        transform: none;
        min-width: 100%;
        padding-top: env(safe-area-inset-top, 0px);
        height: calc(50px + env(safe-area-inset-top, 0px));
        border-radius: 0;
        border: none !important;
        box-shadow: none !important;
    }

    .header-container {
        justify-content: flex-start;
        padding: 0 25px;
        height: 50px;
        background: transparent !important;
    }

    .hamburger {
        display: block;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }

    .hamburger.active .barra:nth-child(1) {
        top: 7px;
        transform: rotate(45deg);
    }

    .hamburger.active .barra:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .barra:nth-child(3) {
        top: 7px;
        transform: rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background-color: var(--color-bg-mobile);
        flex-direction: column;
        justify-content: center;
        gap: 8vh;
        overflow-y: auto;
        transform: translateY(-10%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.4s ease,
            visibility 0.6s;
        z-index: 1100;
    }

    .main-nav.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .nav-list a {
        font-size: 1.5rem;
        font-weight: 300;
        padding: 5px;
        letter-spacing: 2px;
        text-shadow: none;
        color: var(--color-text);
    }

    .nav-list a::after {
        display: none;
    }

    .nav-list a:hover {
        color: var(--color-text-hover);
    }

    .mobile-only-contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
    }

    .main-nav.active .mobile-only-contact {
        opacity: 1;
        transform: translateY(0);
    }

    .social-icons {
        display: flex;
        gap: 20px;
    }

    .social-icons a {
        color: var(--color-text);
        font-size: 1.4rem;
        transition: color 0.3s ease, transform 0.3s ease;
        text-shadow: none;
    }

    .social-icons a:hover {
        color: var(--color-text-hover);
        transform: translateY(-2px);
    }

    .nav-contact-info {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .nav-contact-info p {
        font-size: 0.85rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
    }

    .nav-contact-info li:last-child p {
        margin-top: 15px;
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.2);
    }

    .nav-mobile-logo {
        display: flex;
        justify-content: center;
        margin: 10px 0 0 0;
    }

    .nav-mobile-logo img {
        width: 90px;
        height: auto;
        opacity: 0.6;
        filter: grayscale(100%);
        transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
    }

    .nav-mobile-logo img:hover {
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(1.05);
    }
}












@media (max-width: 810px) {
    body:has(.main-nav.active) {
        overflow: hidden;
    }
}


@media (max-width: 810px) {
    .main-nav {
        overflow-y: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }


    .main-nav::-webkit-scrollbar {
        display: none;
    }
}






/* ------------------ about1 (Escritorio) ---------------- */
.about1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    position: relative;
    height: 100dvh;
    margin-top: 0;
    padding: 0 10%;
    box-sizing: border-box;
    overflow: hidden;
}

 .about1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
} 

.about1>* {
    position: relative;
    z-index: 1;
}

#top {
    scroll-margin-top: 60px;
}

.imagenMobile {
    display: none;
}

.slider-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    display: block;

}

.slider-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.slider-track img {
    width: 100vw;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
}


.caja1,
.caja2 {
    box-sizing: border-box;
    color: white;
      z-index: 2;

}

.caja2 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-left: 20px;
}

.caja1 img {
    width: clamp(220px, 20vw, 350px);
    height: auto;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

.presentacion {
    border: none;
    padding: 0;
}

.h2Profesion {
    margin: 0;
    text-align: left;
    font-size: clamp(2rem, 3vw, 4rem);
    color: white;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 1s ease;
    max-width: 700px;
}

.h2Profesion.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-conoceMas {
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.9s ease, transform 1s ease;
}

.btn-conoceMas.show {
    opacity: 1;
    transform: translateY(0);
}

.about1 .caja2>.btn-container {
    color: white;
    margin-left: 0;
    padding-left: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about1 .caja2>.btn-container.show {
    opacity: 1;
    transform: translateY(0);
}

.btn-conoce {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 35px;
    color: var(--text-white, #ffffff);
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.btn-conoce:hover {
    background-color: var(--text-white, #ffffff);
    color: var(--bg-dark, #0a0a0a);
    border-color: var(--text-white, #ffffff);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


@media (max-width: 810px) {

    .about1 {
        height: 100dvh;
        width: 100vw;
        margin-top: 0;
        padding-top: env(safe-area-inset-top, 0px);
        padding-bottom: env(safe-area-inset-bottom, 0px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1;
        overflow: hidden;

    }

    /* .slider-bg {
        inset: 0;
        width: 100%;
        height: 100%;
    } */

    /* .slider-track {
        display: flex;
        height: 100%;
        width: 100%;
    } */

    /* .slider-track img {
        width: 100vw;
        height: 100dvh;
        object-fit: cover;
        flex-shrink: 0;
    } */

    /* .about1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: black;
        z-index: 0;
    } */

    .caja1,
    .caja2 {
        position: relative;
        z-index: 3;
    }

    .caja2 {
        align-items: center;
        margin: 0;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        margin-left: 0;
    }

    .btn-conoceMas {
        margin-top: 20px;
    }

    .p-about1 {
        margin-top: 20px;
        margin-left: 20px;
        margin-right: 20px;
        max-width: 350px;
        text-align: justify;
        justify-self: center;
        display: block;
    }

    .h2Profesion {
        text-align: center;
        margin-left: 10px;
        margin-right: 10px;
    }

    .caja1 img {
        padding-top: 10px;
    }
}












.tech-divider {
    width: 100%;
    height: auto;
    background-color: var(--bg-dark);
    background-image: linear-gradient(90deg, #000000 0%, rgba(0, 255, 204, 0.05) 50%, #000000 100%);
    border-top: 1px solid rgba(0, 255, 204, 0.15);
    border-bottom: 1px solid rgba(0, 255, 204, 0.15);
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.tech-divider-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 5%;
}

.tech-divider-inner span {
    color: var(--text-gray);
    font-family: 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tech-divider-inner .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

@media (max-width: 810px) {
    .tech-divider-inner {
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .tech-divider-inner .dot {
        width: 40px;
        height: 2px;
        border-radius: 2px;
    }

    .tech-divider-inner span {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

























.about-section {
    min-height: calc(100dvh - 60px);
    background-color: #0a0a0a;
    padding: 60px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
}

.about-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.about-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;

    -webkit-mask-image: radial-gradient(circle,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0) 100%);
    mask-image: radial-gradient(circle,
            rgba(0, 0, 0, 1) 60%,
            rgba(0, 0, 0, 0) 100%);

    filter: brightness(0.95) contrast(1.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.about-section:hover .about-img {
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.1);
}

.about-text {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    margin-bottom: 5px;
    margin-top: 5px;
}

.about-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #00ffcc;
    margin-top: 15px;
}

.about-description {

    font-size: 1rem;
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: left;
    max-width: 540px;
}

.btn-container {
    display: flex;
    justify-content: flex-start;
}

/* ===== Animación About ===== */
.about-text>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-img-container {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Estado animado */
.about-section.animate .about-text>* {
    opacity: 1;
    transform: translateY(0);
}

.about-section.animate .about-img-container {
    opacity: 1;
    transform: translateX(0);
}

.about-text>*:nth-child(1) {
    transition-delay: 0.1s;
}

.about-text>*:nth-child(2) {
    transition-delay: 0.2s;
}

.about-text>*:nth-child(3) {
    transition-delay: 0.1s;
}




@media (max-width: 810px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 60px 10%;
    }

    .about-img-container {
        order: 1;
    }

    .about-img {
        max-width: 300px;
    }

    .about-text {
        order: 2;
        align-items: center;
    }

    .about-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        font-size: 27px;
    }

    .about-title::after {
        margin-top: 12px;
    }

    .about-description {
        text-align: justify;
        margin-bottom: 30px;
        font-size: 14px;
    }


    .btn-container {

        width: 100%;
        display: flex;
        justify-content: center;
    }


}



.articulo-main {
    background-color: black;
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 75vh;
    box-sizing: border-box;
}

.entrada-blog {
    width: 100%;
}

.entrada-blog h1 {
    font-size: 2.8rem;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.entrada-blog h2 {
    font-size: 1.8rem;
    color: #1be2c8;
    /* Tu color acento */
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.entrada-blog h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}


.entrada-blog p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #a0a0a5;
    margin-bottom: 24px;
}


.entrada-blog ul,
.entrada-blog ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.entrada-blog li {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #a0a0a5;
    margin-bottom: 8px;
}

.entrada-blog blockquote {
    border-left: 4px solid #1be2c8;
    margin: 32px 0;
    padding: 8px 0 8px 20px;
    font-style: italic;
    background: rgba(27, 226, 200, 0.03);
}

.entrada-blog blockquote p {
    color: #ffffff;
    margin-bottom: 0;
}

.entrada-blog a {
    color: #1be2c8;
    text-decoration: none;
    border-bottom: 1px transparent;
    transition: border-color 0.2s ease;
}

.entrada-blog a:hover {
    border-bottom: 1px solid #1be2c8;
}

@media (max-width: 810px) {
    .articulo-main {
        padding: 40px 16px;
    }

    .entrada-blog h1 {
        font-size: 2.2rem;
    }

    .entrada-blog h2 {
        font-size: 1.5rem;
        margin-top: 30px;
    }

    .entrada-blog p,
    .entrada-blog li {
        font-size: 1.05rem;
    }
}





:root {
    --bg-dark: #0a0a0a;
    --card-bg: #111111;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(90, 236, 227, 0.6);
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --accent: #5aece3;
}

.cards-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    box-sizing: border-box;
}

.cards-container {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    position: relative;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.card-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}


*/ .img-podio {
    object-position: center 5%;
}

.img-core {
    object-position: center 90%;
}

.img-elite {
    object-position: center 25%;
}


.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 40px 25px 25px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 40%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
}

.card:hover h3 {
    color: var(--accent);
}

.card:hover img {
    transform: scale(1.06);
}



@media (max-width: 810px) {
    .card {
        aspect-ratio: 4 / 5;
    }
}

@media (min-width: 810px) and (max-width: 1023px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .card {
        height: 320px;
    }

    .card:nth-child(1) {
        grid-column: span 2;
        height: 400px;
    }
}

@media (min-width: 810px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 280px);
        gap: 25px;
    }

    .card {
        height: auto;
    }

    .card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .card:nth-child(1) .card-content {
        padding: 50px 35px 30px;
    }

    .card:nth-child(1) .card-content h3 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .card:nth-child(1) .card-content p {
        font-size: 1.1rem;
    }
}



.presentacion {
    position: relative;
}



:root {
    --bg-dark: #0a0a0c;
    --accent: #00ffcc;
    --accent-glow: rgba(0, 255, 204, 0.4);
    --text-white: #ffffff;
    --text-gray: #a0a0a5;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.pro-section {
    height: 100vh;
    flex: 1;
    padding: 60px 10%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: var(--bg-dark);
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

.animation-side {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#ftp-formation-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.animation-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.pro-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.text-side {
    flex: 1 1 400px;
    max-width: 600px;
    pointer-events: none;
}

.text-side h1 {
    color: var(--accent);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.text-side h1 span {
    color: var(--text-white);
    text-shadow: 0 0 15px var(--accent-glow);
}

.text-side h2 {
    color: var(--text-white);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
}

.text-side p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 20px 0 35px;
}

.image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bike-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 12px var(--accent-glow));
    max-height: 70vh;
    object-fit: contain;
}

.text-side .btn-primary,
.text-side .btn-secondary {
    pointer-events: auto;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 0 10px var(--accent-glow);
    margin-bottom: 10px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--accent);
    transform: translateY(-3px);
}

.btn-secondary:hover {
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--accent);
}

.reveal-text,
.reveal-btn {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

p.reveal-text {
    transition-delay: 0.3s;
}

h1.reveal-text {
    transition-delay: 0.2s;
}

.reveal-btn {
    transition-delay: 0.1s;
}

.active-reveal {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* DISEÑO PARA MÓVILES */
@media (max-width: 810px) {
    .pro-container {
        justify-content: center;
        text-align: center;
    }

    .text-side h1 {
        font-size: clamp(3.6rem, 4.5vw, 4rem);
    }

    .text-side p {
        margin: 20px auto 30px;
        border-left: none;
        border-top: 3px solid var(--accent);
        padding-top: 15px;
        padding-left: 0;
    }

    .bike-img {
        max-height: 40vh;
    }
}




.novedades-hub {
    background-color: #0a0a0c;
    color: #ffffff;
    padding: 140px 10% 80px;
    min-height: 100vh;
    font-family: 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
}

.hub-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.hub-header .section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #00ffcc;
    margin-bottom: 12px;
    display: block;
}

.hub-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.hub-header h1 em {
    font-style: italic;
    color: #00ffcc;
}

.hub-header .hub-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b3b3b3;
}

.novedades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}






.card-info a.btn-read-more {
    margin-top: auto;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.card-info a.btn-read-more i {
    font-size: 0.85rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}



.novedad-card {
    position: relative;
    background-color: #111113;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.card-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(0, 255, 204, 0.3);
    color: #00ffcc;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.card-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: #ffffff;
    transition: color 0.3s ease;
}

.card-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b3b3b3;
    margin: 0 0 25px 0;
}

.btn-read-more {
    margin-top: auto;

    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.btn-read-more::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.novedad-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 204, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.novedad-card:hover h3 {
    color: #00ffcc;
}

.novedad-card:hover .card-image-box img {
    transform: scale(1.05);
}

.btn-read-more:hover {
    color: #00ffcc;
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

.novedad-card:hover .btn-read-more {
    color: #00ffcc;
}

@media (max-width: 810px) {
    .novedades-hub {
        padding: 100px 5% 60px;
    }

    .hub-header {
        margin-bottom: 40px;
    }

    @media (hover: hover) {
        .novedad-card:hover .btn-read-more {
            color: #00ffcc;

        }

        .card-info a.btn-read-more:hover {
            color: #00ffcc;
        }

        .card-info a.btn-read-more:hover i {
            transform: translateX(6px);

        }
    }

    .hub-header h1 {
        font-size: 2.2rem;
    }

    .novedades-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 480px;
    }

    .card-info {
        padding: 20px;
    }

    .card-info h3 {
        font-size: 1.2rem;
    }
}











.novedades-container {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding-top: 120px;
    font-family: var(--fuente-principal);
    width: 100%;
    display: block;
    box-sizing: border-box;
}





.article {
    display: block;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 24px;
    box-sizing: border-box;
    clear: both;
}

.article h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-white);
}

.article h2 em {
    font-style: italic;
    color: var(--accent);
}

.article h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    margin-top: 45px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.article p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.article p.lead {
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--text-white);
    font-weight: 300;
    margin-bottom: 30px;
}

/* --- ESTILOS DE LISTA OPTIMIZADOS --- */
.article ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.article li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
}

.article li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 4px;
    top: -2px;
}

.article li strong {
    color: var(--text-white);
    font-weight: 700;
}

/* ------------------------------------ */

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.pullquote {
    border-left: 3px solid var(--accent);
    padding: 12px 0 12px 25px;
    margin: 40px 0;
    background: rgba(0, 255, 204, 0.01);
    box-sizing: border-box;
}

.pullquote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pullquote .attribution {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
}

.divider {
    width: 100%;
    text-align: center;
    margin: 55px 0;
    display: block;
}

.divider-icon {
    color: rgba(255, 255, 255, 0.15);
    font-size: 12px;
    letter-spacing: 4px;
}

.data-section {
    background-color: #111113;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 0;
    margin: 40px 0;
    width: 100%;
    display: block;
    box-sizing: border-box;
}

.data-section-inner {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.data-meta {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.9rem !important;
    margin-bottom: 35px !important;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.data-card {
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.data-card:hover {
    border-color: rgba(0, 255, 204, 0.3);
}

.data-card.highlight {
    border-color: rgba(0, 255, 204, 0.4);
    background: linear-gradient(145deg, var(--bg-dark) 0%, rgba(0, 255, 204, 0.02) 100%);
}

.data-card .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 5px;
}

.data-card .number .unit {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 2px;
}

.data-card.highlight .number {
    color: var(--accent);
}

.data-card .desc {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.data-card .context {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.power-section {
    margin: 40px 0;
    width: 100%;
    overflow-x: auto;
}

.power-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: left;
}

.power-table th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.power-table td {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-gray);
    white-space: nowrap;
}

.power-table tbody tr:hover td {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.01);
}

.conditions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
    width: 100%;
}

.cond-box {
    background-color: #111113;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 6px;
    box-sizing: border-box;
}

.cond-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cond-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.cond-sub {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 4px;
}

.article-image-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
}

.article-image-container.featured {
    margin-top: 20px;
    margin-bottom: 40px;
    border-color: rgba(0, 255, 204, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.article-image-container:hover .article-image {
    transform: scale(1.012);
}

.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111113 100%);
    padding: 85px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
    box-sizing: border-box;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 580px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

/* --- ESTILO PARA EL BOTÓN DEL CTA --- */
.btn-primary {
    display: inline-block;
    background-color: var(--accent);
    color: var(--bg-dark);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--text-white);
    transform: translateY(-2px);
}

@media (max-width: 810px) {
    .article {
        padding: 20px 20px;
    }

    .conditions {
        grid-template-columns: 1fr;
    }

    .article-image-container {
        margin: 25px 0;
        border-radius: 6px;
    }
}








.footer {
    background-color: #050505;
    color: #ffffff;
    padding: 60px 10% 30px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    border-top: 1px solid #161616;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    width: 100%;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin: 0 0 20px 0;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #00ffcc;
    margin-top: 8px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #b3b3b3;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #00ffcc;
    transform: translateX(3px);
}

.footer-bottom {
    width: 100%;
    max-width: 1400px;
    margin: 50px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid #161616;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

.footer-bottom p strong {
    color: #00ffcc;
    font-weight: 700;
    margin-left: 4px;
    background-color: #111111;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid #222222;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #b3b3b3;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #00ffcc;
    transform: translateY(-3px);
}

@media (max-width: 810px) {
    .footer {
        padding: 50px 5% 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-col h4::after {
        margin: 8px auto 0 auto;
    }

    .footer-col ul li a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 40px;
        gap: 12px;
    }
}













.menu-overlay {
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: calc(100vh - 40px);
    background-size: cover;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: top 0.5s ease-in-out;
    overflow-y: auto;
}

.menu-overlay.active {
    top: 40px;
    /* margin-top: 40px; */
}

.menu-overlay.active {
    align-items: flex-start;
}

.menu-content {
    display: flex;
    flex-direction: column;
    padding-left: 0px;
    padding-top: 0px;
    border-radius: 2px;
    text-align: center;
    width: 100%;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    width: 85%;
}

.menu-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: flex-start;
    border-bottom: none;
    box-shadow: inset 0 -0.5px 0 0 rgb(21, 209, 15);
}

.menu-list h2 {
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.menu-list li {
    margin: 10px 0;
}

.menu-list p {
    color: white;
}

.menu-list:last-of-type li {
    margin: 5px 0;
}

.menu-list a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.menu-list a:hover {
    color: rgb(42, 228, 82);
    font-weight: 800;
}

.menu-content>.menu-list:last-of-type p {
    margin: 1px 0;
    line-height: 1.4;
    box-shadow: none;
    align-self: center;
    font-size: 14px;
}

.menu-content>.menu-list:last-of-type {
    box-shadow: none;
    border-bottom: none;
}

.menu-content .menu-list:last-child {
    margin-top: auto;
    margin-bottom: 20px;
}

.menu-content ul:nth-of-type(2) {
    box-shadow: none;
}


.menu-content ul:nth-of-type(4) {
    box-shadow: none;
}


.menu-overlay .contact-info .imagenSeccionContacto {
    width: 180px;
    height: auto;
    display: block;
    /* Útil si querés centrarla con margin: auto */
    margin: 10px auto;
}


.liHorizontal1 img {
    position: absolute;
    top: 11px;
    right: 20px;
    width: 33px;
    filter:
        drop-shadow(0 0 10px rgba(211, 211, 200, 0.9)) drop-shadow(0 0 25px rgb(215, 238, 86));
}


.liHorizontal1 .img-hover {
    opacity: 0;
}

.liHorizontal1:hover .img-hover {
    opacity: 1;
}

.liHorizontal1:hover .img-normal {
    opacity: 0;
}



@media (max-width: 810px) {

    .titulotarjetas {
        text-align: center;
    }

    .animation-side {
        display: none;
    }

    .separator-content {
        justify-content: space-evenly;
        align-items: center;
    }

    .separator-text {
        text-align: center;
        margin-right: 15px;
        margin-left: 15px;
    }

    .separator-content img {
        display: none;
    }

    .separator2 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .separator2-text {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

}



@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}







.contact-section {
    background-color: #0a0a0a;
    padding: 60px 10%;
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    box-sizing: border-box;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}


.contact-info {
    width: 100%;
}


.contact-info:last-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;

}

.contact-info h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.contact-info h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #00ffcc;
    margin-top: 12px;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b3b3b3;
    max-width: 500px;
    margin: 0 0 35px 0;
}

.imagenSeccionContacto {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.1) grayscale(0.3);
    opacity: 0.8;
    transition: all 0.4s ease;
}


.imagenSeccionContacto:hover {
    filter: brightness(1) contrast(1) grayscale(0);
    opacity: 1;
    transform: scale(1.02);
}


.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1ebd59;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        background-color 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 189, 89, 0.25);
}

.whatsapp-btn i {
    font-size: 1.4rem;
    margin-right: 12px;
    line-height: 1;
}

.whatsapp-btn:hover {
    background-color: #16a04a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 189, 89, 0.4);
    color: #ffffff;
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}


@media (max-width: 810px) {
    .contact-container {
        grid-template-columns: 1fr;
        /* Pasa a una sola columna limpia */
        gap: 50px;
        text-align: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info h2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info p {
        margin: 0 auto 30px auto;
    }


    .contact-info:last-child {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    .imagenSeccionContacto {
        max-width: 120px;
    }
}

@media (max-width: 810px) {
    .contact-section {
        padding: 60px 5%;
    }

    .whatsapp-btn {
        width: 100%;
        max-width: 290px;
        box-sizing: border-box;
    }

    .contact-info:last-child {
        gap: 20px;
    }

    .imagenSeccionContacto {
        max-width: 95px;
    }
}