/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Nova Paleta Guia Portal Empreendedor */
    --primary: #1081c1;           /* Azul Claro */
    --primary-dark: #073955;      /* Azul Escuro */
    --primary-light: #1081c1;
    --secondary: #ec5713;         /* Laranja */
    --secondary-dark: #d14610;
    
    --success: #10b981;
    --warning: #ec5713;
    --danger: #ef4444;
    
    --dark: #071a2a;              /* Azul Escuríssimo */
    --dark-light: #073955;        /* Azul Escuro */
    --gray: #64748b;
    --light-gray: #cbd5e1;
    --lighter-gray: #f1f5f9;
    --white: #ffffff;
    
    /* Gradients - Nova Paleta */
    --gradient-primary: linear-gradient(135deg, #1081c1 0%, #073955 100%);
    --gradient-secondary: linear-gradient(135deg, #ec5713 0%, #d14610 100%);
    --gradient-dark: linear-gradient(135deg, #071a2a 0%, #073955 100%);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.desktop-btn {
    display: inline-block;
    text-decoration: none;
    margin-left: 1rem;
}

.desktop-lang {
    display: block;
    margin-left: 1rem;
}

/* Mobile Navigation - Hidden on Desktop */
.mobile-menu,
.mobile-lang {
    display: none;
}

.nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav a:hover {
    color: #1081c1;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1081c1;
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.btn-nav {
    background: #1081c1;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav:hover {
    background: #073955;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-nav::after {
    display: none;
}

/* Menu Selector - Dropdown Style */
.menu-selector {
    position: relative;
    margin-left: auto;
    margin-right: 0.5rem;
}

.menu-current {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-current:hover {
    background: rgba(16, 129, 193, 0.1);
    color: var(--primary);
}

.menu-current i.fa-chevron-down {
    font-size: 0.75rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

.menu-current:hover i.fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary);
}

.menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-selector:hover .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown a {
    padding: 0.75rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.menu-dropdown a:hover {
    background: rgba(16, 129, 193, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.menu-dropdown .btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    margin-top: 0.25rem;
    text-align: center;
}

.menu-dropdown .btn-nav:hover {
    background: #073955;
    transform: translateX(0) scale(1.02);
}

/* Language Selector - Dropdown Style */
.language-selector {
    position: relative;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(16, 129, 193, 0.1);
    color: var(--primary);
}

.lang-current:hover i {
    transform: rotate(180deg);
    color: var(--primary);
}

.lang-current img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-current i {
    font-size: 0.75rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

/* Dropdown Menu */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid var(--light-gray);
}

.language-selector:hover .lang-dropdown,
.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.lang-option:hover {
    background: var(--lighter-gray);
    transform: translateX(5px);
}

.lang-option.active {
    background: linear-gradient(135deg, var(--primary) 0%, #073955 100%);
    color: var(--white);
}

.lang-option.active span {
    color: var(--white);
    font-weight: 700;
}

.lang-option img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-option span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: url('../images/hero-meeting-networking-4k.jpg') center center / cover no-repeat;
    background-color: #071a2a;
}

/* Fallback para dispositivos que não suportam fixed */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

/* Overlay Equilibrado para Imagem Clara */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradiente sutil para equilibrar áreas claras */
    background: linear-gradient(
        to bottom,
        rgba(7, 26, 42, 0.75) 0%,
        rgba(7, 26, 42, 0.70) 50%,
        rgba(7, 26, 42, 0.75) 100%
    );
    z-index: 1;
}

/* Sem efeitos adicionais */
.hero::before,
.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--white);
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ec5713;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.hero-badge i {
    font-size: 1.3rem;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1px;
}

.highlight {
    color: #ec5713;
    display: inline-block;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #3ba3db;
    display: block;
    text-align: center;
}

/* Desktop: uma linha */
@media (min-width: 1200px) {
    .hero-tagline {
        white-space: nowrap;
    }
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.6;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-align: center;
}

/* Desktop: uma linha */
@media (min-width: 1200px) {
    .hero-description {
        white-space: nowrap;
    }
}

.hero-description strong {
    color: var(--white);
    font-weight: 700;
}

.hero-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-cta-text i {
    color: #ec5713;
    font-size: 1.4rem;
}

.hero-cta-text strong {
    color: #ec5713;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(7, 26, 42, 0.8);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: 2px solid rgba(16, 129, 193, 0.6);
}

.feature-badge i {
    font-size: 1.6rem;
    color: #1081c1;
}

.feature-badge span {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
}

.hero-trust i {
    color: #10b981;
    font-size: 1.4rem;
}

/* ===================================
   Buttons
   =================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ec5713;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(236, 87, 19, 0.4);
}

.btn-primary:hover {
    background: #d14610;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 87, 19, 0.5);
}

.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-secondary.large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    white-space: nowrap;
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    background: #ec5713;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Visão Geral Section
   =================================== */
.visao-geral {
    background: var(--lighter-gray);
    padding: var(--section-padding);
}

.visao-content {
    max-width: 1000px;
    margin: 0 auto;
}

.visao-main {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.visao-main .lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.visao-main p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.visao-main strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.visao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.visao-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.visao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.visao-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #ec5713;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.visao-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.visao-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.05rem;
}

.visao-footer {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.visao-footer p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.visao-footer i {
    color: #ec5713;
    font-size: 1.3rem;
}

/* ===================================
   Ecosystem Section (Deprecated)
   =================================== */
.ecosystem {
    background: var(--lighter-gray);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.ecosystem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.ecosystem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #ec5713;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.ecosystem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.ecosystem-card p {
    color: var(--gray);
    font-size: 1.05rem;
}

.structure-info {
    text-align: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.structure-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.levels-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.level-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #073955;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.level-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.level-badge i {
    font-size: 1.5rem;
}

/* ===================================
   Propósito Section
   =================================== */
.proposito {
    background: var(--white);
}

.proposito-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.proposito-text .lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--lighter-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.benefit-item:hover {
    background: var(--light-gray);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1.05rem;
    color: var(--dark);
}

.proposito-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.visual-card {
    background: #073955;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}

.visual-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===================================
   Fundamentos Section
   =================================== */
.fundamentos {
    background: var(--white);
    padding: var(--section-padding);
}

.fundamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.fundamento-card {
    background: var(--lighter-gray);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fundamento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #ec5713;
    transition: height 0.3s ease;
}

.fundamento-card:hover::before {
    height: 100%;
}

.fundamento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.fundamento-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ec5713;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.fundamento-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.fundamento-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   Plans Section
   =================================== */
.plans {
    background: var(--lighter-gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plan-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 3px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.plan-card.featured {
    border-color: #ec5713;
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: #073955;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.plan-tagline {
    color: var(--gray);
    font-size: 1.05rem;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--lighter-gray);
    border-radius: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    vertical-align: top;
}

.amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ec5713;
}

.period {
    font-size: 1.2rem;
    color: var(--gray);
}

.installment {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--lighter-gray);
}

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

.plan-features i {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-plan {
    width: 100%;
    background: #ec5713;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-plan:hover {
    background: #d14610;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.comparison-note {
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.comparison-note i {
    color: #ec5713;
    font-size: 1.5rem;
}

.comparison-note p {
    color: var(--gray);
    margin: 0;
}

.installment-note {
    margin-top: 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #10b981;
}

.installment-note i {
    color: #10b981;
}

/* ===================================
   How It Works Section
   =================================== */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--lighter-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #ec5713;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-card p {
    color: var(--gray);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background: var(--lighter-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.quote-icon {
    font-size: 2.5rem;
    color: #ec5713;
    opacity: 0.3;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #073955;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.author-info h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--lighter-gray);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: #ec5713;
}

.faq-question i {
    transition: var(--transition);
    color: #ec5713;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
}

.faq-answer ul,
.faq-answer ol {
    padding: 0 1.5rem 1.5rem 3rem;
    color: var(--gray);
    line-height: 1.8;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.faq-answer strong {
    color: var(--dark);
    font-weight: 600;
}

/* ===================================
   CTA Final Section
   =================================== */
.cta-final {
    background: #071a2a;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.8rem;
    color: #ec5713;
}

.footer-col p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: #ec5713;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: #ec5713;
    margin-top: 3px;
}

/* Botão Apoie Negócios Locais - Compartilhar WhatsApp */
.local-business-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ec5713 0%, #d14610 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(236, 87, 19, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.local-business-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 87, 19, 0.4);
}

.local-business-badge i {
    font-size: 1.1rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.footer-bottom {
    border-top: 1px solid var(--dark-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    /* Esconder menu desktop */
    .desktop-nav,
    .desktop-btn,
    .desktop-lang {
        display: none !important;
    }
    
    /* Mostrar menu mobile */
    .mobile-menu {
        display: block;
    }
    
    .mobile-lang {
        display: block;
    }
    
    /* Header mobile em uma única linha: Logo | Menu | Bandeira */
    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 15px;
    }
    
    /* Logo fica na esquerda */
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    /* Menu selector fica no centro */
    .mobile-menu {
        order: 2;
        margin-left: auto;
        margin-right: 0.5rem;
        flex: 0 0 auto;
    }
    
    .menu-current {
        padding: 0.4rem 0.5rem;
        font-size: 1rem;
    }
    
    .menu-dropdown {
        right: 0;
        left: auto;
        min-width: 180px;
    }
    
    /* Language selector fica à direita */
    .mobile-lang {
        order: 3;
        flex: 0 0 auto;
    }
    
    /* Bandeira menor sem caixa no mobile */
    .lang-current {
        padding: 0.3rem 0.4rem;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 0.25rem;
    }
    
    .lang-current:hover {
        background: rgba(16, 129, 193, 0.1);
    }
    
    .lang-current img {
        width: 26px;
        height: 19px;
    }
    
    .lang-current i {
        font-size: 0.65rem;
    }
    
    /* Dropdown abre para baixo */
    .lang-dropdown {
        top: calc(100% + 8px);
        right: 0;
        min-width: 150px;
    }
    
    .menu-dropdown {
        top: calc(100% + 8px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        white-space: normal;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
        white-space: normal;
        text-align: center;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .proposito-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 1rem;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .hero-subtitle-secondary {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature-badge {
        padding: 0.85rem 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1.05rem;
    }
    
    .hero-cta-text {
        font-size: 1.05rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-trust {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .levels-preview {
        flex-direction: column;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===================================
   Animations
   =================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 80px;
}