/* ==========================================================================
   ACADI-TI - Web Red Teaming Landing Page Styles
   Premium Dark Mode Aesthetic
   ========================================================================== */

@font-face {
    font-family: 'Aspekta';
    src: url('https://cdn.jsdelivr.net/gh/iba-studio/Aspekta/fonts/webfonts/Aspekta-400.woff2') format('woff2');
    font-weight: 400;
}
@font-face {
    font-family: 'Aspekta';
    src: url('https://cdn.jsdelivr.net/gh/iba-studio/Aspekta/fonts/webfonts/Aspekta-700.woff2') format('woff2');
    font-weight: 700;
}
@font-face {
    font-family: 'Aspekta';
    src: url('https://cdn.jsdelivr.net/gh/iba-studio/Aspekta/fonts/webfonts/Aspekta-900.woff2') format('woff2');
    font-weight: 900;
}

:root {
    /* Brand Colors - ACADI-TI */
    --accent-blue: #0A5CFF;
    --accent-blue-glow: rgba(10, 92, 255, 0.4);
    --accent-green: #00DF81; /* Green Technology */
    --accent-red: #FF3B30;
    
    /* Dark Theme Backgrounds - Rich Blue Black */
    --bg-base: #060A12;
    --bg-surface: #0B1121;
    --bg-surface-elevated: #111A2E;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    /* Layout */
    --font-heading: 'Aspekta', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Courier New', Courier, monospace;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Typography elements */
.text-gradient {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-green { color: var(--accent-green); }
.text-blue { color: var(--accent-blue); }
.text-red { color: var(--accent-red); }

.highlight-stats {
    color: #fff;
    font-weight: 600;
}
.highlight-aggressive {
    color: var(--accent-green);
    font-weight: 800;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.text-center {
    text-align: center;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Glowing Orbs */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
}
.glow-1 { top: -200px; left: -200px; background: var(--accent-blue-glow); }
.glow-2 { top: 20%; right: -200px; background: rgba(0, 255, 136, 0.15); }

/* Glassmorphism */
.glass-card {
    background: rgba(10, 17, 34, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--accent-blue);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 136, 255, 0.3);
}
.btn-primary:hover {
    background: #0066cc;
    box-shadow: 0 6px 20px rgba(0, 136, 255, 0.4);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-enormous { padding: 1.25rem 3rem; font-size: 1.25rem; border-radius: 12px; }

/* Scarcity Banner */
.scarcity-banner {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, #0a1122, #111a33);
    border-bottom: 2px solid var(--accent-red);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
}
.banner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.banner-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7);
    animation: pulsingRed 1.5s infinite;
}
@keyframes pulsingRed {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 51, 51, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}
.banner-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}
.banner-text strong {
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}
.banner-timer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timer-display {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.spots-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.spots-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.spots-counter {
    background: rgba(10, 15, 25, 0.8);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.spots-num {
    font-weight: 800;
    color: #ff3333;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.spots-counter.update {
    transform: scale(1.2);
    border-color: #ff3333;
}
.btn-banner {
    padding: 0.6rem 1.5rem;
    background: var(--accent-green);
    color: #000;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.btn-banner:hover {
    background: #00e67a;
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 3rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(0, 136, 255, 0.1);
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 136, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-discount {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.1), rgba(255, 51, 51, 0.1));
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); border-color: var(--accent-green); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.4); border-color: #fff; }
    100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); border-color: var(--accent-green); }
}
.hero-title { font-size: 3rem; line-height: 1.1; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-primary); margin-bottom: 1.5rem; max-width: 800px; opacity: 0.9; }
.subtitle-spacing { display: block; height: 1.25rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; }

/* Brand Logo */
.brand-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    animation: fadeInDown 0.8s ease-out forwards;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Schedule */
.hero-schedule {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    width: 100%;
    text-align: left;
    border: 1px solid rgba(0, 136, 255, 0.2);
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.6), rgba(0, 136, 255, 0.05));
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.schedule-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}
.schedule-title {
    font-family: var(--font-heading);
    color: var(--accent-green);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.schedule-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.schedule-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.schedule-icon {
    font-size: 1.5rem;
}
.schedule-info {
    display: flex;
    flex-direction: column;
}
.schedule-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.schedule-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

/* Stats Infographic */
.infographic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(10, 17, 34, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}
.stat-box { text-align: center; }
.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-green);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label { font-size: 1rem; color: var(--text-secondary); text-transform: uppercase; font-weight: 600; letter-spacing: 1px;}

