/* ==================================================
   ROOT / RESET
================================================== */

:root {
    /* =====================================
       CORES SISTEMIC
    ===================================== */

    --primary: #18E2B5;
    --primary-dark: #0FC8A0;
    --secondary: #0A6DFF;
    --secondary-dark: #0059D8;
    --dark: #031126;
    --dark-light: #0A1D3D;
    --light: #F7F9FC;
    --white: #FFFFFF;
    --gray: #5E6C84;
    --gray-light: #94A3B8;
    --border: rgba(24,226,181,.18);
    /* =====================================
       BORDAS
    ===================================== */

    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 32px;
    /* =====================================
       SOMBRAS
    ===================================== */

    --shadow-sm: 0 10px 30px rgba(3,17,38,.06);
    --shadow-md: 0 20px 60px rgba(3,17,38,.08);
    --shadow-lg: 0 35px 90px rgba(3,17,38,.12);
    /* =====================================
       GLOW SISTEMIC
    ===================================== */

    --glow-primary: 0 0 25px rgba(24,226,181,.25);
    --glow-secondary: 0 0 25px rgba(10,109,255,.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--light);
    color: var(--dark);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: .3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

section {
    position: relative;
    padding: 130px 0;
}

::selection {
    background: var(--primary);
    color: white;
}

/* =====================================
   SCROLLBAR
===================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #E5E7EB;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient( 180deg, var(--primary), var(--secondary) );
    border-radius: 999px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient( 180deg, var(--primary-dark), var(--secondary-dark) );
    }


/* ==================================================
   TÍTULOS / SECTION HEADER
================================================== */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 90px;
}

    .section-header span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 24px;
        border-radius: 999px;
        background: linear-gradient( 135deg, rgba(24,226,181,.12), rgba(10,109,255,.12) );
        border: 1px solid rgba(24,226,181,.18);
        color: var(--primary);
        font-size: .9rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

        .section-header span::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: var(--glow-primary);
        }

    .section-header h2 {
        font-size: clamp(2.8rem, 5vw, 4.5rem);
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -2px;
        color: var(--dark);
        margin-bottom: 25px;
    }

    .section-header p {
        font-size: 1.15rem;
        line-height: 2;
        color: var(--gray);
        max-width: 760px;
        margin: 0 auto;
    }

    /* =====================================
   TÍTULOS ESCUROS
===================================== */

    .section-header.light h2 {
        color: white;
    }

    .section-header.light p {
        color: rgba(255,255,255,.75);
    }

    .section-header.light span {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.15);
        color: var(--primary);
    }

/* ==================================================
   BOTÕES
================================================== */

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 60px;
    padding: 0 34px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .35s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* =====================================
   PRIMARY
===================================== */

.btn-primary {
    color: white;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    box-shadow: 0 10px 30px rgba(24,226,181,.25);
}

    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(24,226,181,.35);
    }

    .btn-primary:active {
        transform: translateY(-1px);
    }

/* =====================================
   SECONDARY
===================================== */

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid rgba(24,226,181,.18);
    box-shadow: var(--shadow-sm);
}

    .btn-secondary:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
        border-color: var(--primary);
    }

/* =====================================
   OUTLINE
===================================== */

.btn-outline {
    color: white;
    border: 2px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
}

    .btn-outline:hover {
        background: white;
        color: var(--dark);
        border-color: white;
        transform: translateY(-4px);
    }

    /* =====================================
   ICONES
===================================== */

    .btn-primary i,
    .btn-secondary i,
    .btn-outline i {
        font-size: 1rem;
    }

    /* =====================================
   DISABLED
===================================== */

    .btn-primary:disabled,
    .btn-secondary:disabled,
    .btn-outline:disabled {
        opacity: .7;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    /* =====================================
   LOADING
===================================== */

    .btn-primary .fa-spin,
    .btn-secondary .fa-spin,
    .btn-outline .fa-spin {
        animation-duration: .8s;
    }

/* ==================================================
   NAVBAR
================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    background: #999999;
    background: linear-gradient(280deg, rgba(153, 153, 153, 0.74) 0%, rgba(199, 195, 195, 0.76) 52%, rgba(222, 222, 222, 1) 100%);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: all .35s ease;
}

    .navbar .container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 90px;
    }

/* =====================================
   LOGO
===================================== */

.navbar-brand {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .navbar-brand img {
        height: 180px;
        width: auto;
        transition: .3s;
    }

    .navbar-brand:hover img {
        transform: scale(1.03);
    }

/* =====================================
   MENU
===================================== */

.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
}

    .navbar-menu a {
        position: relative;
        color: rgb(8, 26, 56);
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
        transition: .3s;
    }

        .navbar-menu a:hover {
            color: var(--primary);
        }

        .navbar-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 0;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient( 90deg, var(--primary), var(--secondary) );
            transition: .3s;
        }

        .navbar-menu a:hover::after {
            width: 100%;
        }

