/* ============================================
   Jornada Dev Completo - Landing Page CSS
   Dark Theme with Vibrant Accent Colors
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Background Colors */
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #1A1A1A;
    --bg-card-hover: #222222;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    
    /* Accent Colors */
    --accent-orange: #F97316;
    --accent-orange-light: #FB923C;
    --accent-green: #10B981;
    --accent-green-light: #34D399;
    --accent-blue: #3B82F6;
    --accent-blue-light: #60A5FA;
    --accent-red: #EF4444;
    --accent-purple: #8B5CF6;
    --accent-cyan: #06B6D4;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
    --gradient-blue: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    --gradient-purple: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    
    /* Borders */
    --border-color: #2A2A2A;
    --border-hover: #3A3A3A;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Typography Utilities
   ============================================ */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange { color: var(--accent-orange); }
.text-green { color: var(--accent-green); }
.text-blue { color: var(--accent-blue); }
.text-red { color: var(--accent-red); }

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.btn-primary-nav {
    background: var(--gradient-main);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    padding: 2rem;
    transition: right 0.3s;
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 4rem;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-menu .btn-cta {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 80px;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, var(--bg-primary) 70%);
    overflow: hidden;
}

.hero-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}

/* Urgency Banner & Countdown */
.urgency-banner {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--accent-red);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

.urgency-banner i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.urgency-banner span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.countdown {
    display: flex;
    gap: 0.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent-red);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    min-width: 50px;
}

.countdown-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.countdown-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

