/* ============================================
   iGreen Energy - Licenciado Landing Page
   Design System: Dark theme, professional
   Reference: igreenenergyfranquias.com.br
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Dark Theme */
    --green-900: #0E1B14;
    --green-800: #0a0f0d;
    --green-700: #060a08;
    --green-600: #00ff88;
    --green-500: #00e67a;
    --green-400: #00cc6a;
    --green-300: #86EFAC;
    --green-100: rgba(0, 255, 136, 0.1);
    --green-50: rgba(0, 255, 136, 0.05);

    --gold-500: #E7B008;
    --gold-600: #C2850A;

    --white: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-bg-glass: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.1);
    --gray-50: #0a0f0d;
    --gray-100: rgba(255, 255, 255, 0.06);
    --gray-200: rgba(255, 255, 255, 0.08);
    --gray-300: rgba(255, 255, 255, 0.15);
    --gray-400: #9ca3af;
    --gray-500: #c0c8c4;
    --gray-600: #d1d9d4;
    --gray-700: #e0e6e2;
    --gray-900: #f0fdf4;

    /* Typography */
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-py: 128px;
    --section-py-sm: 80px;
    --container-max: 1200px;
    --container-px: 24px;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-card: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-card-hover: 0 8px 30px rgba(0, 255, 136, 0.08);
    --transition: 0.3s ease;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a1f12, #060a08);
    --gradient-cta: linear-gradient(135deg, #00ff88, #00cc6a);
    --gradient-green-btn: linear-gradient(135deg, #00ff88, #00cc6a);
    --gradient-section-alt: rgba(255, 255, 255, 0.02);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--gray-50);
    color: var(--gray-900);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 36px;
}

.nav-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.nav-logo-text span {
    color: var(--green-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
}

.nav-links a:hover {
    color: var(--green-600);
}

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green-800);
    background: none;
    border: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-cta);
    color: #0a0f0d;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5);
}

.btn-green {
    background: var(--gradient-green-btn);
    color: #0a0f0d;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.25);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--green-600);
    color: var(--green-600);
    background: var(--green-100);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: url('bg-hero.jpg') center/cover no-repeat;
    padding: 160px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 10, 8, 0.7);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--green-300);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 3.75rem;
    line-height: 1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--green-600);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 680px;
    margin: 0 auto 40px;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ============================================
   PARTNERS STRIP
   ============================================ */
.partners {
    background: var(--green-800);
    padding: 48px 0;
    text-align: center;
}

.partners-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.partners-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 32px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-item {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1.1rem;
}

.partner-item small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    padding: var(--section-py) 0;
}

.section-alt {
    background: var(--gradient-section-alt);
}

.section-dark {
    background: var(--green-800);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header h2 .highlight {
    color: var(--green-600);
}

.section-header h2 .highlight-gold {
    color: var(--gold-500);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   CASES DE SUCESSO
   ============================================ */
.cases {
    background: var(--green-800);
    padding: var(--section-py) 0;
}

.cases .section-header h2 {
    color: var(--white);
}

.cases .section-header h2 .highlight-gold {
    color: var(--gold-500);
}

.cases .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

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

.case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.case-card-badge {
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

.case-card-badge.executivo {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
    color: #67E8F9;
}

.case-card-badge.diretor {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(22, 163, 74, 0.2));
    color: #6EE7B7;
}

.case-card-badge.acionista {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(202, 138, 4, 0.2));
    color: #FCD34D;
}

.case-card-image {
    padding: 16px;
}

.case-card-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.case-card-stats {
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.case-stat {
    text-align: center;
}

.case-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.case-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

/* ============================================
   OPPORTUNITY SECTION (4 cards grid)
   ============================================ */
.opp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.opp-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.opp-card:hover {
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.06);
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.2);
}

.opp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.opp-card-icon.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.opp-card-icon.green {
    background: rgba(22, 163, 74, 0.1);
    color: var(--green-600);
}

.opp-card-icon.gold {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.opp-card-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.opp-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.opp-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============================================
   MISSION QUOTE
   ============================================ */
.mission-quote {
    background: var(--green-800);
    padding: 80px 0;
    text-align: center;
}

.mission-quote blockquote {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;
    font-style: italic;
}

.mission-quote cite {
    display: block;
    margin-top: 24px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.06);
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.2);
}

.product-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--green-100);
    color: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--green-100);
    color: var(--green-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* Expansion card (special) */
.product-card.expansion {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.05));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
}

.product-card.expansion .product-card-icon {
    background: rgba(0, 255, 136, 0.15);
    color: var(--green-600);
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.product-card.expansion h3 {
    color: var(--green-600);
    font-size: 1.3rem;
}

.product-card.expansion p {
    color: var(--gray-400);
    margin-bottom: 0;
}

.product-card.expansion strong {
    color: var(--gray-900);
}

/* ============================================
   EARNINGS SECTION
   ============================================ */
.earnings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.earning-card {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.earning-card:hover {
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.06);
    border-color: rgba(0, 255, 136, 0.2);
}

.earning-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-600);
    margin-bottom: 8px;
    line-height: 1;
}

.earning-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.earning-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Simulation Box */
.simulation-box {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.simulation-box h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.simulation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.sim-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.sim-item .sim-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.sim-item .sim-label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.sim-result {
    text-align: center;
    padding: 20px;
    background: var(--green-100);
    border-radius: var(--radius-md);
}

.sim-result .sim-result-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.sim-result .sim-result-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green-600);
}

.simulation-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 16px;
}

/* ============================================
   CAREER PLAN
   ============================================ */
