/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a365d;
}

/* Cabeçalho */
.header {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    margin-left: auto;
  margin-right: auto;
}

/* Seção Hero */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #4a5568 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px; /* Compensar header fixo */
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Botões CTA */
.cta-primary {
    display: inline-block;
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 161, 105, 0.4);
    background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Seção Sobre */
.sobre {
    padding: 80px 0;
    background: white;
}

.sobre-text {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: #4a5568;
}

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destaque-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
    border-left: 4px solid #38a169;
    transition: transform 0.3s ease;
}

.destaque-item:hover {
    transform: translateY(-5px);
}

.destaque-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

/* Seção Benefícios */
.beneficios {
    padding: 80px 0;
    background: #f7fafc;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.beneficio-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #1a365d;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.beneficio-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.beneficio-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Seção Fundador */
.fundador {
    padding: 80px 0;
    background: white;
}

.fundador-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.fundador-image {
    text-align: center;
}

.fundador-foto {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fundador-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a5568;
}

.credenciais-list {
    list-style: none;
}

.credenciais-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #2d3748;
}

.credencial-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Seção Estrutura */
.estrutura {
    padding: 80px 0;
    background: #f7fafc;
}

.estrutura-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a5568;
}

.niveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.nivel-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.nivel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nivel-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 15px 15px 0 0;
}

.recrutas .nivel-indicator { background: #38a169; }
.sentinelas .nivel-indicator { background: #d69e2e; }
.consultores .nivel-indicator { background: #3182ce; }
.comando .nivel-indicator { background: #e53e3e; }

.nivel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.nivel-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.nivel-card p {
    color: #4a5568;
}

.estrutura-note {
    text-align: center;
    font-style: italic;
    color: #4a5568;
    margin-top: 2rem;
}

/* Seção Alistamento */
.alistamento {
    padding: 80px 0;
    background: white;
}

.alistamento-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a5568;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.alistamento-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f7fafc;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-group a {
    color: #38a169;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Rodapé */
.footer {
    background: #1a365d;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .fundador-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .niveis-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .destaques-grid {
        grid-template-columns: 1fr;
    }
    
    .alistamento-form {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-primary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .beneficio-card,
    .nivel-card {
        padding: 2rem;
    }
    
    .alistamento-form {
        padding: 1.5rem;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Estados de hover para melhor UX */
.destaque-item:hover,
.beneficio-card:hover,
.nivel-card:hover {
    cursor: default;
}

/* Melhorias de acessibilidade */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #38a169;
    outline-offset: 2px;
}

/* Smooth scrolling para links internos */
a[href^="#"] {
    text-decoration: none;
}
/* Seção Alistamento Atualizada */
.alistamento-preview {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.preview-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #38a169, transparent);
    transform: translateY(-50%);
}

.step-item:last-child::after {
    display: none;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-item h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-item p {
    color: #4a5568;
    font-size: 0.9rem;
}

.alistamento-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 15px;
    border-left: 4px solid #38a169;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.highlight-icon {
    font-size: 1.2rem;
}

/* CTA Principal Grande */
.cta-container {
    text-align: center;
    margin: 3rem 0;
}

.cta-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    color: white;
    padding: 20px 50px;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary-large:hover::before {
    left: 100%;
}

.cta-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(56, 161, 105, 0.5);
    background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
}

.cta-icon {
    font-size: 1.5rem;
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-primary-large:hover .cta-arrow {
    transform: translateX(5px);
}

/* Formulário Rápido */
.quick-form-container {
    background: #f7fafc;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    border: 2px dashed #cbd5e0;
    transition: all 0.3s ease;
}

.quick-form-container:hover {
    border-color: #38a169;
    background: #f0fff4;
}

.quick-form-header h3 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.quick-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-row input:focus {
    outline: none;
    border-color: #38a169;
    box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

.btn-quick {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-quick:hover {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .alistamento-preview {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .preview-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item::after {
        display: none;
    }
    
    .alistamento-highlights {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-primary-large {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-quick {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-primary-large {
        padding: 15px 30px;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quick-form-container {
        padding: 1.5rem;
    }
}

/* Animações adicionais */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-primary-large {
    animation: pulse 3s infinite;
}

.cta-primary-large:hover {
    animation: none;
}