/* 6seven TV - Premium Design System (Black & Red) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #070708;
    --bg-panel: #111113;
    --bg-card: rgba(18, 18, 20, 0.7);
    --primary: #ff003c;
    --primary-hover: #e60032;
    --primary-glow: rgba(255, 0, 60, 0.45);
    --primary-glow-subtle: rgba(255, 0, 60, 0.15);
    --text-white: #ffffff;
    --text-muted: #a3a3a8;
    --text-light: #e4e4e7;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --glass-border: rgba(255, 255, 255, 0.05);
    --red-border: rgba(255, 0, 60, 0.2);
}

/* Reset and Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    color: var(--text-muted);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradients and Glows */
.text-gradient-red {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-full {
    background: linear-gradient(135deg, #ff0055 0%, #ff5500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glow-point {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--primary-glow-subtle);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow-subtle);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.card-glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
}

.card-glass:hover {
    border-color: var(--red-border);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.05);
    transform: translateY(-5px);
}

/* Header & Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 8, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary);
}

.logo img {
    max-height: 45px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    display: flex;
    align-items: center;
    min-height: 90vh;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 0, 60, 0.08) 0%, rgba(7, 7, 8, 1) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Feature Section: Assista Onde Quiser */
.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

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

.device-icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 0, 60, 0.05);
    border: 1px solid rgba(255, 0, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.device-card:hover .device-icon-box {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.device-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.device-card p {
    font-size: 0.85rem;
}

/* App Carousel Section */
.partners-carousel-section {
    background-color: #0c0c0e;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 40px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: scrollTrack 25s linear infinite;
    width: max-content;
}

.carousel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.carousel-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.carousel-item img {
    height: 40px;
    object-fit: contain;
}

.carousel-item span {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--text-white);
}

@keyframes scrollTrack {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 30px));
    }
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.plan-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 0, 60, 0.12);
    transform: scale(1.03);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--primary);
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.plan-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.plan-period {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.plan-features li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.plan-cta {
    width: 100%;
}

/* Testimonials / Depoimentos */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #222;
    border: 2px solid rgba(255, 0, 60, 0.2);
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 0, 60, 0.1);
    border: 2px solid rgba(255, 0, 60, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

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

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    text-align: left;
    padding: 22px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question-btn i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question-btn.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(0,0,0,0.15);
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Downloads Page */
.downloads-section {
    padding: 140px 0 100px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.download-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 0, 60, 0.05);
    border: 1px solid rgba(255, 0, 60, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
    overflow: hidden;
}

.download-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-card:hover .download-icon {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow-subtle);
}

.download-name {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.download-btn {
    width: 100%;
}

/* Footer */
.site-footer {
    background-color: #040405;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.footer-brand h3 span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #121215;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 30px; height: 2px;
    background-color: var(--primary);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-contact-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar {
        height: 70px;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 50px 0;
        gap: 25px;
        transition: 0.4s ease;
        border-top: 1px solid rgba(255,255,255,0.03);
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .plan-card.featured {
        transform: scale(1);
    }
}
