/* ============================================= */
/* ARQUIVO DE ESTILOS ESPECÍFICOS (index.css)    */
/* ============================================= */


/* --- Animação de Entrada Específica da Home --- */
body {
    /* As outras propriedades de body já estão no comum.css */
    opacity: 0;
    animation: fadeInPage 0.5s ease-out forwards;
}

@keyframes fadeInPage { to { opacity: 1; } }


/* --- Estilos da Seção Principal (Hero Section) --- */
.hero-bg {
    height: 315vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('../imagem/background.webp');
    background-size: cover;
    background-position: center center;
    z-index: 1;
    
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 4;
    transition: opacity 0.4s ease-out;
}

.advice-text {
    position: absolute;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    max-width: 400px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

#advice1 { right: 15%; text-align: right; top: 120vh; }
#advice2 { left: 15%; text-align: left; top: 170vh; }
#advice3 { right: 15%; text-align: right; top: 220vh; }

.hero-bg .logo-text {
    color: var(--branco-puro);
    text-shadow: 0px 2px 4px rgba(0,0,0,0.6);
}

.hero-bg .logo-highlight { color: var(--dourado-metalico); }
.hero-bg h1 { color: var(--off-white-quente); text-shadow: 0 2px 8px rgba(0,0,0,0.7); }
.hero-bg p { color: var(--off-white-quente); text-shadow: 0 2px 5px rgba(0,0,0,0.7); }
.logo-highlight strong { font-weight: 800; }

.btn {
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 0.375rem;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background-color: var(--dourado-metalico);
    color: var(--verde-escuro);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dourado-metalico);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    border-color: var(--dourado-metalico);
}

.hero-bg .btn-secondary {
    background-color: transparent;
    color: var(--off-white-quente);
    border: 1px solid var(--off-white-quente);
}

.hero-bg .btn-secondary:hover {
    background-color: var(--off-white-quente);
    color: var(--dourado-metalico);
    border-color: var(--off-white-quente);
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}


/* --- Componentes Específicos da Página --- */
#why-toolkit {
    position: relative;
    z-index: 5;
    background-color: var(--off-white-quente);
}

.feature-box {
    background-color: var(--branco-puro);
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--cinza-borda-input);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-box .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dourado-metalico);
    line-height: 1;
}

.feature-box h3 { color: var(--verde-escuro); }

.ebook-section {
    background: #2B2B2B;
    color: var(--off-white-quente);
}

.ebook-section h2 { color: #FFA500; }

.btn-ebook {
    background-color: #FFA500;
    color: #2B2B2B;
    font-weight: bold;
}

.btn-ebook:hover {
    background-color: transparent;
    color: #FFA500;
    border-color: #FFA500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.guarantee-section {
    background-color: var(--verde-escuro);
    color: var(--off-white-quente);
}

/* Override da guarantee-box para esta página */
.guarantee-box {
    border: 2px dashed var(--dourado-metalico);
    background-color: rgba(212, 175, 55, 0.05);
}

.guarantee-box .icon {
    font-size: 4rem;
    color: var(--dourado-metalico);
}

/* Animação com delay específico para a Home */
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* Estilos do FAQ */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 0;
}

.faq-question span {
    transition: color 0.2s ease;
    margin-right: 1rem;
}

.faq-question:hover span { color: var(--dourado-metalico); }

.faq-icon {
    color: var(--dourado-metalico);
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.faq-question.active .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    line-height: 1.6;
}


/* --- Media Queries Específicas da Home --- */
@media (max-width: 768px) {
    .advice-text { font-size: 1.5rem; max-width: 280px; }
    .ebook-content { flex-direction: column; text-align: center; }
    .ebook-content img { margin-bottom: 2rem; margin-right: 0; }
}