/* ============================================
   ESPLORE STATIC SITE — "Deep Blue Streaming"
   HTML/CSS/JS Pure — No React, No Build Tools
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*:root {
    --color-flix: #FF4500;
    --color-flix-light: #FF6B35;
    --color-academy: #00B4D8;
    --color-academy-light: #48CAE4;
    --color-bg: #0D1117;
    --color-surface: #161B22;
    --color-surface-2: #1C2333;
    --color-text: #E6EDF3;
    --color-text-muted: #8B949E;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.12);
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}*/

:root {
    --color-flix2: #EEA039;
    --color-flix-light2: #F9BA40;

    --color-flix1: #03c1bc;
    --color-flix-light1: #00dadb;

    --color-academy2: #3391FF;
    --color-academy-light2: #6C63E7;

    --color-academy1: #efa23b;
    --color-academy-light1: #fbb041;
    
    --color-flix: #3372ff;
    --color-flix-light: #3592ff;

    --color-academy: #EEA039;
    --color-academy-light: #F9BA40;

    --color-bg: #0B1020;
    --color-surface: #12182A;
    --color-surface-2: #1A2238;

    --color-text: #F3F7FF;
    --color-text-muted: #9AA6BF;

    --color-border: rgba(51, 145, 255, 0.12);
    --color-border-light: rgba(108, 99, 231, 0.18);

    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

}

@font-face {
  font-family: 'Sansation Regular';
  src: url(fonts/Sansation_Regular.ttf);
}
@font-face {
  font-family: 'Sansation Light';
  src: url(fonts/Sansation_Light.ttf);
}
@font-face {
  font-family: 'Sansation Light Italic';
  src: url(fonts/Sansation_Light_Italic.ttf);
}
@font-face {
  font-family: 'Sansation Italic';
  src: url(fonts/Sansation_Italic.ttf);
}

@font-face {
  font-family: 'Sansation Bold Italic';
  src: url(fonts/Sansation_Bold_Italic.ttf);
}

@font-face {
  font-family: 'Sansation Bold';
  src: url(fonts/Sansation_Bold.ttf);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sansation Regular', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sansation Bold', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-flix), var(--color-academy));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
}