/* Lab Section */
.lab-section {
    padding: 8rem 0;
    background: var(--bg-surface);
}
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.platform-card {
    padding: 1.5rem;
    border-left: 3px solid var(--accent-blue);
    background: rgba(255, 255, 255, 0.02);
}
.platform-name { font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
.platform-stack { color: var(--accent-green); font-size: 0.9rem; font-family: var(--font-mono); }

/* Differentiators Modern Bento Grid */
.diff-section { padding: 8rem 0; background: var(--bg-surface); }
.modern-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.bento-card {
    background: rgba(10, 15, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 250px;
}
.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 136, 255, 0.5);
    background: rgba(10, 17, 34, 0.8);
    box-shadow: 0 15px 35px rgba(0, 136, 255, 0.1);
}
.bento-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 100% 0%, rgba(0,255,136,0.05) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.4s ease;
}
.bento-card:hover::before { opacity: 1; }
.bento-num {
    position: absolute;
    top: -15px;
    right: 5px;
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: color 0.4s ease, transform 0.4s ease;
}
.bento-card:hover .bento-num {
    color: rgba(0, 136, 255, 0.08);
    transform: scale(1.05) translate(-10px, 10px);
}
.bento-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.bento-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.bento-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(8, 12, 20, 0.8), rgba(0, 136, 255, 0.05));
    border: 1px solid rgba(0, 136, 255, 0.15);
}
.bento-wide .bento-title {
    font-size: 1.5rem;
    color: var(--accent-blue);
}
.bento-wide:hover .bento-num { color: rgba(0, 255, 136, 0.05); }

