/* ============================================
   ESTILOS GERAIS
   ============================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: #FFFFFF;
    color: #0B2C20;
    line-height: 1.6;
}

/* BACKGROUND */
.background-container { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; overflow: hidden; }
.gradient-bg {
    position: absolute; width: 100%; height: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FCFA 100%);
}
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; }
.mesh-blob-1 { width: 500px; height: 500px; background: #0B8457; top: -100px; left: -100px; }
.mesh-blob-2 { width: 400px; height: 400px; background: #1EA86F; bottom: -50px; right: -50px; }

/* ============================================
   CABEÇALHO (HEADER) - VERDE ESCURO
   ============================================ */
.header {
    background-color: #0B4F35; /* Verde bem escuro para o logo branco */
    border-bottom: 4px solid #0B8457; /* Linha mais clara embaixo para detalhe */
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }

.logo-img { 
    height: 45px; 
    object-fit: contain; 
    filter: brightness(100%); /* Garante que o logo branco brilhe */
}

/* Links do menu agora são Brancos */
.nav-link { 
    color: #FFFFFF; 
    text-decoration: none; 
    font-weight: 500; 
    margin-left: 20px; 
    font-size: 15px;
    opacity: 0.9;
    transition: all 0.3s; 
}
.nav-link:hover { 
    opacity: 1; 
    color: #4ADE80; /* Verde claro ao passar o mouse */
}

/* ============================================
   HERO
   ============================================ */
.hero { padding: 60px 20px; text-align: center; }
.hero-title { font-size: 38px; color: #0B8457; margin-bottom: 15px; font-weight: 800; animation: fadeInUp 0.8s; }
.hero-subtitle { font-size: 18px; color: #555; max-width: 600px; margin: 0 auto 30px; animation: fadeInUp 0.8s 0.2s backwards; }
.cta-button {
    display: inline-block; background: #0B8457; color: white; padding: 12px 30px;
    border-radius: 50px; text-decoration: none; font-weight: 600;
    box-shadow: 0 4px 10px rgba(11, 132, 87, 0.2);
    transition: transform 0.2s;
}
.cta-button:hover { transform: translateY(-2px); background: #097048; }

/* ============================================
   CARTÃO DE INSTRUÇÕES
   ============================================ */
.apply-section { padding: 20px 20px 80px; }

.apply-card {
    max-width: 700px; margin: 0 auto;
    background: white; border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #E8F8F0;
    padding: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.card-header { text-align: center; margin-bottom: 30px; border-bottom: 2px solid #F0F0F0; padding-bottom: 20px; }
.form-title { color: #0B4F35; font-size: 26px; margin-bottom: 8px; }
.form-subtitle { color: #666; font-size: 16px; }

/* Box do Email */
.email-highlight-box {
    background: #F0FCFA; border: 2px dashed #0B8457; border-radius: 12px;
    padding: 20px; text-align: center; margin-bottom: 40px;
}
.email-label { font-size: 13px; text-transform: uppercase; font-weight: 700; color: #0B8457; margin-bottom: 8px; }
.email-address { font-size: 22px; font-weight: 800; color: #0B2C20; margin-right: 10px; display: inline-block; word-break: break-all; }
.copy-btn {
    background: white; border: 1px solid #0B8457; color: #0B8457;
    padding: 6px 14px; border-radius: 6px; cursor: pointer; font-weight: 600; font-size: 14px;
}
.copy-btn:hover { background: #0B8457; color: white; }
.copy-feedback { display: block; margin-top: 8px; color: #27AE60; font-size: 13px; font-weight: 600; opacity: 0; transition: opacity 0.3s; }
.copy-feedback.visible { opacity: 1; }

/* Passo a Passo */
.steps-container { margin-bottom: 40px; }

.step-item { display: flex; gap: 20px; margin-bottom: 30px; }

.step-number {
    width: 40px; height: 40px; background: #0B8457; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(11, 132, 87, 0.3);
}

.step-content h3 { color: #0B4F35; font-size: 18px; margin-bottom: 8px; }
.step-content p { color: #555; font-size: 15px; margin-bottom: 8px; }
.tip { font-size: 13px; color: #888; display: block; margin-top: 5px; }

.example-box {
    background: #F5F5F5; padding: 10px 15px; border-left: 4px solid #999;
    font-family: monospace; font-size: 14px; color: #333; border-radius: 0 4px 4px 0;
}
.example-box span { font-weight: bold; color: #0B8457; }

.step-list { list-style-type: disc; margin-left: 20px; color: #555; font-size: 15px; }
.step-list li { margin-bottom: 5px; }

/* Ação Final */
.action-area { text-align: center; margin-top: 20px; }
.action-label { margin-bottom: 15px; font-weight: 600; color: #0B2C20; }
.submit-button.email-btn {
    display: inline-block; width: 100%; max-width: 400px;
    background: linear-gradient(135deg, #0B8457 0%, #1EA86F 100%);
    color: white; padding: 18px; border-radius: 12px;
    font-size: 18px; font-weight: 700; text-decoration: none;
    box-shadow: 0 4px 15px rgba(11, 132, 87, 0.3);
    transition: transform 0.2s;
}
.submit-button.email-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(11, 132, 87, 0.4); }

/* Footer */
.footer { background: #0B2C20; color: white; padding: 40px 0; margin-top: 50px; text-align: center; }
.footer-link { color: #AAA; text-decoration: none; margin: 0 10px; font-size: 14px; }
.footer-link:hover { color: white; }

/* Mobile */
@media (max-width: 600px) {
    .header-content { flex-direction: column; gap: 10px; }
    .email-container { flex-direction: column; }
    .step-item { flex-direction: column; gap: 10px; }
    .step-number { width: 30px; height: 30px; font-size: 16px; margin-bottom: 5px; }
}