/* =====================================
   AÇÕES
===================================== */

.navbar-actions {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    box-shadow: 0 10px 25px rgba(24,226,181,.25);
    transition: .35s;
}

    .navbar-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(24,226,181,.35);
    }

    .navbar-whatsapp i {
        font-size: 1.1rem;
    }

/* =====================================
   MOBILE BUTTON
===================================== */

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    color: white;
    cursor: pointer;
    transition: all .3s ease;
}

    .mobile-menu-btn:hover {
        background: rgba(255,255,255,.12);
    }

    .mobile-menu-btn i {
        font-size: 1.3rem;
    }

/* =====================================
   MOBILE MENU
===================================== */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(8px);
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px,100%);
    height: 100vh;
    padding: 30px;
    background: #031126;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
}

.mobile-menu-header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .mobile-menu-header img {
        height: 70px;
        width: auto;
    }

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.mobile-menu-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    min-height: 54px;
    border-radius: 14px;
    color: white !important;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    border: none !important;
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 992px) {

    .navbar {
        padding: 12px 0;
    }

        .navbar .container {
            justify-content: space-between;
            min-height: 80px;
        }

    .navbar-brand {
        position: static;
    }

        .navbar-brand img {
            height: 180px;
        }

    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 576px) {

    .navbar {
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 60px;
    }

    .mobile-menu-btn {
        width: 48px;
        height: 48px;
    }

        .mobile-menu-btn i {
            font-size: 1.15rem;
        }

    .mobile-menu {
        width: 100%;
        padding: 25px;
    }

    .mobile-menu-header img {
        height: 60px;
    }
}


/* ==================================================
   ALERTAS
================================================== */

.alert {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 25px;
    padding: 22px 24px;
    border-radius: 20px;
    border: 1px solid transparent;
    animation: alertFade .35s ease;
    position: relative;
    overflow: hidden;
}

    .alert::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
    }

    .alert i {
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-top: 3px;
    }

    .alert strong {
        display: block;
        margin-bottom: 6px;
        font-size: 1rem;
        font-weight: 700;
    }

    .alert p {
        margin: 0;
        font-size: .95rem;
        line-height: 1.8;
    }

/* =====================================
   SUCCESS
===================================== */

.alert-success {
    background: linear-gradient( 135deg, rgba(16,185,129,.08), rgba(24,226,181,.08) );
    border-color: rgba(16,185,129,.18);
    color: #065F46;
    box-shadow: 0 10px 30px rgba(16,185,129,.08);
}

    .alert-success::before {
        background: #10B981;
    }

    .alert-success i {
        color: #10B981;
    }

/* =====================================
   ERROR
===================================== */

.alert-error {
    background: linear-gradient( 135deg, rgba(239,68,68,.08), rgba(248,113,113,.08) );
    border-color: rgba(239,68,68,.18);
    color: #991B1B;
    box-shadow: 0 10px 30px rgba(239,68,68,.08);
}

    .alert-error::before {
        background: #EF4444;
    }

    .alert-error i {
        color: #EF4444;
    }

/* =====================================
   WARNING
===================================== */

.alert-warning {
    background: linear-gradient( 135deg, rgba(245,158,11,.08), rgba(251,191,36,.08) );
    border-color: rgba(245,158,11,.18);
    color: #92400E;
}

    .alert-warning::before {
        background: #F59E0B;
    }

    .alert-warning i {
        color: #F59E0B;
    }

/* =====================================
   INFO
===================================== */

.alert-info {
    background: linear-gradient( 135deg, rgba(59,130,246,.08), rgba(96,165,250,.08) );
    border-color: rgba(59,130,246,.18);
    color: #1E40AF;
}

    .alert-info::before {
        background: #3B82F6;
    }

    .alert-info i {
        color: #3B82F6;
    }

/* =====================================
   FILE NAME
===================================== */

.file-name {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--primary);
    font-size: .95rem;
    font-weight: 600;
}

    .file-name i {
        font-size: .9rem;
    }

/* =====================================
   ANIMAÇÃO
===================================== */

@keyframes alertFade {

    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #031126;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(3,17,38,.72) 0%, rgba(3,17,38,.58) 35%, rgba(3,17,38,.35) 60%, rgba(3,17,38,.15) 100% );
        z-index: 1;
    }

