/* --- Variáveis e Reset --- */
:root {
    --primary: #ff6b00; /* Laranja Vibrante */
    --primary-hover: #e65100;
    --dark: #0a192f;    /* Azul Marinho Profundo */
    --dark-light: #112240;
    --text-main: #333;
    --text-light: #8892b0;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 10px 30px -10px rgba(2,12,27,0.7);
    --card-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utilitários --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 80px 0; }
.bg-light { background-color: var(--light-bg); }
.dark-bg { background-color: var(--dark); color: var(--white); }
.text-center { text-align: center; }
.white-text { color: var(--white); }

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover { background-color: var(--primary-hover); }

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-lg { padding: 15px 35px; font-size: 1.1rem; }
.btn-block { width: 100%; }

/* --- Header --- */
#header {
    background-color: var(--dark);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo span { color: var(--primary); }

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-menu ul { display: flex; gap: 30px; }
.nav-menu a { color: #ccd6f6; font-weight: 500; font-size: 0.95rem; }
.nav-menu a:hover { color: var(--primary); }

.header-actions { display: flex; gap: 15px; }
.header-actions .btn { padding: 8px 20px; font-size: 0.9rem; }
.mobile-toggle { display: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* --- Hero --- */
.hero {
    background-color: var(--dark);
    padding-top: 140px; /* Compensa o header fixo */
    padding-bottom: 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text { flex: 1; }
.hero-text h1 { font-size: 3rem; margin-bottom: 20px; }
.hero-text p { font-size: 1.2rem; color: #8892b0; margin-bottom: 30px; }
.highlight { color: var(--primary); }

.hero-btns { display: flex; gap: 15px; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 20px; color: #ccd6f6; font-size: 0.9rem; }
.hero-stats i { color: var(--primary); margin-right: 5px; }

.hero-image { flex: 1; position: relative; }
.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid #233554;
}

.hero-gradient-box {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-light) 0%, #1e3a6e 50%, var(--primary) 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-gradient-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-gradient-box i {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* --- Intro --- */
.section-header { max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.2rem; margin-bottom: 15px; color: var(--dark); }
.section-header p { color: #666; font-size: 1.1rem; }
.dark-bg .section-header h2 { color: var(--white); }
.dark-bg .section-header p { color: #ccd6f6; }

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

.card-icon {
    padding: 30px;
    text-align: center;
    transition: 0.3s;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: #fff0e6;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* --- Features (Tabs) --- */
.tabs-container {
    display: flex;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.tabs-nav { 
    flex: 0 0 30%; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    position: relative;
}

.tab-btn {
    background: none;
    border: none;
    text-align: left;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i { 
    width: 25px; 
    text-align: center;
    font-size: 1.2rem;
}

.tab-btn:hover { 
    background-color: #fff3e6; 
    color: var(--primary);
    transform: translateX(5px);
}

.tab-btn.active { 
    background-color: var(--primary); 
    color: var(--white); 
    box-shadow: 0 4px 10px rgba(255,107,0,0.3);
}

/* Seta de conexão visual no botão ativo */
.tab-btn.active::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--primary);
}

.tabs-content { flex: 1; }
.tab-pane { display: none; animation: fadeIn 0.5s ease; }
.tab-pane.active { display: block; }

.tab-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
    align-items: start; 
}

.tab-text h3 { 
    color: var(--dark); 
    margin-bottom: 25px; 
    font-size: 1.8rem; 
    line-height: 1.3;
}

.tab-text ul { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.tab-text ul li { 
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
    align-items: start;
}

.tab-text ul li i { 
    color: var(--primary); 
    font-size: 1.3rem;
    margin-top: 3px;
}

.list-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.list-content strong {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.list-content span {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    display: block;
}

.tab-img { 
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-img img { 
    border-radius: 10px; 
    box-shadow: var(--card-shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Ícone grande nas tabs */
.tab-icon-large {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8533 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.tab-icon-large:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.4);
}

.tab-icon-large i {
    font-size: 8rem;
    color: white;
    opacity: 0.95;
}

/* --- Modules Grid --- */
.grid-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.module-card {
    background: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #233554;
}

.module-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.module-content { padding: 20px; }
.module-content h3 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
.module-content p { color: #8892b0; font-size: 0.9rem; }

.highlight-card {
    background: linear-gradient(135deg, var(--dark-light) 0%, #1e3a6e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- Benefits --- */
.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    border-top: 4px solid var(--primary);
}

.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.card-header i { font-size: 2rem; color: var(--primary); }
.card-header h4 { color: var(--dark); font-size: 1.3rem; }
.benefit-card li { margin-bottom: 10px; color: #555; }
.benefit-card li i { color: #2ecc71; margin-right: 8px; }

/* --- Stats --- */
.stats-section { background-color: var(--primary); color: var(--white); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.stat-box h3 { font-size: 2.5rem; margin-bottom: 5px; }
.stat-box p { font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* --- Footer / Contact --- */
#contact { background-color: #020c1b; padding-top: 0; color: #8892b0; }

.cta-area {
    background: linear-gradient(rgba(10,25,47,0.9), rgba(10,25,47,0.9)), url('https://placehold.co/1200x600/0a192f/0a192f'); /* Pode colocar img de fundo aqui */
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { color: var(--white); margin-bottom: 10px; }
.cta-content p { margin-bottom: 30px; }

.lead-form { background: var(--white); padding: 30px; border-radius: 10px; margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}
.guarantee { display: flex; justify-content: center; gap: 20px; font-size: 0.9rem; color: #ccd6f6; }
.guarantee i { color: var(--primary); margin-right: 5px; }

.footer-bottom { border-top: 1px solid #233554; padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.socials a { color: #8892b0; margin-left: 15px; font-size: 1.2rem; }
.socials a:hover { color: var(--primary); }

/* --- Microcopy --- */
.microcopy {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.form-microcopy {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* --- Pricing Section --- */
.pricing-box {
    max-width: 700px;
    margin: 40px auto;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 3px solid var(--primary);
}

.price-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
}

.price .currency {
    font-size: 1.5rem;
    align-self: flex-start;
    margin-top: 10px;
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
}

.price .period {
    font-size: 1.2rem;
    align-self: flex-end;
    margin-bottom: 15px;
    color: var(--text-light);
}

.price-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.price-features {
    padding: 40px 30px;
}

.price-features h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.price-features ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features ul li:last-child {
    border-bottom: none;
}

.price-features ul li i {
    color: var(--primary);
    font-size: 1.2rem;
}

.price-cta {
    padding: 0 30px 40px;
}

.btn-block {
    display: block;
    width: 100%;
}

.guarantee-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* --- Testimonial Cards --- */
.testimonial-card {
    background: white;
}

.testimonial-card .module-content {
    padding: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-stats { justify-content: center; }
    .hero-btns { justify-content: center; }
    .grid-3 { grid-template-columns: 1fr; }
    
    .tabs-container { 
        flex-direction: column; 
        gap: 30px;
    }
    
    .tabs-nav {
        flex: 1;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .tab-btn.active::after {
        display: none;
    }
    
    .tab-grid { 
        grid-template-columns: 1fr; 
        text-align: left; 
        gap: 30px;
    }
    
    .tab-img {
        order: -1; /* Imagem aparece primeiro em mobile */
    }
    
    .tab-icon-large {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    
    .tab-icon-large i {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu, .header-actions { display: none; }
    .mobile-toggle { display: block; }
    
    /* Menu Mobile Ativo (via JS) */
    .nav-menu.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 20px;
        text-align: center;
    }
    .nav-menu.active ul { flex-direction: column; gap: 20px; }
    
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 15px; }
    
    .price .amount { font-size: 3rem; }
    .pricing-box { margin: 20px 10px; }
    .price-features, .price-cta { padding: 20px 15px; }
    
    .tab-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .tab-icon-large i {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .tab-icon-large {
        width: 120px;
        height: 120px;
    }
    
    .tab-icon-large i {
        font-size: 3rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}