/**
 * Layout Corrections
 * Seletores específicos para não conflitar com Tailwind utility classes
 */

:root {
    --green-primary: #10AD31;
    --blue-dark: #072047;
    --gray-light: #EFEFEF;
    --gray-medium: #E0E1E2;
    --white: #FFFFFF;
    --bg-outer: #FAFAF9;
}

/* ===== CONTAINER PRINCIPAL ===== */
.min-h-screen {
    background-color: var(--bg-outer) !important;
}

/* ===== HERO ===== */
.hero-section {
    background-color: var(--blue-dark);
    min-height: 451px;
    padding: 80px 0;
}
.hero-section h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

/* ===== BOTÕES ===== */
.btn-primary {
    background-color: var(--green-primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #0e9b2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 173, 49, 0.3);
}

/* ===== CARDS DE NAVEGAÇÃO ===== */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 60px 0;
}
.nav-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ===== SEÇÕES DE CONTEÚDO ===== */
.content-section {
    padding: 80px 0;
}
.content-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 16px;
}
.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

/* ===== BADGES ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}
.badge-primary {
    background-color: rgba(16, 173, 49, 0.1);
    color: var(--green-primary);
}
.badge-secondary {
    background-color: rgba(7, 32, 71, 0.1);
    color: var(--blue-dark);
}

/* ===== SOMBRAS ===== */
.shadow-card {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.shadow-elevated {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===== UTILITÁRIOS ===== */
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-white-80 { color: rgba(255, 255, 255, 0.8); }
.bg-white-95   { background-color: rgba(255, 255, 255, 0.95); }
.bg-white-10   { background-color: rgba(255, 255, 255, 0.1); }

/* ===== OCULTAR FOOTER DO ELEMENTOR ===== */
.elementor-element-ftr001,
.elementor-element-ftr010,
[data-id="ftr001"],
[data-id="ftr010"] {
    display: none !important;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .hero-section h1 { font-size: 36px; }
    .content-section h2 { font-size: 28px; }
}
@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 40px 0; }
    .hero-section h1 { font-size: 28px; }
    .content-section { padding: 40px 0; }
    .nav-cards { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
}