/* =====================================
   VIDEO
===================================== */

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
    transform: scale(1.03);
}

/* =====================================
   CONTENT
===================================== */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    margin-bottom: 30px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

    .hero-badge::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--primary);
        box-shadow: var(--glow-primary);
    }

/* =====================================
   TEXTO
===================================== */

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 5.8rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 10px 40px rgba(0,0,0,.45);
}
    .hero h1 span {
        background: linear-gradient( 90deg, var(--primary), #7CF7DB );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }


.hero p {
    font-size: 1.15rem;
    line-height: 1.9;
    max-width: 650px;
    color: rgba(255,255,255,.92);
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0,0,0,.45);
}

/* =====================================
   CARD FLUTUANTE
===================================== */

.hero-card {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 2;
    width: 420px;
    padding: 30px;
    border-radius: 24px;
    background: rgba(3,17,38,.45);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

    .hero-card h3 {
        color: white;
        margin-bottom: 10px;
    }

    .hero-card p {
        margin: 0;
        color: rgba(255,255,255,.85);
    }

/* =====================================
   STATS
===================================== */

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.hero-stat span {
    color: rgba(255,255,255,.80);
}

/* =====================================
   SHAPES
===================================== */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.hero-shape-1 {
    width: 350px;
    height: 350px;
    top: -100px;
    right: -100px;
    background: rgba(10,109,255,.25);
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    background: rgba(24,226,181,.20);
}


/* ==================================================
   SOBRE
================================================== */

.sobre {
    position: relative;
    background: white;
    overflow: hidden;
}

    .sobre::before {
        content: "";
        position: absolute;
        top: -150px;
        right: -150px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(24,226,181,.05);
        filter: blur(120px);
    }

.sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* =====================================
   IMAGEM
===================================== */

.sobre-image {
    position: relative;
}

    .sobre-image img {
        width: 100%;
        border-radius: 30px;
        object-fit: cover;
        box-shadow: 0 30px 80px rgba(3,17,38,.12);
    }

    .sobre-image::after {
        content: "";
        position: absolute;
        inset: 20px;
        border-radius: 30px;
        border: 1px solid rgba(24,226,181,.15);
        pointer-events: none;
    }

/* =====================================
   CONTEÚDO
===================================== */

.sobre-content h2 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 30px;
}

.sobre-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 2;
    margin-bottom: 25px;
}

/* =====================================
   LISTA
===================================== */

.sobre-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

    .sobre-list li {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--dark);
        font-weight: 600;
    }

    .sobre-list i {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        color: white;
        background: linear-gradient( 135deg, var(--primary), var(--secondary) );
        box-shadow: 0 10px 20px rgba(24,226,181,.20);
    }

/* =====================================
   CARDS
===================================== */

.sobre-destaques {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    margin-top: 50px;
}

.sobre-destaque {
    padding: 28px;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(24,226,181,.12);
    box-shadow: 0 20px 50px rgba(3,17,38,.06);
    transition: .35s;
}

    .sobre-destaque:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(3,17,38,.10);
    }

    .sobre-destaque i {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        margin-bottom: 20px;
        color: white;
        font-size: 1.5rem;
        background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    }

    .sobre-destaque h3 {
        font-size: 1.2rem;
        color: var(--dark);
        margin-bottom: 10px;
    }

    .sobre-destaque p {
        margin: 0;
        font-size: .98rem;
        color: var(--gray);
        line-height: 1.8;
    }

/* =====================================
   EXPERIÊNCIA
===================================== */

.sobre-experiencia {
    position: absolute;
    bottom: 30px;
    right: -20px;
    padding: 25px 30px;
    border-radius: 24px;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    color: white;
    box-shadow: 0 25px 60px rgba(24,226,181,.30);
}

    .sobre-experiencia strong {
        display: block;
        font-size: 2.5rem;
        font-weight: 900;
        line-height: 1;
    }

    .sobre-experiencia span {
        display: block;
        margin-top: 8px;
        font-size: .95rem;
    }

/* ==================================================
   SERVIÇOS
================================================== */

.servicos {
    position: relative;
    background: linear-gradient( 180deg, #F7F9FC 0%, #EEF4FB 100% );
    overflow: hidden;
}

    .servicos::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -150px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(10,109,255,.06);
        filter: blur(120px);
    }

    .servicos::after {
        content: "";
        position: absolute;
        bottom: -200px;
        left: -150px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(24,226,181,.06);
        filter: blur(120px);
    }

