/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.35s ease;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.72);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.logo span {
    color: #c7a17a;
}

.tagline {
    margin-top: 8px;
    font-size: 0.62rem;
    letter-spacing: 2.8px;
    color: rgba(255, 255, 255, 0.75);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.96rem;
    font-weight: 400;
    color: #fff;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #c7a17a;
}

.btn-nav {
    padding: 11px 18px;
    border: 1px solid rgba(199, 161, 122, 0.65);
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url("Imagens/capa1.png") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.78)),
        linear-gradient(to right, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.20));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    padding: 0 24px;
    animation: fadeUp 1.1s ease;
}

.top-tag {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c7a17a;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: #fff;
}

.hero h1 span {
    color: #c7a17a;
}

.hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.12rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.hero-btns {
    margin-top: 36px;
}

/* ===== BOTÕES ===== */
.btn-main,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    padding: 15px 28px;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-main {
    background: #c7a17a;
    color: #050505;
    box-shadow: 0 10px 30px rgba(199, 161, 122, 0.16);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(199, 161, 122, 0.25), 0 18px 40px rgba(199, 161, 122, 0.26);
}

.btn-outline {
    border: 1px solid rgba(199, 161, 122, 0.8);
    color: #c7a17a;
    background: transparent;
}

.btn-outline:hover {
    background: #c7a17a;
    color: #050505;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(199, 161, 122, 0.16);
}

/* ===== MANIFESTO ===== */
.manifesto {
    padding: 150px 0;
    background: #050505;
}

.manifesto-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 100px;
    flex-wrap: wrap;
}

.manifesto-img {
    flex: 0 0 340px;
    text-align: center;
}

.manifesto-img img {
    width: 340px;
    height: 430px;
    object-fit: cover;
    object-position: center 10%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    transition: 0.4s ease;
}

.manifesto-img img:hover {
    transform: translateY(-6px) scale(1.01);
}

.ceo {
    display: block;
    margin-top: 16px;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.manifesto-text {
    max-width: 660px;
}

.manifesto-text .top-tag {
    margin-bottom: 24px;
    font-size: 0.95rem;
    letter-spacing: 5px;
    color: #c7a17a;
}

.manifesto-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    line-height: 1.03;
    letter-spacing: -1.6px;
    margin-bottom: 28px;
    color: #fff;
}

.manifesto-text h2 span {
    display: block;
    margin-top: 10px;
    color: #c7a17a;
}

.manifesto-text p {
    margin-top: 16px;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.64);
    line-height: 2;
    max-width: 580px;
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 150px 0;
    background: linear-gradient(180deg, #070707 0%, #0a0a0a 100%);
}

.reviews-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

.reviews-img-box {
    flex: 1 1 540px;
    padding: 18px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    transition: 0.35s ease;
}

.reviews-img-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.reviews-img-box img {
    border-radius: 22px;
}

.reviews-content {
    flex: 1 1 430px;
    max-width: 520px;
}

.reviews-content .top-tag {
    margin-bottom: 18px;
}

.reviews-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3.3rem;
    line-height: 1.05;
    letter-spacing: -1.4px;
    margin-bottom: 22px;
}

.reviews-content h2 span {
    color: #c7a17a;
}

.reviews-content p {
    font-size: 1rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.66);
    margin-bottom: 30px;
}

.reviews-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== EXPERTISE ===== */
.expertise {
    padding: 150px 0;
    background: #050505;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 60px;
}

.section-heading .top-tag {
    margin-bottom: 18px;
}

.section-heading h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    line-height: 1.06;
    letter-spacing: -1.4px;
}

.section-heading h2 span {
    color: #c7a17a;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.expertise-card {
    background: linear-gradient(180deg, #0b0b0b 0%, #101010 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 26px;
    padding: 36px 32px;
    transition: 0.35s ease;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.08), transparent 45%);
    opacity: 0;
    transition: 0.35s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 161, 122, 0.3);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.card-number {
    display: inline-block;
    margin-bottom: 18px;
    color: #c7a17a;
    font-size: 0.82rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.expertise-card h3 {
    font-size: 1.28rem;
    margin-bottom: 16px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.expertise-card p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.62);
    position: relative;
    z-index: 1;
}

/* ===== CONTATO ===== */
.contact {
    padding: 150px 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
    text-align: center;
}

.contact-box {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 36px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
}

.contact-box h2 {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    line-height: 1.05;
    letter-spacing: -1.4px;
    margin-bottom: 18px;
}

.contact-box h2 span {
    color: #c7a17a;
}

.contact-box p {
    max-width: 640px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1rem;
    line-height: 1.95;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    padding: 34px 20px 40px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.92rem;
}

/* ===== ANIMAÇÕES ===== */
.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 4rem;
    }

    .manifesto-text h2,
    .reviews-content h2,
    .contact-box h2,
    .section-heading h2 {
        font-size: 2.7rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 22px 24px;
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 700px;
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.02;
    }

    .hero p {
        font-size: 1rem;
    }

    .manifesto,
    .reviews,
    .expertise,
    .contact {
        padding: 100px 0;
    }

    .manifesto-flex,
    .reviews-modern {
        gap: 46px;
    }

    .manifesto-img {
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
    }

    .manifesto-img img {
        width: 300px;
        height: 380px;
    }

    .manifesto-text h2,
    .reviews-content h2,
    .contact-box h2,
    .section-heading h2 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.7rem;
    }

    .tagline {
        font-size: 0.56rem;
        letter-spacing: 2.2px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .btn-main,
    .btn-outline {
        width: 100%;
    }

    .reviews-buttons,
    .contact-buttons {
        flex-direction: column;
    }

    .manifesto-img img {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .manifesto-text h2,
    .reviews-content h2,
    .contact-box h2,
    .section-heading h2 {
        font-size: 1.9rem;
    }

    .manifesto-text .top-tag {
        font-size: 0.82rem;
    }
}