/* Banner de Matrículas Encerradas */
.closed-banner {
    background: rgba(239, 68, 68, 0.15) !important;
    border: 2px solid var(--accent-red) !important;
    animation: none !important;
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.closed-banner i {
    font-size: 1.5rem;
}

/* Alerta de Redes Sociais */
.social-alert {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid var(--accent-blue);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.social-alert > i {
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    display: block;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
}

.social-alert p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.social-alert p strong {
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA */
.hero-cta {
    margin-bottom: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-xlarge {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Hero Trust */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--accent-green);
}

/* ============================================
   Sections Base
   ============================================ */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Problem Section
   ============================================ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-icon i {
    color: var(--accent-red);
    font-size: 1.8rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.solution-box {
    background: var(--gradient-main);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.solution-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.solution-box h3 .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: unset;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.solution-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* ============================================
   Modules Section
   ============================================ */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.module-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.module-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.module-icon i {
    font-size: 1.5rem;
    color: white;
}

.module-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.module-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.module-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-card ul li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    font-size: 0.9rem;
    padding-left: 1.2rem;
    position: relative;
}

.module-card ul li::before {
    content: '•';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Tools Grid */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tool-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.tool-badge:hover {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}

.tool-badge i {
    color: var(--accent-blue);
}

/* Bonus Block */
.bonus-block {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid var(--accent-green);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.bonus-badge {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.bonus-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bonus-item i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

.bonus-item span {
    color: var(--text-secondary);
}

/* Super Bonus Block */
.super-bonus-block {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
    border: 2px solid var(--accent-orange);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
}

.super-bonus-header {
    text-align: center;
    margin-bottom: 2rem;
}

.super-badge {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.super-bonus-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.super-bonus-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.super-bonus-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.super-bonus-item i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.super-bonus-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.super-bonus-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Offer Section
   ============================================ */
.offer-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.offer-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.offer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.offer-row:last-child {
    border-bottom: none;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offer-item i {
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.offer-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.offer-price.old {
    color: var(--text-secondary);
    text-decoration: line-through;
}

.offer-price.combo {
    color: var(--accent-green);
}

.offer-price.combo.free {
    background: var(--accent-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 800;
}

.offer-price.crossed {
    color: var(--accent-red);
    text-decoration: line-through;
    font-size: 1.3rem;
}

.offer-row-header {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.offer-price-header {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    min-width: 100px;
}

.total-row {
    background: rgba(239, 68, 68, 0.1);
    margin: 0 -2rem;
    padding: 1rem 2rem;
    border-radius: 0 0 16px 16px;
}

.offer-final {
    background: var(--gradient-main);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.offer-main-price {
    margin-bottom: 0.5rem;
}

.price-installment {
    font-size: 1.2rem;
    opacity: 0.9;
    display: block;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
}

.offer-cash {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.offer-final .btn-primary {
    background: white;
    color: var(--accent-orange);
    width: 100%;
    margin-bottom: 1.5rem;
}

.offer-final .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.offer-access {
    font-size: 0.9rem;
    opacity: 0.8;
}

.offer-access i {
    margin-right: 0.5rem;
}

/* ============================================
   Phases Section
   ============================================ */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.phase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.phase-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.phase-1 { border-top: 4px solid var(--accent-blue); }
.phase-2 { border-top: 4px solid var(--accent-purple); }
.phase-3 { border-top: 4px solid var(--accent-orange); }

.phase-1:hover { border-color: var(--accent-blue); }
.phase-2:hover { border-color: var(--accent-purple); }
.phase-3:hover { border-color: var(--accent-orange); }

.phase-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.phase-1 .phase-number { background: var(--accent-blue); }
.phase-2 .phase-number { background: var(--accent-purple); }
.phase-3 .phase-number { background: var(--accent-orange); }

.phase-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.phase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phase-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.phase-card ul {
    list-style: none;
}

.phase-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.phase-card li i {
    color: var(--accent-green);
    margin-top: 0.3rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.testimonial-quote {
    margin-bottom: 1rem;
}

.testimonial-quote i {
    color: var(--accent-purple);
    font-size: 1.5rem;
}

.testimonial-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info strong {
    display: block;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-card);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.trust-badge i {
    color: var(--accent-green);
    font-size: 1.5rem;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-orange);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CTA Final Section
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(16, 185, 129, 0.1));
    border-top: 1px solid var(--border-color);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-content .btn-xlarge {
    margin-bottom: 2rem;
}

.final-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.final-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.final-trust i {
    color: var(--accent-green);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-about p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--accent-orange);
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.footer-social-icons a:hover {
    background: var(--gradient-main);
    color: white;
    transform: translateY(-3px);
}

.footer-links h3,
.footer-location h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-location p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: white;
    font-size: 1.8rem;
}

/* ============================================
   WhatsApp Container with Tooltip
   ============================================ */
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--bg-card);
}

.whatsapp-container:hover .whatsapp-tooltip,
.whatsapp-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Access Info Section (Após a Compra)
   ============================================ */
.access-info {
    max-width: 700px;
    margin: 0 auto;
}

.access-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.access-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.access-icon i {
    font-size: 2rem;
    color: white;
}

.access-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.access-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.access-timeline {
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item i {
    color: var(--accent-orange);
    margin-top: 0.2rem;
}

.timeline-item.highlight {
    color: var(--accent-green);
}

.timeline-item.highlight i {
    color: var(--accent-green);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: white;
}

/* ============================================
   Featured Testimonial
   ============================================ */
.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(16, 185, 129, 0.05));
    border-color: var(--accent-orange);
}

.testimonial-card.featured p {
    margin-bottom: 1rem;
}

.testimonial-card.featured p:last-of-type {
    margin-bottom: 1.5rem;
}

/* ============================================
   Price Disclaimer
   ============================================ */
.offer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    opacity: 0.8;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .offer-comparison {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .btn-primary-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        padding: 100px 1.5rem 60px;
    }
    
    .urgency-banner {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem 1.5rem;
        border-radius: 16px;
    }
    
    .urgency-banner span {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large,
    .btn-xlarge {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .phases-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-table {
        padding: 1.5rem;
    }
    
    .offer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .total-row {
        margin: 0 -1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about,
    .footer-contact,
    .footer-social-icons {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .countdown-item {
        padding: 0.4rem 0.6rem;
        min-width: 45px;
    }
    
    .countdown-value {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .phase-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}