/* =====================================
   GRID
===================================== */

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* =====================================
   CARD
===================================== */

.servico-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: 32px;
    background: linear-gradient( 180deg, rgba(3,17,38,.10), rgba(3,17,38,.92) );
    display: flex;
    align-items: flex-end;
    padding: 35px;
    transition: .4s ease;
    box-shadow: 0 25px 60px rgba(3,17,38,.08);
}

    .servico-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 35px 80px rgba(3,17,38,.15);
    }

    /* =====================================
   IMAGEM
===================================== */

    .servico-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s ease;
    }

    .servico-card:hover img {
        transform: scale(1.08);
    }

    /* =====================================
   OVERLAY
===================================== */

    .servico-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(3,17,38,.05) 0%, rgba(3,17,38,.85) 70%, rgba(3,17,38,.98) 100% );
        z-index: 1;
    }

/* =====================================
   CONTEÚDO
===================================== */

.servico-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

    .servico-content i {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 22px;
        margin-bottom: 25px;
        color: white;
        font-size: 2rem;
        background: linear-gradient( 135deg, var(--primary), var(--secondary) );
        box-shadow: 0 0 30px rgba(24,226,181,.35);
    }

    .servico-content h3 {
        font-size: 1.6rem;
        font-weight: 800;
        color: white;
        margin-bottom: 15px;
    }

    .servico-content p {
        color: rgba(255,255,255,.82);
        line-height: 1.9;
        font-size: 1rem;
        margin-bottom: 25px;
    }

/* =====================================
   LINK
===================================== */

.servico-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    transition: .3s;
}

    .servico-link:hover {
        gap: 16px;
    }

/* =====================================
   CTA
===================================== */

.servicos-cta {
    margin-top: 80px;
    padding: 70px;
    border-radius: 36px;
    text-align: center;
    background: linear-gradient( 135deg, #031126, #0A1D3D );
    color: white;
    position: relative;
    overflow: hidden;
}

    .servicos-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at top right, rgba(24,226,181,.12), transparent 35% );
    }

    .servicos-cta h3 {
        position: relative;
        z-index: 2;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .servicos-cta p {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto 35px;
        color: rgba(255,255,255,.75);
        line-height: 2;
    }

    .servicos-cta .btn-primary {
        position: relative;
        z-index: 2;
    }

/* ==================================================
   DIFERENCIAIS
================================================== */

.diferenciais {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #031126 0%, #081A38 100% );
}

    .diferenciais::before {
        content: "";
        position: absolute;
        top: -250px;
        right: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(10,109,255,.12);
        filter: blur(140px);
    }

    .diferenciais::after {
        content: "";
        position: absolute;
        bottom: -250px;
        left: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(24,226,181,.10);
        filter: blur(140px);
    }

    /* =====================================
   HEADER
===================================== */

    .diferenciais .section-header {
        position: relative;
        z-index: 2;
    }

        .diferenciais .section-header h2 {
            color: white;
        }

        .diferenciais .section-header p {
            color: rgba(255,255,255,.75);
        }

/* =====================================
   GRID
===================================== */

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* =====================================
   CARD
===================================== */

.diferencial-item {
    position: relative;
    padding: 40px 30px;
    border-radius: 30px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    transition: .4s ease;
    overflow: hidden;
}

    .diferencial-item:hover {
        transform: translateY(-10px);
        border-color: rgba(24,226,181,.25);
        box-shadow: 0 25px 60px rgba(0,0,0,.25);
    }

    .diferencial-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(24,226,181,.04), rgba(10,109,255,.04) );
        opacity: 0;
        transition: .4s;
    }

    .diferencial-item:hover::before {
        opacity: 1;
    }

    /* =====================================
   ÍCONE
===================================== */

    .diferencial-item i {
        width: 85px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        border-radius: 22px;
        color: white;
        font-size: 2rem;
        background: linear-gradient( 135deg, var(--primary), var(--secondary) );
        box-shadow: 0 0 35px rgba(24,226,181,.25);
    }

    /* =====================================
   TITULO
===================================== */

    .diferencial-item h3 {
        font-size: 1.3rem;
        font-weight: 800;
        color: white;
        margin-bottom: 15px;
    }

    /* =====================================
   TEXTO
===================================== */

    .diferencial-item p {
        color: rgba(255,255,255,.75);
        line-height: 1.9;
        font-size: .98rem;
        margin: 0;
    }

/* =====================================
   STATS
===================================== */

.diferenciais-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 90px;
    position: relative;
    z-index: 2;
}