/* Modern CSS Grid Comparison Chart */
.comparison-section { padding: 8rem 0; background: var(--bg-surface-elevated); position: relative; }
.compare-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 4rem;
    border-radius: 20px;
    background: rgba(10, 15, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.comp-row {
    display: grid;
    grid-template-columns: 2fr 3fr 3.5fr;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: transparent;
    transition: background 0.3s ease;
}
.comp-row:not(.comp-header):hover { background: rgba(255, 255, 255, 0.02); }
.comp-row:last-child { border-bottom: none; }
.comp-cell {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}
.comp-label { color: #fff; font-weight: 700; letter-spacing: 0.5px; }
.comp-others { color: var(--text-muted); opacity: 0.8; }
.comp-acadi { 
    background: linear-gradient(90deg, rgba(0, 136, 255, 0.05), rgba(0, 255, 136, 0.05));
    border-left: 1px solid rgba(0, 255, 136, 0.2);
    border-right: 1px solid rgba(0, 255, 136, 0.2);
    color: var(--text-primary);
    font-weight: 400;
}
.comp-acadi b { color: var(--accent-green); }

/* Header Specifics */
.comp-header { background: rgba(10, 17, 34, 0.8); border-bottom: 2px solid rgba(255,255,255,0.05); }
.comp-header .comp-cell { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
.comp-others-header { color: var(--text-secondary); font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; }
.comp-others-header span { color: var(--text-muted); font-size: 0.85rem; font-weight: 400; margin-top: 0.25rem;}
.comp-acadi-header {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-top: 2px solid var(--accent-green);
    border-left: 1px solid rgba(0, 255, 136, 0.2);
    border-right: 1px solid rgba(0, 255, 136, 0.2);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    padding-top: 1.5rem;
    position: relative;
}
.comp-acadi-header .highlight { color: var(--accent-green); font-size: 1.75rem; letter-spacing: -1px; }
.acadi-badge { position: absolute; top: -12px; right: 20px; background: var(--accent-green); color: #000; font-size: 0.7rem; font-weight: 900; padding: 0.25rem 0.75rem; border-radius: 20px; letter-spacing: 1px;}

/* Icons */
.cross { color: var(--accent-red); margin-right: 0.75rem; font-weight: bold; font-size: 1.2rem; }
.check { color: var(--accent-green); margin-right: 0.75rem; font-weight: bold; font-size: 1.2rem; }

/* Included Items */
.included-section { padding: 8rem 0; background: var(--bg-base); }
.included-grid-complex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.included-item {
    padding: 2.5rem;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border-top: 2px solid var(--accent-blue);
    transition: transform 0.3s ease;
}
.included-item:hover { transform: translateY(-5px); border-color: var(--accent-green); box-shadow: 0 5px 20px rgba(0,255,136,0.1); }
.included-item.featured { grid-column: span 2; border-top: 2px solid var(--accent-green); background: linear-gradient(135deg, rgba(10, 17, 34, 0.4), rgba(0, 255, 136, 0.05)); }
.included-text h4 { color: #fff; font-size: 1.25rem; margin-bottom: 0.75rem; }
.included-text p { color: var(--text-secondary); font-size: 0.95rem; }

/* Pricing & Checkout Rules */
.cta-section { padding: 8rem 0; background: var(--bg-surface-elevated); }
.pricing-card { max-width: 800px; margin: 4rem auto 0; border: 2px solid var(--accent-blue); overflow: hidden; position: relative; background: rgba(5, 10, 20, 0.8); }
.pricing-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--accent-blue), var(--accent-green)); }
.pricing-header { padding: 3rem 2rem 2rem; background: rgba(0, 136, 255, 0.05); text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.pricing-header h3 { font-size: 2.2rem; color: #fff; margin-bottom: 0.5rem; }
.pricing-header p { color: var(--accent-green); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px;}
.pricing-body { padding: 3rem 4rem; display: flex; flex-direction: column; align-items: center; }
.pricing-list { list-style: none; width: 100%; padding: 0; margin-bottom: 3rem; }
.pricing-list li { padding: 1.25rem 0; font-size: 1.1rem; color: var(--text-secondary); border-bottom: 1px dashed rgba(255, 255, 255, 0.05); display: flex; align-items: flex-start; text-align: left; }
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before { content: "✓"; display: inline-block; color: var(--accent-green); margin-right: 1.25rem; font-weight: 800; font-size: 1.2rem; }
.pricing-list li.highlight { color: var(--accent-red); font-weight: 600; background: rgba(217, 59, 59, 0.05); padding: 1.5rem; border-radius: 8px; margin-top: 1rem; border: 1px solid rgba(217, 59, 59, 0.2); }
.pricing-list li.highlight::before { content: "★"; color: var(--accent-red); margin-right: 1.25rem; }
.pricing-list li strong { color: #fff; margin-right: 0.25rem; }
.pricing-values { text-align: center; margin-bottom: 3rem; padding: 2.5rem; background: rgba(0,0,0,0.5); border-radius: 12px; width: 100%; border: 1px solid rgba(0, 255, 136, 0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.price-anchor { color: #ff5f56; text-decoration: line-through; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.price-current { font-size: 4.5rem; font-weight: 900; line-height: 1; font-family: var(--font-heading); color: var(--accent-green); margin-bottom: 0.5rem; text-shadow: 0 0 30px rgba(0,255,136,0.3); }
.price-current span { font-size: 1.5rem; opacity: 0.7; }
.price-installments { color: var(--text-secondary); font-size: 1.1rem; }
.pulse-anim { animation: pulseBtn 2s infinite; width: 100%; max-width: 500px; font-size: 1.25rem; padding: 1.25rem; }
@keyframes pulseBtn { 0% { box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.6); } 70% { box-shadow: 0 0 0 20px rgba(0, 136, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 136, 255, 0); } }
.guarantee-box { display: flex; align-items: center; gap: 1.5rem; margin-top: 3rem; text-align: left; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.shield-icon { width: 48px; height: 48px; color: var(--accent-blue); flex-shrink: 0; }
.guarantee-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }
.guarantee-box strong { color: var(--text-primary); }

/* ==========================================================================
   Footer Modernizado
   ========================================================================== */
.footer { padding: 5rem 0 2rem; background: #02050a; text-align: left; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.brand-col .footer-logo-img { max-width: 150px; margin-bottom: 1rem; }
.footer-desc { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-icon { width: 35px; height: 35px; border-radius: 50%; border: 1px solid var(--accent-green); display: flex; align-items: center; justify-content: center; color: var(--accent-green); font-size: 0.9rem; font-weight: bold; transition: all 0.3s; text-transform: lowercase; text-decoration: none; }
.social-icon:hover { background: var(--accent-green); color: #000; }
.address-col h4 { color: var(--accent-green); font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.address-col p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

.footer-partners { display: flex; justify-content: space-between; align-items: center; padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 2rem; }
.partner-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.footer-links a { color: var(--text-secondary); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-partners { flex-direction: column; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Terminal Card (Added UI Element) */
.terminal-card { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); }
.terminal-header { background: rgba(0, 0, 0, 0.4); padding: 0.75rem 1rem; display: flex; align-items: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.dot { width: 12px; height: 12px; border-radius: 50%; margin-right: 8px; }
.dot.red { background: #ff5f56; } .dot.yellow { background: #ffbd2e; } .dot.green { background: #27c93f; }
.terminal-title { margin: 0 auto; color: var(--text-muted); font-size: 0.85rem; font-family: var(--font-body); }
.terminal-body { padding: 1.5rem; font-family: var(--font-mono); font-size: 0.95rem; color: #e6e6e6; background: rgba(5, 10, 20, 0.9); min-height: 250px; text-align: left;}
.code-line { margin-bottom: 0.5rem; }
.prompt { color: var(--accent-green); margin-right: 0.5rem; }
.code-line.output { color: var(--text-secondary); }
.code-line.success { color: var(--accent-green); }
.cursor { animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Syllabus & Modules */
.syllabus-section { padding: 8rem 0; background: var(--bg-surface-elevated); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.syllabus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 4rem; }
.syllabus-card { padding: 2.5rem; background: rgba(10, 17, 34, 0.6); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; transition: transform 0.3s ease; }
.syllabus-card:hover { border-color: var(--accent-blue); transform: translateY(-5px); }
.syllabus-card span.mod-num { display: inline-block; font-size: 0.9rem; font-weight: 700; color: var(--accent-green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.syllabus-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 1rem; }
.syllabus-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 1.5rem; }
.syllabus-card ul { list-style: none; padding-left: 0; }
.syllabus-card ul li { position: relative; padding-left: 1.5rem; font-size: 0.95rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.syllabus-card ul li::before { content: "›"; position: absolute; left: 0; color: var(--accent-blue); font-weight: bold; font-size: 1.2rem; }

/* Certifications Timeline */
.cert-section { padding: 8rem 0; background: var(--bg-base); position: relative; overflow: hidden; }
.cert-timeline { position: relative; max-width: 900px; margin: 5rem auto 0; padding: 2rem 0; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: rgba(255, 255, 255, 0.05); transform: translateX(-50%); border-radius: 4px; }
.timeline-progress { position: absolute; top: 0; left: 0; width: 100%; background: linear-gradient(180deg, var(--accent-blue), var(--accent-green)); height: 0%; transition: height 0.1s ease-out; border-radius: 4px; box-shadow: 0 0 15px var(--accent-green); }
.timeline-item { position: relative; width: 100%; display: flex; justify-content: flex-end; padding-right: 50%; padding-bottom: 2rem; opacity: 0.3; transform: scale(0.95) translateY(20px); transition: all 0.5s ease; }
.timeline-item.right { justify-content: flex-start; padding-right: 0; padding-left: 50%; }
.timeline-item.active { opacity: 1; transform: scale(1) translateY(0); }
.timeline-dot { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 24px; height: 24px; border-radius: 50%; border: 4px solid var(--bg-base); background: var(--text-muted); z-index: 2; transition: all 0.4s ease; box-shadow: 0 0 0 rgba(0,255,136,0); }
.timeline-item.active .timeline-dot { background: var(--accent-green); border-color: var(--accent-blue); box-shadow: 0 0 20px var(--accent-green); }
.cert-card { width: 90%; padding: 2.5rem; border-top: 3px solid transparent; border-left: 3px solid transparent; background: rgba(255, 255, 255, 0.02); position: relative; z-index: 10; cursor: default; transition: border-color 0.4s ease; }
.timeline-item.active .cert-card { border-top-color: var(--accent-green); }
.timeline-item.left .cert-card { margin-right: 10%; border-right: 3px solid transparent; }
.timeline-item.right .cert-card { margin-left: 10%; border-left-color: transparent; }
.timeline-item.active.right .cert-card { border-left-color: var(--accent-green); border-top-color: transparent;}
.timeline-item.active.left .cert-card { border-right-color: var(--accent-green); border-top-color: transparent;}
.cert-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 1rem; }
.cert-card p { color: var(--text-secondary); font-size: 1rem; }

/* Capstone / Exame Prático */
.capstone-section { padding: 4rem 0 8rem; background: var(--bg-base); }
.capstone-card { border: 2px solid var(--accent-red); position: relative; padding: 4rem; overflow: hidden; background: linear-gradient(135deg, rgba(10, 17, 34, 0.95), rgba(217, 59, 59, 0.08)); }
.capstone-badge { position: absolute; top: 2.2rem; right: -4rem; background: var(--accent-red); color: white; padding: 0.5rem 4rem; transform: rotate(45deg); font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; letter-spacing: 1px; box-shadow: 0 4px 15px rgba(255, 51, 51, 0.4); text-transform: uppercase; z-index: 10; text-align: center; width: 300px; }
.capstone-content { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: center; }
.capstone-title { font-size: 2.2rem; color: #fff; margin-bottom: 0.25rem; }
.capstone-subtitle { font-size: 1.15rem; color: var(--accent-red); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700;}
.capstone-desc { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.05rem; }
.capstone-requirements h4 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.capstone-requirements ul { list-style: none; padding-left: 0; }
.capstone-requirements ul li { position: relative; padding-left: 2rem; color: var(--text-muted); margin-bottom: 0.75rem; font-size: 0.95rem; }
.capstone-requirements ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-green); font-weight: bold; font-size: 1.1rem; }
.capstone-stats { display: flex; flex-direction: column; gap: 2rem; background: rgba(0,0,0,0.4); padding: 2.5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.stat-mini { text-align: center; }
.stat-mini .stat-val { display: block; font-size: 2.8rem; font-family: var(--font-heading); color: var(--accent-blue); font-weight: 900; line-height: 1; margin-bottom: 0.5rem; }
.stat-mini .stat-lbl { color: var(--text-secondary); font-size: 0.85rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }

/* Responsive */
@media (max-width: 900px) {
    .banner-container { flex-wrap: wrap; justify-content: center; gap: 0.75rem; padding: 0.75rem 1rem; }
    .banner-text { font-size: 0.85rem; }
    .btn-banner { display: none; }
    .comp-row { display: flex; flex-direction: column; background: rgba(0,0,0,0.2) !important;}
    .comp-cell { padding: 1rem 1.5rem; }
    .comp-label { background: var(--bg-surface-elevated); padding-top: 2rem; border-top: 2px solid rgba(255,255,255,0.05); }
    .comp-header { display: none; } /* On mobile, labels are enough because space is tight */
    .platforms-grid, .infographic { grid-template-columns: 1fr; }
    .modern-bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; padding: 2.5rem 1.5rem; }
    .included-grid-complex { grid-template-columns: 1fr; }
    .included-grid-complex > :nth-child(5) { grid-column: span 1; }
    .included-item.featured { grid-column: span 1; }
    .comp-table { display: block; overflow-x: auto; }
    .syllabus-grid { grid-template-columns: 1fr; }
    .capstone-content { grid-template-columns: 1fr; gap: 2rem; }
    .capstone-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; }
}
@media (max-width: 768px) {
    .banner-container { padding: 0.35rem 0.5rem; gap: 0.5rem; flex-wrap: nowrap; justify-content: space-between; }
    .banner-text { font-size: 0.6rem; line-height: 1.1; }
    .banner-text strong { display: inline-block; font-size: 0.55rem; }
    .banner-timer { padding: 0.15rem 0.5rem; gap: 0.4rem; }
    .spots-label { font-size: 0.7rem; }
    .spots-counter { font-size: 0.9rem; padding: 0.1rem 0.4rem; min-width: 30px; }
    
    .brand-logo { max-width: 140px; margin-bottom: 0.5rem; }
    .hero { padding: 4.5rem 0 2rem; min-height: auto; }
    .schedule-grid { flex-direction: column; gap: 1rem; }
    .hero-schedule { margin-top: 2rem; padding: 1.25rem; }
    .timeline-line { left: 24px; transform: none; }
    .timeline-item, .timeline-item.right { justify-content: flex-start; padding-right: 0; padding-left: 60px; }
    .timeline-dot { left: 24px; transform: translate(-50%, -50%); }
    .cert-card.glass-card, .timeline-item.right .cert-card, .timeline-item.left .cert-card { width: 100%; margin-left: 0; margin-right: 0; border-top-color: transparent !important; }
    .timeline-item.active .cert-card { border-left-color: var(--accent-green) !important; border-right-color: transparent !important; }
    .pricing-body { padding: 2.5rem 1.5rem; }
    .price-current { font-size: 3.5rem; }
    .guarantee-box { flex-direction: column; text-align: center; }
    .hero-title { font-size: 1.7rem; margin-bottom: 0.5rem; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.4; }
    .subtitle-spacing { height: 0.5rem; }
    .badge { font-size: 0.7rem; padding: 0.4rem 0.75rem; margin-bottom: 0.75rem; }
    .hero-cta { flex-direction: column; gap: 0.5rem; width: 100%; }
    .btn-large, .btn-enormous { width: 100%; padding: 0.8rem 1rem; font-size: 0.95rem; }
    .terminal-body { font-size: 0.85rem !important; min-height: 200px !important; }
    .stat-num { font-size: 2.5rem; }
    .capstone-title { font-size: 1.8rem; }
    .capstone-badge { position: static; transform: none; display: inline-block; margin-bottom: 1rem; width: auto; padding: 0.5rem 2rem; }
}

/* ==========================================================================
   Dynamic Animations (Intersection Observer)
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
.bento-card:nth-child(1) { transition-delay: 0.05s; }
.bento-card:nth-child(2) { transition-delay: 0.15s; }
.bento-card:nth-child(3) { transition-delay: 0.25s; }
.bento-card:nth-child(4) { transition-delay: 0.35s; }
.bento-card:nth-child(5) { transition-delay: 0.45s; }
.bento-card:nth-child(6) { transition-delay: 0.55s; }

.platform-card:nth-child(1) { transition-delay: 0.05s; }
.platform-card:nth-child(2) { transition-delay: 0.15s; }
.platform-card:nth-child(3) { transition-delay: 0.25s; }
.platform-card:nth-child(4) { transition-delay: 0.35s; }
.platform-card:nth-child(5) { transition-delay: 0.45s; }
.platform-card:nth-child(6) { transition-delay: 0.55s; }

.syllabus-card:nth-child(odd) { transition-delay: 0.1s; }
.syllabus-card:nth-child(even) { transition-delay: 0.3s; }

.included-item:nth-child(1) { transition-delay: 0.05s; }
.included-item:nth-child(2) { transition-delay: 0.15s; }
.included-item:nth-child(3) { transition-delay: 0.25s; }
.included-item:nth-child(4) { transition-delay: 0.35s; }
.included-item:nth-child(5) { transition-delay: 0.45s; }

/* ==========================================================================
   Modal (Floating Form)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #0d1117;
    padding: 3rem 1.5rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-red);
}

/* ==========================================================================
   Instructor Section
   ========================================================================== */
.instructor-section { padding: 4rem 0 2rem; position: relative; }
.instructor-card { padding: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.05); }
.instructor-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; }
.instructor-image { width: 100%; height: 100%; position: relative; background: #02050a; max-height: 550px; overflow: hidden; }
.instructor-image img { width: 100%; height: 100%; max-height: 550px; object-fit: cover; object-position: center top; border-right: 1px solid rgba(255, 255, 255, 0.05); }
.instructor-content { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
.instructor-name { font-family: var(--font-heading); font-size: 2.5rem; color: var(--text-primary); margin-bottom: 0.5rem; letter-spacing: -1px; }
.instructor-role { color: var(--accent-green); font-size: 1.1rem; font-weight: 600; margin-bottom: 2rem; }
.instructor-bio p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.instructor-bio strong { color: var(--text-primary); font-weight: 700; }
.certifications-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.cert-badge { background: rgba(0, 255, 102, 0.05); color: var(--accent-green); border: 1px solid rgba(0, 255, 102, 0.2); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 700; font-family: var(--font-heading); letter-spacing: 1px; }

@media (max-width: 992px) {
    .instructor-grid { grid-template-columns: 1fr; }
    .instructor-image { max-height: 350px; }
    .instructor-image img { height: 350px; object-position: center 20%; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .instructor-content { padding: 2rem; }
    .instructor-name { font-size: 2rem; }
}

/* ==========================================================================
   Mobile Sticky CTA
   ========================================================================== */
/* Micro-copy abaixo do botão de CTA */
.btn-microcopy {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(2, 5, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    z-index: 900;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    /* Add padding to footer to prevent overlap with sticky CTA */
    .footer {
        padding-bottom: 6rem;
    }
}

@media (max-width: 768px) {
    .timer-display { display: none; }
}
