/* ========================================
   1. HERO SECTION (Tipografia de Impacto)
======================================== */
.hero {
    height: 100vh; /* Ocupa a tela cheia na entrada */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax suave */
    position: relative;
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Película escura sobre a imagem */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2; /* Texto acima da película */
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 6rem); /* Fonte gigante e responsiva */
    font-weight: 900;
    line-height: 1.05;
    color: var(--branco);
    margin-bottom: 30px;
    letter-spacing: -2px; /* Letras mais juntas, pegada moderna */
}

.hero-title .highlight {
    color: var(--amarelo-go);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 550px;
    margin-bottom: 50px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ========================================
   2. SEÇÕES GERAIS (Padrão Agência Premium)
======================================== */
section {
    padding: 140px 0; /* MUITO respiro entre as seções */
}

.subtitle {
    display: block;
    color: var(--branco);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    margin-bottom: 20px;
    opacity: 0.5;
}

section h2 {
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    color: var(--branco);
    font-weight: 800;
    margin-bottom: 70px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

/* ========================================
   3. SERVIÇOS (Bold List)
======================================== */
.servicos-section {
    background-color: var(--preto-absoluto);
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px; /* Espaço entre os cards */
}

.card-servico {
    background-color: var(--preto-tech);
    padding: 60px 40px;
    border: 1px solid var(--borda);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
}

.card-servico:hover {
    border-color: var(--amarelo-go);
    transform: translateY(-5px);
}

.icon-servico {
    margin-bottom: 30px;
}

.icon-servico svg {
    filter: drop-shadow(0 0 5px var(--amarelo-go)); /* Glow suave no ícone */
}

.card-servico h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--branco);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.card-servico p {
    font-size: 15px;
    color: var(--cinza-texto);
    font-weight: 300;
}

/* ========================================
   4. MANIFESTO (Com Astronauta)
======================================== */
.quem-somos-manifesto {
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    position: relative;
    display: flex;
    align-items: center;
    padding: 180px 0;
}

.quem-somos-manifesto .overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0.8) 50%, transparent 100%); /* Fade preto para a imagem */
    z-index: 1;
}

.manifesto-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.manifesto-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.manifesto-content p.final-copy {
    color: var(--branco);
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 1.4rem;
}

/* ========================================
   5. RESULTADOS (Números Gigantes)
======================================== */
.resultados-section {
    background-color: var(--preto-absoluto);
    text-align: center;
}

.grid-numeros {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--borda);
    padding-top: 80px;
}

.numero-item strong {
    display: block;
    font-size: clamp(3rem, 7vw, 7.5rem);
    color: var(--branco);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -3px;
}

.numero-item span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    font-weight: 500;
}