.diferencial-stat {
    text-align: center;
}

    .diferencial-stat strong {
        display: block;
        font-size: 3rem;
        line-height: 1;
        font-weight: 900;
        margin-bottom: 12px;
        color: var(--primary);
    }

    .diferencial-stat span {
        color: rgba(255,255,255,.70);
        font-size: 1rem;
    }

/* =====================================
   CTA
===================================== */

.diferenciais-cta {
    margin-top: 90px;
    padding: 60px;
    border-radius: 36px;
    text-align: center;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 2;
}

    .diferenciais-cta h3 {
        color: white;
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .diferenciais-cta p {
        max-width: 800px;
        margin: 0 auto 30px;
        line-height: 2;
        color: rgba(255,255,255,.75);
    }


/* ==================================================
   TRABALHE CONOSCO
================================================== */

.trabalhe-conosco {
    position: relative;
    background: linear-gradient( 180deg, #F7F9FC 0%, #EDF4FB 100% );
    overflow: hidden;
}

    .trabalhe-conosco::before {
        content: "";
        position: absolute;
        top: -250px;
        right: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(10,109,255,.08);
        filter: blur(140px);
    }

    .trabalhe-conosco::after {
        content: "";
        position: absolute;
        bottom: -250px;
        left: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(24,226,181,.08);
        filter: blur(140px);
    }

/* =====================================
   CARD
===================================== */

.trabalhe-card {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 36px;
    background: white;
    border: 1px solid rgba(24,226,181,.10);
    box-shadow: 0 30px 80px rgba(3,17,38,.08);
}

/* =====================================
   ÍCONE
===================================== */

.trabalhe-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 35px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    box-shadow: 0 20px 50px rgba(24,226,181,.25);
}

/* =====================================
   FORM
===================================== */

.trabalhe-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 10px;
        color: var(--dark);
        font-weight: 700;
        font-size: .95rem;
    }

    /* =====================================
   INPUTS
===================================== */

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 18px 20px;
        border-radius: 18px;
        border: 1px solid rgba(3,17,38,.08);
        background: white;
        font-size: 1rem;
        color: var(--dark);
        transition: .3s;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 180px;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(24,226,181,.12);
        }

    /* =====================================
   INPUT FILE
===================================== */

    .form-group input[type=file] {
        padding: 15px;
        border: 2px dashed rgba(24,226,181,.25);
        background: rgba(24,226,181,.03);
        cursor: pointer;
    }

        .form-group input[type=file]:hover {
            border-color: var(--primary);
        }

/* =====================================
   VALIDATION
===================================== */

.validation-message {
    color: #DC2626;
    margin-top: 8px;
    font-size: .9rem;
    font-weight: 600;
}

/* =====================================
   BUTTON
===================================== */

.trabalhe-form .btn-primary {
    width: fit-content;
    min-width: 240px;
    margin-top: 10px;
}

/* =====================================
   INFO BOX
===================================== */

.trabalhe-info {
    margin-top: 40px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient( 135deg, rgba(24,226,181,.06), rgba(10,109,255,.06) );
    border: 1px solid rgba(24,226,181,.12);
}

    .trabalhe-info h3 {
        color: var(--dark);
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .trabalhe-info p {
        color: var(--gray);
        line-height: 1.9;
        margin: 0;
    }

/* =====================================
   FILE NAME
===================================== */

.file-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 700;
}

    .file-name i {
        font-size: .95rem;
    }


/* ==================================================
   CONTATO
================================================== */

.contato {
    position: relative;
    background: linear-gradient( 180deg, #F7F9FC 0%, #FFFFFF 100% );
    overflow: hidden;
}

    .contato::before {
        content: "";
        position: absolute;
        top: -250px;
        right: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(10,109,255,.06);
        filter: blur(140px);
    }

    .contato::after {
        content: "";
        position: absolute;
        bottom: -250px;
        left: -200px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(24,226,181,.06);
        filter: blur(140px);
    }

/* =====================================
   CARDS SUPERIORES
===================================== */

.contato-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.contato-card {
    text-decoration: none;
    background: white;
    border-radius: 30px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(24,226,181,.10);
    box-shadow: 0 20px 50px rgba(3,17,38,.06);
    transition: .35s;
}

    .contato-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 70px rgba(3,17,38,.10);
    }

    .contato-card i {
        width: 85px;
        height: 85px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 24px;
        color: white;
        font-size: 2rem;
        background: linear-gradient( 135deg, var(--primary), var(--secondary) );
        box-shadow: 0 15px 35px rgba(24,226,181,.25);
    }

    .contato-card h3 {
        color: var(--dark);
        margin-bottom: 12px;
        font-size: 1.3rem;
    }

    .contato-card p {
        color: var(--gray);
        line-height: 1.8;
        margin-bottom: 10px;
    }

    .contato-card span {
        color: var(--primary);
        font-size: .95rem;
        font-weight: 700;
    }

