/* ===================================
   ELITE MASTER CSS - AUTORIDADE CLÁSSICA
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}

/* CONTAINER */

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

/* ===============================
HEADER
=============================== */

.topo {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, .88);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

nav a:hover,
nav a.ativo {
    color: #ffffff;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #22c55e;
    left: 0;
    bottom: -6px;
    transition: .3s;
}

nav a:hover::after,
nav a.ativo::after {
    width: 100%;
}

/* ===============================
HERO
=============================== */

.hero {
    padding: 75px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center;
}

.tag {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 3.1rem;
    line-height: 1.12;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h2 {
    font-size: 1.35rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 18px;
}

.hero p {
    font-size: 1.08rem;
    color: #475569;
    margin-bottom: 30px;
    max-width: 700px;
}

/* FOTO */

.hero-foto img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, .12);
}

/* ===============================
BOTÕES
=============================== */

.hero-botoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-principal {
    background: #15803d;
    color: #fff;
}

.btn-principal:hover {
    background: #166534;
    transform: translateY(-2px);
}

.btn-secundario {
    background: #b1afaf;
    color: #0f172a;
    border: 2px solid #b1afaf;
}

.btn-secundario:hover {
    background: #8392a5;
    color: #000;
}


/* ===============================
CARDS DESTAQUES
=============================== */

.destaques {
    padding: 18px 0 28px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .05);
    transition: .3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card h3 {
    color: #15803d;
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.card p {
    color: #475569;
}

.card:hover {
    background: #dee0e2;
    color: #000;
}

/* ===============================
SEÇÕES
=============================== */

.secao-profissional {
    padding: 40px 0;
}

.fundo-claro {
    background: #eef2f7;
}

h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: #0f172a;
}

/* BOX PREMIUM */

.box-premium {
    background: #ffffff;
    padding: 34px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.box-premium h3 {
    margin: 10px 0;
}

.box-premium small {
    color: #15803d;
    font-weight: 700;
}

.box-premium p {
    color: #475569;
    margin-top: 12px;
}

/* GRIDS */

.grid-duplo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-triplo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===============================
SKILLS
=============================== */

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.skills span {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
    transition: .3s;
}

.skills span:hover {
    background: #15803d;
    color: #fff;
    transform: translateY(-3px);
}

/* ===============================
FRASE FINAL
=============================== */

.frase {
    padding: 65px 0;
    background: #0f172a;
    color: #ffffff;
    text-align: center;
}

.frase p {
    font-size: 1.3rem;
    max-width: 850px;
    margin: auto;
}

/* ===============================
FOOTER
=============================== */

footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 24px 0;
}

/* ===============================
ANIMAÇÃO SUAVE
=============================== */

.card,
.box-premium,
.skills span {
    animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
RESPONSIVO
=============================== */

@media(max-width:992px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .grid-duplo,
    .grid-triplo {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
    }

    .hero-botoes {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    nav ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

}

@media(max-width:600px) {

    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 55px 0 25px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

}