/* Reset Básico e Fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700; /* Amarelo-dourado */
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-color: #f4f4f4;
    --text-muted: #aaa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

/* Logo */
.logo, .logo-footer {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 0.8;
}

.logo-re, .logo-do {
    display: block;
}

.logo-do {
    transform: scaleY(-1); /* Inverte o "Do" */
    color: var(--text-color);
}

.logo-footer {
    margin-top: 2rem;
    opacity: 0.5;
}

/* Botão CTA */
.cta-button {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

/* Header e Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwyMzQ5OTZ8MHwxfGFsbHx8fHx8fHx8fDE2NjgyMjM3MDI&ixlib=rb-4.0.3&q=80&w=1920');
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* CORREÇÃO: Animação CSS para o conteúdo do Hero (sem depender de JS) */
.hero-content h1, .hero-content .subtitle, .hero-content .cta-button {
    animation: fadeInOnLoad 1s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-content .subtitle {
    animation-delay: 0.4s;
}

.hero-content .cta-button {
    animation-delay: 0.6s;
}

@keyframes fadeInOnLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* FIM DA CORREÇÃO */


.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero .subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Seções Comuns */
section {
    padding: 6rem 10%;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

/* Seção Problema */
.stats-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    flex-basis: 300px;
    border-left: 5px solid var(--primary-color);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Seção Solução */
.solution-section {
    background-color: var(--card-bg);
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.solution-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 8px;
}

.solution-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.solution-card p {
    color: var(--text-muted);
}

/* Seção Time */
.team-section {
    background-color: var(--dark-bg);
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--card-bg);
    border-bottom: 1px solid var(--card-bg);
}

.team-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.team-section strong {
    color: var(--primary-color);
    font-weight: 400;
}

/* Seção Oportunidade (Ask) */
.opportunity-section {
    background-color: var(--card-bg);
}

.opportunity-section > p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.ask-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: left;
    flex-wrap: wrap;
}

.ask-item {
    background-color: var(--dark-bg);
    padding: 2rem;
    border-radius: 8px;
    flex-basis: 400px;
    border-top: 5px solid var(--primary-color);
}

.ask-item h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    padding: 5rem 10%;
    text-align: center;
    background-color: #000;
}

.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Animação de Scroll (para o resto da página) */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-cta {
        display: none; /* Esconde CTA do nav em mobile */
    }
    section {
        padding: 4rem 5%;
    }
    section h2 {
        font-size: 2rem;
    }
}

/* Estilo para o botão secundário (LinkedIn na seção de Time) */
.cta-button.secondary-cta {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 2rem;
}

.cta-button.secondary-cta:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Estilos para o link do LinkedIn no rodapé */
.footer-links {
    margin-top: 2rem;
    margin-bottom: 1rem; /* Adiciona espaço antes do logo */
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-color);
}
