/* ==========================================================================
   INFORCOACH - Registro de Marca (Logotipo Completo & Sem Cortes)
   ========================================================================== */

:root {
    --green-main: #00A859;
    --green-bright: #00C86A;
    --green-dark: #007A40;
    --green-deep: #004D28;
    --green-light: #E6F7EF;
    --gold-star: #D4AF37;
    
    --dark-header: #000000;
    --dark-bg: #070F0B;
    --dark-card: #0F1E16;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --danger: #EF4444;
    --radius: 12px;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--dark-bg);
}

.text-green { color: var(--green-main) !important; }
.text-gold { color: var(--gold-star) !important; }
.text-danger { color: var(--danger) !important; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* Logotipo Oficial Completo com Emblema Íntegro e Sem Subtexto */
.brand-logo-anchor {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 62px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 168, 89, 0.2));
}

.brand-logo-img-footer {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
}

/* Header Fixo Preto */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-header);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 2px solid var(--green-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    gap: 22px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--green-main);
}

.btn-head-wa {
    background: var(--green-main);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
}

.btn-head-wa:hover {
    background: var(--green-dark);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(4, 10, 7, 0.93) 0%, rgba(10, 22, 16, 0.88) 100%), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 145px 0 85px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 85% 15%, rgba(0, 168, 89, 0.15) 0%, transparent 45%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tag-badge {
    display: inline-block;
    background: rgba(0, 168, 89, 0.2);
    border: 1px solid var(--green-main);
    color: #34D399;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Card de Formulario */
.hero-card {
    background: var(--white);
    color: var(--text-dark);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-top: 5px solid var(--green-main);
}

.card-header-form {
    text-align: center;
    margin-bottom: 20px;
}

.card-header-form .icon-box {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    color: var(--green-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 10px;
}

.card-header-form h3 {
    font-size: 1.25rem;
    color: var(--dark-bg);
}

.card-header-form p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.input-group {
    margin-bottom: 14px;
}

.input-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 4px;
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #CBD5E1;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.input-group input:focus {
    outline: none;
    border-color: var(--green-main);
    box-shadow: 0 0 0 3px rgba(0, 168, 89, 0.2);
}

.btn-submit {
    width: 100%;
    background: var(--green-main);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.35);
}

.btn-submit:hover {
    background: var(--green-dark);
}

.secure-text {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Seção do Especialista */
.section-expert {
    padding: 85px 0;
    background: var(--white);
}

.expert-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 45px;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.expert-img-container {
    position: relative;
    text-align: center;
}

.expert-img {
    width: 100%;
    max-width: 320px;
    height: 380px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius);
    border: 4px solid var(--white);
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.2);
}

.expert-badge-experience {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--green-main);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.expert-content h2 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.expert-lead {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.expert-list {
    list-style: none;
    margin-bottom: 25px;
}

.expert-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.expert-list i {
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Categorias de Registro */
.section-categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--green-main);
    display: block;
    margin-bottom: 6px;
}

.title-center {
    font-size: 2.1rem;
    margin-bottom: 8px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cat-card {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
}

.cat-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-main);
    box-shadow: 0 8px 20px rgba(0, 168, 89, 0.12);
}

.cat-icon {
    width: 56px;
    height: 56px;
    background: var(--green-light);
    color: var(--green-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.cat-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

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

/* Riscos */
.section-risks {
    padding: 80px 0;
    background: var(--white);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.card-risk {
    background: var(--bg-light);
    padding: 26px 20px;
    border-radius: var(--radius);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.card-risk:hover {
    border-top: 3px solid var(--danger);
    transform: translateY(-4px);
}

.risk-ico {
    width: 44px;
    height: 44px;
    background: #FEE2E2;
    color: var(--danger);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.card-risk h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* Tabela Comparativa */
.section-compare {
    padding: 80px 0;
    background: var(--bg-light);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 35px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.compare-table th, .compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.92rem;
}

.compare-table th {
    background: var(--dark-bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.compare-table th.col-highlight, .compare-table td.col-highlight {
    background: rgba(0, 168, 89, 0.08);
    font-weight: 700;
}

.compare-table th.col-highlight {
    background: var(--green-main);
    color: var(--white);
}

.compare-table td:first-child {
    text-align: left;
}

/* Passos */
.section-steps {
    padding: 80px 0;
    background: var(--white);
}

.step-box {
    background: var(--bg-light);
    padding: 28px 20px;
    border-radius: var(--radius);
    border: 1px solid #E2E8F0;
    text-align: center;
}

.step-box .num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--green-light);
    color: var(--green-main);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50%;
    line-height: 40px;
    margin-bottom: 14px;
}

.step-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-box p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.btn-main-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-main);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 168, 89, 0.35);
    transition: var(--transition);
}

.btn-main-cta:hover {
    background: var(--green-dark);
}

/* Depoimentos */
.section-testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testi-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    border: 1px solid #E2E8F0;
}

.stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 18px;
}

.testi-author strong {
    display: block;
    color: var(--dark-bg);
}

.testi-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ */
.section-faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 780px;
    margin: 35px auto 0;
}

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    margin-bottom: 12px;
    background: var(--bg-light);
}

.faq-head {
    width: 100%;
    padding: 18px 22px;
    background: var(--bg-light);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-bg);
    cursor: pointer;
    text-align: left;
}

.faq-body {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item.active .faq-body {
    padding: 18px 22px;
    max-height: 250px;
    border-top: 1px solid #E2E8F0;
    background: var(--white);
}

.faq-item.active .faq-head i {
    transform: rotate(180deg);
    color: var(--green-main);
}

/* CTA Banner com Imagem */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(4, 10, 7, 0.92) 0%, rgba(10, 22, 16, 0.88) 100%), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    border-top: 3px solid var(--green-main);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

/* Footer */
.footer-clean {
    background: #040A07;
    color: rgba(255, 255, 255, 0.7);
    padding: 55px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-col-brand {
    max-width: 400px;
}

.footer-col-links h4, .footer-col-contact h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.footer-col-links ul {
    list-style: none;
}

.footer-col-links ul li {
    margin-bottom: 10px;
}

.footer-col-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-col-links a:hover {
    color: var(--green-main);
    padding-left: 3px;
}

.footer-col-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-col-contact p i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 168, 89, 0.12);
    border: 1px solid rgba(0, 168, 89, 0.35);
    color: var(--green-main) !important;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.instagram-badge:hover {
    background: var(--green-main);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 89, 0.3);
}

.footer-sub {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* Botão Flutuante WA */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-ico {
    font-size: 3rem;
    color: var(--green-main);
    margin-bottom: 10px;
}

/* Responsivo */
@media (max-width: 950px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    .expert-card {
        grid-template-columns: 1fr;
    }
    .categories-grid, .grid-4, .grid-3 {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
}