.logo-text {
    font-family: 'Sansation Regular', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: rgba(230, 237, 243, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: 'Sansation Regular', sans-serif;
}

.nav-link:hover {
    color: var(--color-text);
}

.cta-button {
    display: none;
    background: linear-gradient(135deg, var(--color-flix), var(--color-flix-light));
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sansation Regular', sans-serif;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
}

@media (min-width: 1024px) {
    .cta-button {
        display: block;
    }
}

.cta-button:hover {
    box-shadow: 0 8px 24px rgba(255, 69, 0, 0.5);
    transform: translateY(-2px);
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: rgba(13, 17, 23, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    background: none;
    border: none;
    color: rgba(230, 237, 243, 0.8);
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Sansation Light', sans-serif;
    transition: color 0.3s ease;
}

.mobile-link:hover,
.mobile-link.cta {
    color: var(--color-text);
}

.mobile-link.cta {
    background: linear-gradient(135deg, var(--color-flix), var(--color-flix-light));
    color: white;
    border-radius: var(--radius);
    border: none;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-bg) 0%, #0D1A2E 50%, var(--color-bg) 100%);
    /*background-image: url(images/esplore-hero-bg.jpg);*/
    opacity: .2;
    background-size: cover;
    background-position: right center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
}

.hero::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 25%;
    width: 384px;
    height: 384px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 33%;
    width: 256px;
    height: 256px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: rgba(230, 237, 243, 0.8);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.badge i {
    color: var(--color-flix);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.gradient-brand {
    background: linear-gradient(135deg, var(--color-flix) 0%, var(--color-flix-light) 40%, var(--color-academy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-title {
    background: linear-gradient(135deg, var(--color-flix) 40%, var(--color-academy) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(230, 237, 243, 0.65);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.text-flix {
    color: var(--color-flix);
    font-weight: 600;
}

.text-academy {
    color: var(--color-academy);
    font-weight: 600;
}

.hero-platforms {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.platform-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.02);
}

.platform-pill.flix {
    color: var(--color-flix);
    /*border-color: rgba(255, 69, 0, 0.3);
    background: rgba(255, 69, 0, 0.08);*/
    /*border-color: rgba(51, 114, 255, 0.25);
    background: rgba(51, 114, 255, 0.08);   */
    border-color: rgba(51, 114, 255, 0.4);
    background: rgba(51, 114, 255, 0.12);
}

.platform-pill.academy {
    color: var(--color-academy);
    /*border-color: rgba(0, 180, 216, 0.3);
    background: rgba(0, 180, 216, 0.08);*/
    border-color: rgba(238, 160, 57, 0.25);
    background: rgba(238, 160, 57, 0.08);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

@media (max-width: 640px) {
    .hero-ctas {
        flex-direction: column;
    }
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-family: 'Sansation Bold', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-flix), var(--color-flix-light));
    color: white;
    box-shadow: 0 8px 24px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.5);
    transform: translateY(-2px);
}

/*.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}*/

.btn-flix {
    background: var(--color-flix);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 69, 0, 0.3);
}

.btn-flix:hover {
    background: var(--color-flix-light);
    box-shadow: 0 12px 40px rgba(255, 69, 0, 0.5);
}

.btn-academy {
    background: var(--color-academy);
    color: white;
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.3);
}

.btn-academy:hover {
    background: var(--color-academy-light);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.5);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.65s backwards;
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Sansation Regular', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(230, 237, 243, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: rgba(230, 237, 243, 0.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: rgba(230, 237, 243, 0.8);
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    position: relative;
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

.section-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: rgba(230, 237, 243, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-badge.flix-badge {
    color: var(--color-flix);
    /*background: rgba(255, 69, 0, 0.08);
    border-color: rgba(255, 69, 0, 0.2);*/
    border-color: rgba(51, 114, 255, 0.4);
    background: rgba(51, 114, 255, 0.12);
}

.section-badge.academy-badge {
    color: var(--color-academy);
    /*background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.2);*/
    border-color: rgba(238, 160, 57, 0.25);
    background: rgba(238, 160, 57, 0.08);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: rgba(230, 237, 243, 0.65);
    line-height: 1.6;
}

/* ============================================
   FLIX SECTION
   ============================================ */

.flix-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0F1520 50%, var(--color-bg) 100%);
}

.flix-section::before {
    content: '';
    position: absolute;
    top: 33%;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(255, 69, 0, 0.08);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.flix-section::after {
    content: '';
    position: absolute;
    bottom: 33%;
    right: 0;
    width: 256px;
    height: 256px;
    background: rgba(255, 69, 0, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.message-line.flix {
    color: var(--color-flix);
}

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

.feature-card {
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
}

.comp-card.flix-card{
    border-color: rgba(51, 114, 255, 0.4);
    background: rgba(51, 114, 255, 0.12);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-icon.flix {
    background: rgba(255, 69, 0, 0.15);
    color: var(--color-flix);
}

.feature-icon.academy {
    background: rgba(0, 180, 216, 0.15);
    color: var(--color-academy);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(230, 237, 243, 0.6);
    line-height: 1.5;
}

.flix-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(var(--spacing) * 16);
}

.flix-message {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(255, 69, 0, 0.05) 100%);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flix-message::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 50%;
    filter: blur(120px);
}

.flix-message p {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.flix-message .subtitle {
    font-size: 1rem;
    color: rgba(230, 237, 243, 0.6);
    margin-bottom: 1.5rem;
}

/* ============================================
   ACADEMY SECTION
   ============================================ */

.academy-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0A1520 50%, var(--color-bg) 100%);
}

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

.academy-section::before {
    content: '';
    position: absolute;
    top: 33%;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(0, 180, 216, 0.08);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.academy-message {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12) 0%, rgba(0, 180, 216, 0.05) 100%);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.academy-message::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 256px;
    height: 256px;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    filter: blur(120px);
}

.academy-message p {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.academy-message .subtitle {
    font-size: 1rem;
    color: rgba(230, 237, 243, 0.6);
    margin-bottom: 1.5rem;
}
.comp-card.academy-card {
    border-color: rgba(238, 160, 57, 0.25);
    background: rgba(238, 160, 57, 0.08);
}

.academy-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(var(--spacing) * 16);
}

/* ============================================
   COMPARATIVO SECTION
   ============================================ */

.comparativo-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0E1520 50%, var(--color-bg) 100%);
}

.comparativo-message {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.message-line {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--color-text);
}

.message-line.academy {
    color: var(--color-academy);
}

.comparativo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.comp-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.comp-card:hover {
    /*background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);*/
    transform: translateY(-8px);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid;
}

.comp-header.flix {
    /*border-color: rgba(255, 69, 0, 0.3);*/
    border-color: rgba(51, 114, 255, 0.4);
}

.comp-header.academy {
    /*border-color: rgba(0, 180, 216, 0.3);*/
    border-color: rgba(238, 160, 57, 0.25);
}

.comp-header i {
    font-size: 1.5rem;
}

.comp-header.flix i {
    color: var(--color-flix);
}

.comp-header.academy i {
    color: var(--color-academy);
}

