* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0b0b0f;
    color: #ffffff;
    overflow-x: hidden;
}

/* HEADER */
.about-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 16px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 11, 15, 0.85);
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.about-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.about-logo img {
    height: 64px;
    width: auto;
    display: block;
    object-fit: contain;
}

.about-nav {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: nowrap;
}

.about-nav a {
    font-family: 'Poppins', sans-serif;
    position: relative;
    color: #d8d8e8;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 16px;
    border-radius: 999px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    white-space: nowrap;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.about-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 0 18px rgba(0, 140, 255, 0.18) !important;
}

.about-nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #008cff, #ff8a00);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.about-nav a:hover::after {
    transform: scaleX(1);
}

/* === BACKGROUND GRID === */

.background-grid {
    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);

    background-size: 42px 42px;

    mask-image: radial-gradient(circle at center, black 35%, transparent 90%);

    z-index: -2;
    pointer-events: none;

    animation: gridMove 18s linear infinite;
}

@keyframes gridMove {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* SOBRE NOSOTROS */
.about-page {
    background: #070910;
    color: #ffffff;
    min-height: 100vh;
    padding-top: 88px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.about-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 8% 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #070910;
}

.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(5, 7, 13, 0.90) 0%,
        rgba(5, 7, 13, 0.68) 45%,
        rgba(5, 7, 13, 0.38) 100%
    );
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}


.about-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 183, 255, 0.10);
    color: #00b7ff;
    font-size: 14px;
    font-weight: 800;
    border: 1px solid rgba(0, 183, 255, 0.25);
}

.about-hero h1 {
    max-width: 1050px;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.about-hero p {
    max-width: 850px;
    color: #c9c9d6;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
}

.about-grid {
    padding: 45px 8% 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    background: #070910;
}

.about-card {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 140, 255, 0.42);
    box-shadow: 0 24px 60px rgba(0, 140, 255, 0.12);
}

.about-card h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-card p {
    color: #c9c9d6;
    font-size: 15px;
    line-height: 1.7;
}

.about-mission {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    background:
        radial-gradient(circle at center right, rgba(0, 140, 255, 0.14), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255, 138, 0, 0.10), transparent 32%),
        #05070d;
}

.about-mission h2 {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.about-mission p {
    color: #c9c9d6;
    font-size: 18px;
    line-height: 1.7;
}

.about-highlight {
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(0, 140, 255, 0.18), rgba(255, 138, 0, 0.14));
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.about-highlight h3 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-highlight p {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
}

/* FOOTER */
.footer {
    background: #05070d;
    padding: 38px 8% 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-brand img {
    width: 165px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #aeb0c0;
    font-size: 14px;
    margin: 0;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-actions a {
    color: #aeb0c0;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-actions a:hover {
    color: #ffffff;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-social:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #008cff, #ff8a00);
    box-shadow: 0 0 24px rgba(0, 140, 255, 0.24);
}

.footer-whatsapp {
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #008cff, #ff8a00);
    color: #ffffff !important;
    font-weight: 700;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.footer-bottom p {
    color: #777988;
    font-size: 13px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-header {
        padding: 10px 6%;
    }

    .about-logo img {
        height: 44px;
    }

    .about-nav {
        gap: 8px;
    }

    .about-nav a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .about-grid,
    .about-mission {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 70px 6% 50px;
    }

    .about-grid,
    .about-mission {
        padding-left: 6%;
        padding-right: 6%;
    }
}

@media (max-width: 700px) {
    .about-header {
        flex-direction: column;
        gap: 14px;
    }

    .about-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-actions {
        gap: 14px;
    }
}