/* =====================================
   FORM SECTION
===================================== */

.contato-form-section {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* =====================================
   INFO
===================================== */

.contato-info {
    background: linear-gradient( 135deg, #031126, #0A1D3D );
    border-radius: 36px;
    padding: 40px;
    color: white;
    overflow: hidden;
    position: relative;
}

    .contato-info::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(24,226,181,.08);
        filter: blur(80px);
    }

    .contato-info h3 {
        position: relative;
        z-index: 2;
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .contato-info ul {
        list-style: none;
        position: relative;
        z-index: 2;
    }

    .contato-info li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
        line-height: 1.8;
        color: rgba(255,255,255,.80);
    }

        .contato-info li i {
            color: var(--primary);
            margin-top: 5px;
        }

/* =====================================
   MAPA
===================================== */

.map-container {
    margin-top: 35px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    position: relative;
    z-index: 2;
}

    .map-container iframe {
        width: 100%;
        height: 320px;
        border: none;
    }

/* =====================================
   FORMULÁRIO
===================================== */

.contato-form {
    background: white;
    border-radius: 36px;
    padding: 50px;
    border: 1px solid rgba(24,226,181,.10);
    box-shadow: 0 30px 80px rgba(3,17,38,.08);
}

    .contato-form h3 {
        color: var(--dark);
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .contato-form form {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    /* =====================================
   INPUTS
===================================== */

    .contato-form .form-group {
        display: flex;
        flex-direction: column;
    }

    .contato-form label {
        margin-bottom: 10px;
        font-weight: 700;
        color: var(--dark);
    }

    .contato-form input,
    .contato-form textarea {
        width: 100%;
        padding: 18px 20px;
        border-radius: 18px;
        border: 1px solid rgba(3,17,38,.08);
        background: white;
        font-size: 1rem;
        transition: .3s;
    }

    .contato-form textarea {
        resize: vertical;
        min-height: 180px;
    }

        .contato-form input:focus,
        .contato-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(24,226,181,.12);
        }

/* =====================================
   CTA
===================================== */

.contato-cta {
    margin-top: 80px;
    padding: 80px 60px;
    border-radius: 36px;
    text-align: center;
    color: white;
    background: linear-gradient( 135deg, #031126, #0A1D3D );
    position: relative;
    overflow: hidden;
}

    .contato-cta::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(24,226,181,.10);
        filter: blur(100px);
    }

    .contato-cta h3 {
        position: relative;
        z-index: 2;
        font-size: 2.6rem;
        margin-bottom: 20px;
    }

    .contato-cta p {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto 35px;
        color: rgba(255,255,255,.75);
        line-height: 2;
    }

    .contato-cta .btn-primary {
        position: relative;
        z-index: 2;
    }


/* ==================================================
CTA INSTITUCIONAL
================================================== */

.institucional-cta {
     position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient( 135deg, #031126, #081A38, #0A1D3D );
    
}

    .institucional-cta::before {
         content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(24,226,181,.10);
        filter: blur(140px);
        
    }

    .institucional-cta::after {
         content: "";
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(10,109,255,.10);
        filter: blur(140px);
        
    }

.institucional-cta-content {
     position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    
}

.institucional-cta span {
     display: inline-block;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    
}

.institucional-cta h2 {
     font-size: clamp(2.8rem,5vw,4.5rem);
    line-height: 1.1;
    color: white;
    margin-bottom: 25px;
    
}

.institucional-cta p {
     max-width: 750px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,.75);
    line-height: 2;
    font-size: 1.1rem;
    
}

.institucional-cta .hero-actions {
     justify-content: center;
    
}


/* ==================================================
   FOOTER
================================================== */

.footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #031126 0%, #081A38 50%, #0A1D3D 100% );
    color: white;
    padding-top: 90px;
}

    .footer::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(24,226,181,.08);
        filter: blur(140px);
    }

    .footer::after {
        content: "";
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(10,109,255,.08);
        filter: blur(140px);
    }

/* =====================================
   CONTENT
===================================== */

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 70px;
}

/* =====================================
   BRAND
===================================== */

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    max-width: 260px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255,255,255,.75);
    line-height: 2;
    font-size: 1rem;
}

/* =====================================
   TITULOS
===================================== */

