/* ========================================
   B2B CORPORATE TRAINING LANDING PAGE
   Go Up Treinamentos Profissionais
   ======================================== */

:root {
    /* Corporate Color Palette */
    --primary-blue: #1e3a5f;
    --primary-blue-light: #2a5080;
    --gold: #D4AF37;
    --gold-light: #e6c84d;
    --gold-dark: #b8961f;

    /* Dark Theme */
    --dark-bg: #0a0f1a;
    --darker-bg: #060b14;
    --card-bg: rgba(15, 23, 42, 0.8);
    --card-hover: rgba(20, 30, 55, 0.9);
    --card-border: rgba(212, 175, 55, 0.1);

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(212, 175, 55, 0.3);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37, #e6c84d);
    --gradient-blue: linear-gradient(135deg, #1e3a5f, #2a5080);
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #D4AF37 100%);
    --gradient-mixed: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(30, 58, 95, 0.15));

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   BACKGROUND
   ======================================== */
.corporate-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(30, 58, 95, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 42px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--gold);
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-gold);
    color: var(--dark-bg) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--darker-bg);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    padding: 2rem;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .btn-nav {
    display: inline-block;
    margin-top: 1rem;
    text-align: center;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
}

.menu-overlay.active {
    display: block;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 10rem 0 5rem;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(30, 58, 95, 0.5);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: var(--gold);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-subtitle strong {
    color: var(--gold);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    display: block;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

/* ========================================
   SECTION COMMONS
   ======================================== */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   WHY SECTION (RESULTS)
   ======================================== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.result-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.result-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
}

.result-icon.blue {
    background: rgba(30, 58, 95, 0.4);
    color: #60a5fa;
}

.result-icon.green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.result-icon.purple {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.result-icon.gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.result-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.result-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   TRACKS SECTION
   ======================================== */
.tracks-section {
    background: rgba(5, 10, 20, 0.5);
}

.tracks-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.track-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.track-card:hover {
    border-color: var(--border-glow);
}

.track-header {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: background 0.3s ease;
}

.track-header:hover {
    background: rgba(212, 175, 55, 0.03);
}

.track-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.track-icon.info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.track-icon.data {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.track-icon.auto {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
}

.track-icon.admin {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.track-info {
    flex: 1;
}

.track-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.track-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.track-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.track-toggle i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.track-card.active .track-toggle {
    background: var(--gold);
}

.track-card.active .track-toggle i {
    color: var(--dark-bg);
    transform: rotate(180deg);
}

.track-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.track-content-inner {
    padding: 0 2rem 2rem;
}

/* Skills Tags */
.track-skills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-tag.hard {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.skill-tag.soft {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Module Accordion inside Track */
.module-group {
    margin-bottom: 1rem;
}

.module-group-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.module-group-title:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
}

.module-group-title h4 {
    font-size: 0.95rem;
    font-weight: 600;
    flex: 1;
}

.module-group-title i.toggle-icon {
    color: var(--text-muted);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.module-group.active .module-group-title i.toggle-icon {
    transform: rotate(180deg);
    color: var(--gold);
}

.module-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.module-lessons {
    padding: 0.8rem 0 0.5rem 1rem;
}

.module-lessons ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.module-lessons li {
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-left: 2px solid rgba(212, 175, 55, 0.15);
    transition: all 0.2s ease;
}

.module-lessons li:hover {
    border-left-color: var(--gold);
    color: var(--text-primary);
    padding-left: 1.2rem;
}

/* ========================================
   SKILLS SECTION (GLOBAL)
   ======================================== */
.skills-section {
    background: transparent;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skills-column {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.skills-column:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.skills-column-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skills-column-header.hard {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4), rgba(30, 58, 95, 0.1));
    border-bottom: 1px solid rgba(30, 58, 95, 0.3);
}

.skills-column-header.soft {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.03));
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.skills-column-header i {
    font-size: 1.5rem;
}

.skills-column-header.hard i {
    color: #60a5fa;
}

.skills-column-header.soft i {
    color: var(--gold);
}

.skills-column-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.skills-column-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.skills-list {
    list-style: none;
    padding: 1.2rem 1.5rem;
}

.skills-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
}

.skills-list li:last-child {
    border-bottom: none;
}

.skills-list li:hover {
    padding-left: 0.4rem;
}

.skills-list li i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.skills-list li span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   MODALITIES SECTION
   ======================================== */
.modalities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.modality-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.modality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modality-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.modality-card:hover::before {
    opacity: 1;
}

.modality-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.modality-card:hover .modality-icon {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

.modality-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.modality-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   IMPORTANCE / WHY INVEST SECTION
   ======================================== */
.importance-section {
    background: rgba(5, 10, 20, 0.5);
}

.importance-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.importance-content .big-quote {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    padding: 2rem;
}

.importance-content .big-quote::before {
    content: '"';
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute;
    top: -1rem;
    left: 0;
    font-family: Georgia, serif;
}

.importance-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.importance-stat {
    text-align: center;
}

.importance-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.importance-stat .stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    display: block;
}

/* ========================================
   OTHER COURSES SECTION
   ======================================== */
.other-courses {
    text-align: center;
}

.other-courses-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.other-courses-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.other-courses-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.courses-tags {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.course-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.course-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    text-align: center;
    padding: 5rem 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.5rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-features span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.6;
}

.footer-logo {
    height: 50px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--gold);
    width: 16px;
}

.footer-social-icons {
    display: flex;
    gap: 0.8rem;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-location h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-location p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: underline;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modalities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .container {
        padding: 0 1.2rem;
    }

    .hero {
        padding: 8rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat .stat-number {
        font-size: 1.8rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .track-header {
        padding: 1.2rem 1rem;
    }

    .track-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .track-info h3 {
        font-size: 1rem;
    }

    .track-content-inner {
        padding: 0 1rem 1.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .modalities-grid {
        grid-template-columns: 1fr;
    }

    .importance-stats {
        gap: 1.5rem;
    }

    .importance-stat .stat-value {
        font-size: 2rem;
    }

    .importance-content .big-quote {
        font-size: 1.1rem;
        padding: 1.5rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .other-courses-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .importance-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .courses-tags {
        justify-content: flex-start;
    }
}