.comp-header h3 {
    font-size: 1.5rem;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(230, 237, 243, 0.8);
    font-size: 0.95rem;
}

.comp-list i {
    color: var(--color-flix);
    font-size: 1rem;
}

.comp-card.academy-card .comp-list i {
    color: var(--color-academy);
}

.comparativo-together {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    text-align: center;
}

.together-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.together-content p {
    color: rgba(230, 237, 243, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ============================================
   IA SECTION
   ============================================ */

.ia-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0D1520 50%, var(--color-bg) 100%);
}

.ia-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.ia-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ia-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ia-card.academy::before {
    background: radial-gradient(circle at 50% 0%, rgba(0, 180, 216, 0.1), transparent 70%);
}

.ia-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.ia-card:hover::before {
    opacity: 1;
}

.ia-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 0, 0.15);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-flix);
}

.ia-card.academy .ia-icon {
    background: rgba(0, 180, 216, 0.15);
    color: var(--color-academy);
}

.ia-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.ia-card p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: rgba(230, 237, 243, 0.6);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ia-platform {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--color-flix);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ia-card.academy .ia-platform {
    background: rgba(0, 180, 216, 0.2);
    border-color: rgba(0, 180, 216, 0.3);
    color: var(--color-academy);
}

.ia-card.academy .ia-platformflix {
    border-color: rgba(51, 114, 255, 0.4);
    background: rgba(51, 114, 255, 0.12);
    color: var(--color-flix);
}

.ia-footer {
    text-align: center;
    color: rgba(230, 237, 243, 0.7);
    font-size: 1.1rem;
    margin-top: 2rem;
    font-weight: 500;
}

/* ============================================
   RESULTADOS SECTION
   ============================================ */

.resultados-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0F1520 50%, var(--color-bg) 100%);
}

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

.metric-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.metric-value {
    font-family: 'Sansation Regular', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(1deg, var(--color-flix) 30%, var(--color-academy) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}
.metric-valueicon {
    font-family: 'Sansation Regular', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(1deg, var(--color-flix) 30%, var(--color-academy) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-box {
    display: flex;
    justify-content: center;
}

.metric-label {
    display: block;
    color: rgba(230, 237, 243, 0.7);
    font-size: 0.65rem;
    line-height: 1.5;
}

.resultados-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.resultados-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    font-size: 0.875rem;
    color: rgba(230, 237, 243, 0.7);
}

/* ============================================
   COMO FUNCIONA SECTION
   ============================================ */

.como-funciona-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0A1520 50%, var(--color-bg) 100%);
}

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

.step-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Sansation Regular', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.5;
}

.step-number.flix {
    color: var(--color-flix);
}

.step-number.academy {
    color: var(--color-academy);
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 0, 0.15);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--color-flix);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: rgba(230, 237, 243, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.como-funciona-cta {
    text-align: center;
    margin-top: 3rem;
}

.como-funciona-cta p {
    color: rgba(230, 237, 243, 0.6);
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

/* ============================================
   DEPOIMENTOS SECTION
   ============================================ */

.depoimentos-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0E1520 50%, var(--color-bg) 100%);
}

.depoimentos-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 384px;
    height: 384px;
    background: rgba(0, 180, 216, 0.05);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

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

.testimonial-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-card.flix {
    border-color: rgba(255, 69, 0, 0.2);
    background: rgba(255, 69, 0, 0.02);
}

.testimonial-card.academy {
    border-color: rgba(0, 180, 216, 0.2);
    background: rgba(0, 180, 216, 0.02);
}

.testimonial-card.both {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.testimonial-quote {
    font-size: 1.5rem;
    color: rgba(255, 69, 0, 0.4);
    margin-bottom: 1rem;
}

.testimonial-card.academy .testimonial-quote {
    color: rgba(0, 180, 216, 0.4);
}

.testimonial-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 69, 0, 0.15);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--color-flix);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    width: fit-content;
}

.testimonial-card.academy .testimonial-badge {
    background: rgba(0, 180, 216, 0.15);
    border-color: rgba(0, 180, 216, 0.3);
    color: var(--color-academy);
}

.testimonial-card.both .testimonial-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--color-flix);
}

.testimonial-card.academy .testimonial-stars {
    color: var(--color-academy);
}

.testimonial-stars i {
    font-size: 0.875rem;
}

.testimonial-text {
    flex: 1;
    color: rgba(230, 237, 243, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-flix);
    flex-shrink: 0;
}

.testimonial-card.academy .author-avatar {
    background: rgba(0, 180, 216, 0.2);
    border-color: rgba(0, 180, 216, 0.3);
    color: var(--color-academy);
}