.footer h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
}

/* =====================================
   LINKS
===================================== */

.footer-links,
.footer-services {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .footer-links a,
    .footer-services a {
        color: rgba(255,255,255,.72);
        text-decoration: none;
        transition: .3s ease;
    }

        .footer-links a:hover,
        .footer-services a:hover {
            color: var(--primary);
            transform: translateX(6px);
        }

/* =====================================
   CONTATO
===================================== */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .footer-contact p {
        margin: 0;
        color: rgba(255,255,255,.72);
        line-height: 1.8;
    }

/* =====================================
   REDES SOCIAIS
===================================== */

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

    .footer-social a {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        text-decoration: none;
        color: white;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        transition: .3s ease;
    }

        .footer-social a:hover {
            background: linear-gradient( 135deg, var(--primary), var(--secondary) );
            transform: translateY(-5px);
        }

/* =====================================
   DIVISOR
===================================== */

.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .footer-bottom span {
        color: rgba(255,255,255,.60);
        font-size: .95rem;
    }

/* =====================================
   CERTIFICAÇÕES
===================================== */

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

    .footer-certifications img {
        height: 50px;
        width: auto;
        opacity: .85;
        transition: .3s ease;
    }

        .footer-certifications img:hover {
            opacity: 1;
        }


/* ==================================================
   WHATSAPP FLOATING
================================================== */

.floating-whatsapp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    z-index: 999;
    color: white;
    font-size: 2rem;
    background: linear-gradient( 135deg, #25D366, #1EBE5B );
    box-shadow: 0 20px 50px rgba(37,211,102,.35);
    transition: all .35s ease;
}

    .floating-whatsapp:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 30px 70px rgba(37,211,102,.45);
    }

    .floating-whatsapp::before {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        border: 2px solid rgba(37,211,102,.30);
        animation: whatsappPulse 2.5s infinite;
    }

    .floating-whatsapp::after {
        content: "";
        position: absolute;
        inset: -20px;
        border-radius: 50%;
        border: 2px solid rgba(37,211,102,.15);
        animation: whatsappPulse 2.5s infinite .5s;
    }

    .floating-whatsapp i {
        position: relative;
        z-index: 2;
    }

/* =====================================
   LABEL
===================================== */

.whatsapp-label {
    position: fixed;
    right: 120px;
    bottom: 45px;
    z-index: 998;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(3,17,38,.95);
    color: white;
    font-size: .95rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

    .whatsapp-label::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -8px;
        width: 16px;
        height: 16px;
        background: rgba(3,17,38,.95);
        transform: translateY(-50%) rotate(45deg);
    }

/* =====================================
   PULSE
===================================== */

@keyframes whatsappPulse {

    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ==================================================
   ERROR PAGES
================================================== */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 30px 80px;
    background: linear-gradient( 135deg, #031126, #081A38, #0A1D3D );
    position: relative;
    overflow: hidden;
}

    .error-page::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(24,226,181,.12);
        filter: blur(140px);
    }

    .error-page::after {
        content: "";
        position: absolute;
        bottom: -200px;
        left: -200px;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(10,109,255,.12);
        filter: blur(140px);
    }

