:root {
    --blue: #008cff;
    --blue-light: #00c8ff;
    --blue-dark: #0057d9;
    --bg: #03070d;
    --bg-2: #07101d;
    --card: rgba(255, 255, 255, 0.045);
    --border: rgba(0, 200, 255, 0.28);
    --text: #ffffff;
    --muted: #aab6c6;
    --soft: #d9e7f6;
    --shadow: 0 25px 80px rgba(0, 140, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at 20% 10%, rgba(0, 140, 255, 0.14), transparent 28%), radial-gradient(circle at 90% 50%, rgba(0, 200, 255, 0.12), transparent 28%), var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(3, 7, 13, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 200, 255, 0.16);
}

.navbar {
    width: min(1240px, 92%);
    height: 84px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    width: 170px;
    min-height: 58px;
    display: flex;
    align-items: center;
}

.brand img {
    width: 165px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-size: 15px;
    color: var(--soft);
    font-weight: 600;
    opacity: 0.88;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--blue-light);
    opacity: 1;
}

.nav-button {
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    color: #fff;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.nav-button:hover {
    transform: translateY(-3px);
}

.menu-btn {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
}


/* GLOBAL */

.section {
    width: min(1240px, 92%);
    margin: auto;
    padding: 86px 0;
}

.section-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px;
}

.section-title span,
.badge,
.about-tag,
.final-cta span {
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 900;
}

.section-title h2 {
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.05;
    margin-top: 14px;
    font-weight: 900;
}

.section-title p {
    color: var(--soft);
    font-size: 18px;
    margin-top: 8px;
}


/* HERO */

.hero {
    width: min(1240px, 92%);
    margin: auto;
    min-height: calc(100vh - 84px);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 58px;
    padding: 82px 0;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -2.8px;
    margin-top: 22px;
    max-width: 780px;
    font-weight: 900;
}

.hero p {
    color: var(--soft);
    font-size: 20px;
    line-height: 1.7;
    max-width: 660px;
    margin: 26px 0 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
    transform: translateY(-4px);
}

.hero-logo {
    padding: 30px;
    border-radius: 32px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow);
}

.hero-logo img {
    width: 100%;
    object-fit: contain;
}


/* SERVICES */

.services {
    padding-top: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    align-items: stretch;
}

.service-card {
    min-height: 260px;
    height: 100%;
    padding: 26px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    transition: 0.35s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-light);
    box-shadow: var(--shadow);
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.service-top span {
    color: var(--blue-light);
    font-weight: 900;
    font-size: 22px;
}

.icon {
    width: 58px;
    height: 58px;
    border: 1px solid var(--blue-light);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--blue-light);
    font-size: 30px;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--soft);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-card strong {
    color: var(--blue-light);
    font-size: 15px;
}


/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 60px;
    align-items: center;
    padding-top: 72px;
}

.about-content h2 {
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.94;
    letter-spacing: -3px;
    margin: 22px 0 24px;
    font-weight: 900;
}

.about-content h2 strong {
    color: var(--blue);
}

.about-content p {
    color: var(--soft);
    line-height: 1.75;
    font-size: 16px;
    margin-bottom: 18px;
}

.about-content p b {
    color: var(--blue-light);
}

.about-line {
    width: 72px;
    height: 3px;
    background: var(--blue-light);
    margin: 26px 0;
    border-radius: 999px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(0, 140, 255, 0.055);
}

.about-values div {
    text-align: center;
    padding: 20px 14px;
    border-right: 1px solid var(--border);
}

.about-values div:last-child {
    border-right: none;
}

.about-values span {
    color: var(--blue-light);
    display: block;
    font-size: 34px;
    margin-bottom: 8px;
}

.about-values p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.about-values b {
    color: var(--blue-light);
}

.about-whatsapp {
    margin-top: 16px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(0, 140, 255, 0.06);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #03260f;
}

.about-whatsapp strong {
    display: block;
}

.about-whatsapp span {
    color: var(--muted);
    font-size: 13px;
}

.about-whatsapp a {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.about-image {
    border-radius: 28px;
    border: 1.5px solid var(--blue);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(0, 140, 255, 0.05);
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.04) saturate(0.94);
}

.stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 10px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    overflow: hidden;
}

.stats div {
    padding: 26px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 16px;
    align-items: center;
    border-right: 1px solid var(--border);
}

.stats div:last-child {
    border-right: none;
}

.stats span {
    grid-row: span 2;
    color: var(--blue-light);
    font-size: 48px;
}

.stats strong {
    font-size: 28px;
    line-height: 1;
}

.stats p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}


/* TESTIMONIALS */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: 22px;
    padding: 26px;
}

.testimonial-card p {
    color: var(--soft);
    line-height: 1.7;
    margin-bottom: 18px;
}

.testimonial-card strong {
    color: var(--blue-light);
}


/* FINAL CTA */

.final-cta {
    text-align: center;
    padding: 110px 8%;
    background: radial-gradient(circle at center, rgba(0, 140, 255, 0.28), transparent 34%), linear-gradient(135deg, #06111f, #02040a);
}

.final-cta h2 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    max-width: 850px;
    margin: 18px auto 32px;
    font-weight: 900;
}


/* FOOTER */

.footer {
    text-align: center;
    padding: 38px 8%;
    border-top: 1px solid var(--border);
    background: #02040a;
    color: var(--muted);
}

.footer img {
    width: 120px;
    margin: 0 auto 16px;
}


/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    padding: 15px 22px;
    border-radius: 999px;
    background: #25d366;
    color: #03260f;
    font-weight: 900;
    box-shadow: 0 18px 60px rgba(37, 211, 102, 0.32);
}


/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVO */

@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1050px) {
    .hero,
    .about {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-image img {
        height: auto;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats div:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 820px) {
    .navbar {
        height: 74px;
    }
    .brand {
        width: 130px;
    }
    .brand img {
        width: 128px;
    }
    .menu-btn {
        display: flex;
    }
    .nav-button {
        display: none;
    }
    .nav-links {
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        padding: 28px;
        display: none;
        flex-direction: column;
        background: rgba(3, 7, 13, 0.98);
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active {
        display: flex;
    }
    .hero {
        min-height: auto;
        padding: 70px 0;
    }
    .hero h1 {
        letter-spacing: -1.6px;
    }
    .service-grid,
    .testimonial-grid,
    .stats,
    .about-values {
        grid-template-columns: 1fr;
    }
    .about-values div,
    .stats div {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .about-values div:last-child,
    .stats div:last-child {
        border-bottom: none;
    }
    .about-whatsapp {
        grid-template-columns: 1fr;
    }
    .about-whatsapp a {
        text-align: center;
    }
    .whatsapp-float {
        left: 18px;
        right: 18px;
        text-align: center;
    }
}