.career-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.career-feature {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.career-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.career-feature p {
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

.career-feature ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.career-feature ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.career-feature ul li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--green-600);
    margin-top: 2px;
}

/* Career Levels Table */
.career-levels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.career-level {
    background: var(--card-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
    transition: var(--transition);
}

.career-level:hover {
    box-shadow: var(--shadow-card-hover);
}

.career-level-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-600);
}

.career-level-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.career-detail {
    min-width: 120px;
}

.career-detail-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.career-detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
}

.career-level-prize {
    grid-column: 1 / -1;
    padding: 12px 16px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.career-level-prize i {
    color: var(--gold-500);
    margin-right: 6px;
}

/* ============================================
   LICENSE PRICING
   ============================================ */
.license-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--card-bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 2px solid rgba(0, 255, 136, 0.25);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.license-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green-btn);
}

.license-features {
    text-align: left;
    margin-bottom: 40px;
}

.license-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

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

.license-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--green-600);
    margin-top: 2px;
}

.license-pricing {
    margin-bottom: 32px;
}

.license-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-600);
    margin-bottom: 8px;
}

.license-installment {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.license-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.license-price small {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-400);
}

.license-renewal {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 8px;
}

.license-perks {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.license-perks span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.license-perks svg {
    width: 16px;
    height: 16px;
    color: var(--green-600);
}

/* ============================================
   EXECUTIVE SECTION
   ============================================ */
.executive {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 900px;
    margin: 0 auto;
}

.executive-photo {
    flex-shrink: 0;
    width: 280px;
    height: 350px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.executive-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-photo-placeholder {
    text-align: center;
    color: var(--gray-400);
}

.executive-photo-placeholder i {
    font-size: 4rem;
    color: var(--green-600);
    margin-bottom: 12px;
}

.executive-info {
    flex: 1;
}

.executive-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--green-100);
    color: var(--green-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.executive-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.executive-info .executive-role {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.executive-info .executive-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.executive-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.executive-tag {
    padding: 6px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--gray-900);
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    gap: 16px;
}

.faq-question:hover {
    color: var(--green-600);
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--gray-400);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   CTA / FORM SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-hero);
    padding: var(--section-py) 0;
    position: relative;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.cta-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: left;
}

.cta-form .input-group {
    margin-bottom: 20px;
}

.cta-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.3);
    color: #f0fdf4;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-form input:focus,
.cta-form select:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.cta-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300ff88' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
}

.form-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.form-messages {
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
}

.success-msg { color: var(--green-600); }

.cta-contact {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-800);
    padding: 64px 0 24px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--green-400);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--green-400);
}

/* ============================================
   WHATSAPP CTA STRIP
   ============================================ */
.whatsapp-strip {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background: var(--green-600);
}

.whatsapp-strip a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.whatsapp-strip a:hover {
    opacity: 0.9;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    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: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
#oportunidade {
    position: relative;
    background: url('bg-oportunidade.jpg') center/cover no-repeat;
}

#oportunidade::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 10, 8, 0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
}

#oportunidade > .container {
    position: relative;
    z-index: 1;
}

#produtos {
    position: relative;
    background: url('bg-produtos.jpg') center/cover no-repeat;
}

#produtos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 10, 8, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 0;
}

#produtos > .container {
    position: relative;
    z-index: 1;
}

#ganhos {
    position: relative;
    background: url('bg-ganhos.jpg') center/cover no-repeat;
}

#ganhos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 10, 8, 0.87);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 0;
}

#ganhos > .container {
    position: relative;
    z-index: 1;
}

#carreira {
    position: relative;
    background: url('bg-carreira.jpg') center/cover no-repeat;
}

#carreira::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 10, 8, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 0;
}

#carreira > .container {
    position: relative;
    z-index: 1;
}

.cta-section {
    background: url('bg-cta.jpg') center/cover no-repeat;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 10, 8, 0.82);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-py: 96px;
    }

    .hero h1 { font-size: 3rem; }
    .section-header h2 { font-size: 2.5rem; }
    .cases-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .earnings-grid { grid-template-columns: repeat(2, 1fr); }
    .career-level { grid-template-columns: 1fr; }
    .executive { flex-direction: column; text-align: center; }
    .executive-tags { justify-content: center; }
}

@media (max-width: 768px) {
    :root {
        --section-py: 72px;
        --container-px: 20px;
    }

    /* Navbar mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(6, 10, 8, 0.97);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px 20px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta-group { display: none; }
    .hamburger { display: block; }

    .hero { padding: 140px 0 60px; min-height: auto; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { gap: 24px; }
    .hero-stat .stat-value { font-size: 1.2rem; }

    .section-header h2 { font-size: 2rem; }

    .cases-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .opp-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card.expansion { flex-direction: column; text-align: center; }
    .earnings-grid { grid-template-columns: 1fr 1fr; }
    .career-features { grid-template-columns: 1fr; }
    .career-level-details { gap: 16px; }
    .license-card { padding: 32px 24px; }
    .license-price { font-size: 2.5rem; }
    .executive-photo { width: 200px; height: 260px; }
    .cta-form { padding: 28px 20px; }
    .partners-grid { gap: 24px; }
    .footer-content { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 12px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.85rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .earnings-grid { grid-template-columns: 1fr; }
    .simulation-row { flex-direction: column; }
    .cta-contact { flex-direction: column; }
    .cta-contact .btn { width: 100%; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .fade-in, .fade-in-up {
        opacity: 1 !important;
        transform: none !important;
    }

    .whatsapp-float {
        animation: none;
    }
}