.error-card {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
    padding: 70px 50px;
    text-align: center;
    border-radius: 40px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

    .error-card i {
        width: 120px;
        height: 120px;
        margin: 0 auto 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 30px;
        color: white;
        font-size: 3rem;
        background: linear-gradient( 135deg, var(--primary), var(--secondary) );
    }

    .error-card span {
        display: block;
        font-size: 5rem;
        line-height: 1;
        font-weight: 900;
        margin-bottom: 20px;
        color: white;
    }

    .error-card h1 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .error-card p {
        max-width: 520px;
        margin: 0 auto 35px;
        line-height: 2;
        color: rgba(255,255,255,.75);
    }

/* ==================================================
   LEGAL PAGES
================================================== */

.legal-page {
    padding: 180px 0 120px;
    background: linear-gradient( 180deg, #F7F9FC, #FFFFFF );
    min-height: calc(100vh - 200px);
}

    .legal-page .container {
        max-width: 1000px;
    }

    .legal-page h1 {
        font-size: 3.5rem;
        font-weight: 900;
        line-height: 1.1;
        color: var(--dark);
        margin-bottom: 40px;
    }

    .legal-page h2 {
        font-size: 1.8rem;
        color: var(--dark);
        margin-top: 50px;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .legal-page p {
        color: var(--gray);
        line-height: 2;
        font-size: 1.05rem;
        margin-bottom: 20px;
    }

    .legal-page ul {
        padding-left: 25px;
        margin-bottom: 25px;
    }

    .legal-page li {
        color: var(--gray);
        line-height: 2;
        margin-bottom: 10px;
    }

    /* =====================================
   LEGAL CARD
===================================== */

    .legal-page .container {
        background: white;
        padding: 60px;
        border-radius: 36px;
        border: 1px solid rgba(24,226,181,.08);
        box-shadow: 0 30px 80px rgba(3,17,38,.06);
    }

/* ==================================================
   RESPONSIVO
================================================== */

/* =====================================
   NOTEBOOK
===================================== */

@media (max-width: 1200px) {

    .container {
        padding: 0 25px;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero-card {
        right: 40px;
        bottom: 40px;
    }

    .sobre-grid {
        gap: 60px;
    }

    .servicos-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 992px) {

    section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 70px;
    }

        .section-header h2 {
            font-size: 3rem;
        }

    /* HERO */

    .hero {
        min-height: auto;
        padding: 180px 0 120px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-card {
        display: none;
    }

    /* SOBRE */

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sobre-image {
        order: -1;
    }

    .sobre-destaques {
        grid-template-columns: repeat(2,1fr);
    }

    /* SERVIÇOS */

    .servicos-grid {
        grid-template-columns: repeat(2,1fr);
    }

    /* DIFERENCIAIS */

    .diferenciais-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .diferenciais-stats {
        grid-template-columns: repeat(2,1fr);
    }

    /* TRABALHE */

    .trabalhe-card {
        padding: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* CONTATO */

    .contato-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contato-form-section {
        grid-template-columns: 1fr;
    }

    .contato-info {
        order: 2;
    }

    .contato-form {
        order: 1;
    }

    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* =====================================
   MOBILE LARGE
===================================== */

@media (max-width: 768px) {

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

        .section-header h2 {
            font-size: 2.5rem;
        }

        .section-header p {
            font-size: 1rem;
        }

    /* HERO */

    .hero {
        padding: 160px 0 100px;
    }

        .hero h1 {
            font-size: 3.2rem;
        }

        .hero p {
            font-size: 1.05rem;
        }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

        .hero-actions .btn-primary,
        .hero-actions .btn-secondary,
        .hero-actions .btn-outline {
            width: 100%;
        }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat strong {
        font-size: 1.7rem;
    }

    /* SOBRE */

    .sobre-destaques {
        grid-template-columns: 1fr;
    }

    .sobre-experiencia {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 25px;
    }

    /* SERVIÇOS */

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .servico-card {
        min-height: 380px;
    }

    .servicos-cta {
        padding: 50px 30px;
    }

        .servicos-cta h3 {
            font-size: 2rem;
        }

    /* DIFERENCIAIS */

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .diferenciais-stats {
        grid-template-columns: 1fr;
    }

    .diferenciais-cta {
        padding: 40px 25px;
    }

        .diferenciais-cta h3 {
            font-size: 2rem;
        }

    /* TRABALHE */

    .trabalhe-card {
        padding: 30px;
    }

    .trabalhe-icon {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    /* CONTATO */

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-form {
        padding: 35px 25px;
    }

    .contato-info {
        padding: 35px 25px;
    }

    .contato-cta {
        padding: 50px 30px;
    }

        .contato-cta h3 {
            font-size: 2rem;
        }

    /* FOOTER */

    .footer {
        padding-top: 70px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        max-width: 220px;
    }

    /* LEGALS */

    .legal-page {
        padding: 140px 0 80px;
    }

        .legal-page .container {
            padding: 35px;
        }

        .legal-page h1 {
            font-size: 2.4rem;
        }

        .legal-page h2 {
            font-size: 1.5rem;
        }

    /* ERROR */

    .error-card {
        padding: 40px 25px;
    }

        .error-card span {
            font-size: 4rem;
        }

        .error-card h1 {
            font-size: 2rem;
        }
}

/* =====================================
   MOBILE SMALL
===================================== */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 2.6rem;
    }

    .section-header h2 {
        font-size: 2.1rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
    }

    .navbar-brand img {
        max-height: 50px;
    }

    .floating-whatsapp {
        width: 64px;
        height: 64px;
        right: 20px;
        bottom: 20px;
        font-size: 1.8rem;
    }

    .whatsapp-label {
        display: none;
    }

    .contato-form h3,
    .contato-info h3 {
        font-size: 1.6rem;
    }

    .servico-content h3 {
        font-size: 1.4rem;
    }

    .legal-page .container {
        padding: 25px;
    }
}