.testimonial-card.both .author-avatar {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.85rem;
    color: rgba(230, 237, 243, 0.5);
}

/* ============================================
   CONTATO SECTION
   ============================================ */

.contato-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, #0D1520 50%, var(--color-bg) 100%);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contato-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contato-left p {
    font-size: 1.1rem;
    color: rgba(230, 237, 243, 0.65);
    margin-bottom: 2rem;
}

.contato-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    gap: 1rem;
}

.benefit i {
    color: var(--color-flix);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit p {
    font-size: 0.9rem;
    color: rgba(230, 237, 243, 0.55);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--color-text);
    font-family: 'Sansation Light', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-flix);
    box-shadow: 0 0 0 3px rgba(255, 69, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.platform-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.platform-option {
    position: relative;
}

.platform-option input {
    display: none;
}

.option-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-option input:checked + .option-label {
    background: rgba(255, 69, 0, 0.15);
    border-color: var(--color-flix);
    color: var(--color-flix);
}

.option-label.academy {
    color: var(--color-academy);
}
.option-label.flix {
    color: var(--color-flix);
}

.platform-option input:checked + .option-label.academy {
    background: rgba(0, 180, 216, 0.15);
    border-color: var(--color-academy);
}

.option-label.both {
    color: var(--color-text);
}

.platform-option input:checked + .option-label.both {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-privacy {
    font-size: 0.85rem;
    color: rgba(230, 237, 243, 0.5);
    text-align: center;
}

.success-message {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.success-content {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-content i {
    font-size: 3rem;
    color: var(--color-flix);
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.success-content p {
    color: rgba(230, 237, 243, 0.7);
    margin-bottom: 0.5rem;
}

.success-detail {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */


.footer {
    /*background: linear-gradient(180deg, var(--color-bg) 0%, #0A0E14 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);*/
    background: rgb(8, 12, 18);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 2rem;
}

footer {
    position: relative;
    background: #0B1020;
}

/* Linha com degradê */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        var(--color-academy),
        var(--color-academy-light),
        var(--color-flix),
        transparent
    );

    opacity: 0.9;
}

/* Glow suave */
footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;

    background: linear-gradient(
        to right,
        transparent,
        var(--color-academy),
        var(--color-academy-light),
        var(--color-flix),
        transparent
    );

    filter: blur(6px);
    opacity: 0.4;
}

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

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-column p {
    color: rgba(230, 237, 243, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(230, 237, 243, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--color-flix);
    border-color: var(--color-flix);
    color: white;
}

.footer-link {
    display: block;
    background: none;
    border: none;
    color: rgba(230, 237, 243, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    text-align: left;
    font-family: 'Sansation Regular', sans-serif;
}

.footer-link:hover {
    color: var(--color-flix);
}

.footer-address {
    color: rgba(230, 237, 243, 0.5);
    font-size: 0.9rem;
}

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

.footer-bottom p {
    color: rgba(230, 237, 243, 0.5);
    font-size: 0.85rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge-flix,
.badge-academy {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-flix {
    background: rgba(51, 114, 255, 0.12);
    color: var(--color-flix);
    border: 1px solid rgba(51, 114, 255, 0.3);
}

.badge-academy {
    background: rgba(0, 180, 216, 0.2);
    color: var(--color-academy);
    border: 1px solid rgba(0, 180, 216, 0.3);
}


/* ============================================
   UTILITIES
   ============================================ */

.gradient-flix {
    background: linear-gradient(135deg, var(--color-flix), var(--color-flix-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-academy {
    background: linear-gradient(135deg, var(--color-academy), var(--color-academy-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .navbar-content {
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metric-value {
        font-size: 4rem;
    }
    .container {
        padding: 0 1rem;
        display: block;
    }

    .flix-content {
        display: block;
    }
    .academy-content {
        display: block;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .metric-label {
        font-size: 1rem;
    }
    .metric-card {
        font-size: 1.5em;
    }
    .scroll-indicator {
        left: inherit;
        bottom: 0rem;
    }
    .topimage {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        display: block;
    }

    .flix-content {
        display: block;
    }
    .academy-content {
        display: block;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .comparativo-cards {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .platform-selector {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ============================================
   IMAGENS
   ============================================ */

.flix-mockup,
.academy-mockup {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.flix-mockup img,
.academy-mockup img {
    transition: transform 0.3s ease;
}

.flix-mockup img:hover,
.academy-mockup img:hover {
    transform: scale(1.02);
}

/* Background images com overlay */
.ia-section {
    position: relative;
}

.ia-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.85) 0%, rgba(13, 26, 46, 0.85) 100%);
    pointer-events: none;
}

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