/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --primary: #6C5CE7;
    --primary-dark: #4834D4;
    --accent: #F9CA24;
    --accent-dark: #F0AB20;
    --background: #0B0E14;
    --bg-dark: #0B0E14;
    --card-bg: #151921;
    --text: #FFFFFF;
    --text-main: #FFFFFF;
    --text-dim: #A0AEC0;
    --glass: rgba(21, 25, 33, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --gradient: linear-gradient(135deg, var(--primary) 0%, #A29BFE 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 15px;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.btn-accent {
    background: var(--accent);
    color: var(--background);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 202, 36, 0.3);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

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

/* Header */
.header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-info h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-info p {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-value {
    font-size: 28px;
    font-weight: 800;
}

.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mockup */
.hero-mockup {
    position: relative;
}

/* Telegram App Simulation */
.telegram-shell {
    background: #0e1621;
    border-radius: 16px;
    height: 480px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tg-sidebar {
    width: 70px;
    background: #17212b;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.tg-sidebar-item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #24303d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c7883;
    font-size: 18px;
}

.tg-sidebar-item.active {
    background: #2b5278;
    color: white;
}

.tg-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0e1621;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
}

.tg-header {
    height: 56px;
    background: #17212b;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tg-header-info h5 {
    font-size: 14px;
    margin: 0;
}

.tg-header-info span {
    font-size: 11px;
    color: #48BB78;
}

.tg-chat {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tg-msg {
    max-width: 85%;
    background: #182533;
    padding: 12px 16px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    position: relative;
    font-size: 13px;
    line-height: 1.5;
    animation: msgIn 0.5s ease backwards;
}

.tg-msg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 15px;
    height: 15px;
    background: #182533;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.tg-msg-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #6c7883;
    margin-top: 4px;
}

/* Custom Message Types */
.msg-green {
    border-left: 4px solid #48BB78;
}

.status-check {
    display: block;
    color: #48BB78;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.msg-signal {
    background: #1c2631;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.signal-banner-red {
    background: #ff3b30;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    display: block;
    margin-bottom: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signal-details {
    padding: 0 4px;
    color: #e2e8f0;
}

.tg-bot-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.tg-btn {
    background: #2b3d4f;
    color: #e2e8f0;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}

.tg-btn:hover {
    background: #364b61;
}

.btn-bet {
    background: #394d62;
}

/* Custom Scrollbar for Chat */
.tg-chat::-webkit-scrollbar {
    width: 6px;
}

.tg-chat::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.tg-chat::-webkit-scrollbar-thumb {
    background: #2c3e50;
    border-radius: 10px;
}

.tg-chat::-webkit-scrollbar-thumb:hover {
    background: #34495e;
}

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.signal-banner-red {
    background: #f03e3e;
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    display: block;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(240, 62, 62, 0.3);
}

.signal-banner {
    display: none;
}

.mockup-header-dots {
    display: flex;
    gap: 6px;
    padding: 10px 15px;
    background: #17212b;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tg-msg.right {
    align-self: flex-end;
    background: #2b5278;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 4px;
}

.tg-msg.right::before {
    left: auto;
    right: -8px;
    background: #2b5278;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* Features */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-dim);
}

.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary);
}

/* Streaming Academy */
.academy {
    padding: 100px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.video-thumb {
    aspect-ratio: 16/9;
    background: #2D3748;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    margin-bottom: 8px;
}

.video-info p {
    font-size: 13px;
    color: var(--text-dim);
}

/* ========================================
   PRICING CAROUSEL - HORIZONTAL SCROLL
   ======================================== */
.pricing {
    padding: 100px 0;
}

/* Wrapper para controlar o overflow */
.pricing-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

/* Grid transformado em carousel horizontal */
.pricing-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0 24px 40px 24px;
    -webkit-overflow-scrolling: touch;
}

/* Estilo customizado da scrollbar */
.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Cards do pricing */
.pricing-card {
    background: var(--card-bg);
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.price-header span {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
}

.price-value {
    font-size: 48px;
    font-weight: 800;
    margin: 16px 0;
}

.price-value small {
    font-size: 16px;
    color: var(--text-dim);
}

.price-features {
    list-style: none;
    margin: 32px 0;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dim);
}

.price-features li i {
    color: #48BB78;
    flex-shrink: 0;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Indicador visual de scroll */
.pricing-scroll-indicator {
    text-align: center;
    margin-top: 20px;
    color: var(--text-dim);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

@keyframes bounceHorizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* Community Feed */
.community {
    padding: 100px 0;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: #2D3748;
    border-radius: 50%;
}

.user-info h5 {
    font-size: 14px;
}

.user-info p {
    font-size: 11px;
    color: var(--text-dim);
}

.testimonial-text {
    font-style: italic;
    font-size: 14px;
    color: var(--text-dim);
}

/* CTA Bottom */
.cta-bottom {
    padding: 100px 0;
}

.cta-container {
    background: var(--gradient);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
}

.cta-container h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: #080B0F;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-dim);
    margin-top: 20px;
    font-size: 14px;
}

.footer-col h5 {
    margin-bottom: 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}


/* ===================================
   VIDEO CAROUSEL SECTION
   =================================== */

.videos-section {
    padding: 120px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
}

.videos-section .section-header {
    margin-bottom: 60px;
}

/* Carousel Container */
.video-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.video-carousel {
    overflow: hidden;
    position: relative;
}

.video-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Video Card Styling com Moldura */
.videos-section .video-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;

    /* MOLDURA COM BORDA GRADIENTE */
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

/* Efeito de borda gradiente na hover */
.videos-section .video-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
            var(--primary) 0%,
            var(--accent) 50%,
            var(--primary) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.videos-section .video-card:hover::before {
    opacity: 1;
}

.videos-section .video-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 30px rgba(99, 102, 241, 0.3),
        0 0 0 2px var(--primary);
}

/* Thumbnail Container */
.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.videos-section .video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.videos-section .video-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.videos-section .video-card:hover .play-button {
    transform: scale(1.1);
    background: var(--accent);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

.play-button i {
    margin-left: 4px;
    /* Ajuste visual do ícone play */
}

/* Video Duration Badge */
.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Video Info dentro do carrossel */
.videos-section .video-info {
    padding: 20px;
}

.videos-section .video-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-dim);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-meta i {
    font-size: 12px;
    opacity: 0.7;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.carousel-btn:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(99, 102, 241, 0.3);
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.indicator-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 5px;
    border-color: var(--primary);
}

/* Animação de entrada para os cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.videos-section .video-card {
    animation: fadeInUp 0.6s ease backwards;
}

.videos-section .video-card:nth-child(1) {
    animation-delay: 0.1s;
}

.videos-section .video-card:nth-child(2) {
    animation-delay: 0.2s;
}

.videos-section .video-card:nth-child(3) {
    animation-delay: 0.3s;
}

.videos-section .video-card:nth-child(4) {
    animation-delay: 0.4s;
}

.videos-section .video-card:nth-child(5) {
    animation-delay: 0.5s;
}

.videos-section .video-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Efeito de brilho no hover */
.videos-section .video-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            transparent 40%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 60%,
            transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.videos-section .video-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}


/* Responsive */
@media (max-width: 1200px) {
    .videos-section .video-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 1024px) {

    .hero,
    .features-grid,
    .video-grid,
    .feed-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 140px 0 60px;
        text-align: center;
    }

    .hero-info p,
    .hero-actions,
    .hero-stats {
        margin: 0 auto 40px;
        justify-content: center;
    }

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

    /* Pricing cards menor em tablet */
    .pricing-card {
        min-width: 300px;
        max-width: 300px;
    }
}

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

    .video-carousel-container {
        padding: 0 20px;
    }

    .videos-section .video-card {
        flex: 0 0 100%;
        min-width: 280px;
    }

    .video-track {
        gap: 16px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-btn.prev {
        left: -10px;
    }

    .carousel-btn.next {
        right: -10px;
    }

    .play-button {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .videos-section .video-info h4 {
        font-size: 15px;
    }

    .video-meta {
        font-size: 12px;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .hero-info h1 {
        font-size: 40px;
    }

    .cta-container {
        padding: 40px 20px;
    }

    .cta-btns {
        flex-direction: column;
    }

    /* Pricing cards ainda menor em mobile */
    .pricing-card {
        min-width: 280px;
        max-width: 280px;
    }

    .pricing-grid {
        padding: 0 12px 40px 12px;
        gap: 20px;
    }
}/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.video-modal-close:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumb {
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-modal-close {
        top: -50px;
        font-size: 28px;
    }
}
