﻿:root {
    --bg-color: #0B0E14;
    --bg-secondary: #151A23;
    --primary-color: #00D4FF;
    --secondary-color: #7B2CBF;
    --text-color: #E2E8F0;
    --text-muted: #94A3B8;
    --white: #ffffff;
    --glass-bg: rgba(21, 26, 35, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #00D4FF 0%, #7B2CBF 100%);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-main);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    overflow: hidden;
}

.hero-container-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-video {
    flex: 1;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    max-width: 600px;
}

.hero-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.2) 0%, rgba(11, 14, 20, 0) 70%);
    z-index: -1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--white);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.step-card p {
    color: var(--text-muted);
}

/* Features */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Devices */
.devices {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(123, 44, 191, 0.1) 50%, var(--bg-color) 100%);
    text-align: center;
}

.device-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--text-muted);
    transition: 0.3s;
}

.device-item i {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.5;
    transition: 0.3s;
}

.device-item:hover i {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.device-item:hover {
    color: var(--white);
}

/* Support */
.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.support-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.support-list i {
    color: var(--secondary-color);
    background: rgba(123, 44, 191, 0.2);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.img-box {
    background: var(--bg-secondary);
    height: 400px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.img-box i {
    font-size: 8rem;
    color: var(--bg-color);
    text-shadow: 0 0 50px rgba(123, 44, 191, 0.5);
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.plan-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: 0.3s;
    text-align: center;
}

.plan-card.featured {
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    background: rgba(11, 14, 20, 0.9);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.plan-card .price small {
    font-size: 1.2rem;
    vertical-align: middle;
    color: var(--text-muted);
}

.plan-card ul {
    margin-bottom: 40px;
}

.plan-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
}

.plan-card ul li i {
    color: var(--primary-color);
}

.plan-card .btn-primary,
.plan-card .btn-outline {
    width: 100%;
    justify-content: center;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.testimonial-card .stars {
    color: #FFD700;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 0 20px;
    color: var(--text-muted);
}

.faq-answer p {
    padding-bottom: 20px;
}

/* CTA Final */
.cta-final {
    text-align: center;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2), rgba(0, 212, 255, 0.1));
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-final p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer p {
    color: #64748B;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-video {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .header .nav-menu,
    .header .btn-primary {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: var(--white);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .header.active .nav-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
    }
}

/* Date Badge */
.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-badge i {
    color: var(--primary-color);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: floatPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: #FFF;
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #151A23;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    border: 1px solid var(--glass-border);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #151A23;
}

.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    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 for float */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .tooltip-text {
        display: none;
    }
}

/* --- REFINED STYLES FOR PLANOS PAGE --- */

/* Refined Page Title */
.page-title {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.page-title h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-title p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Refined Why Us Section (Mimicking the clean grid) */
.why-us {
    background: var(--bg-color);
    /* Keeping dark theme */
    padding: 100px 0;
}

.why-us .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 60px;
}

.why-us .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-card .fa-solid,
.feature-card .fa-regular {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Refined Plans Section */
.plans {
    padding: 80px 0 120px;
    background: var(--bg-secondary);
}

.plan-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.plan-card .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.plan-card .price small {
    font-size: 1.5rem;
    margin-top: 10px;
    font-weight: 500;
    color: #94a3b8;
}

.plan-card ul {
    margin: 30px 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.plan-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.plan-card ul li i {
    color: #25d366;
    /* Success green for checks */
    font-size: 1rem;
}

/* Refined Comments Section */
.comments-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.comments-section .section-title {
    text-align: left;
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 50px;
    line-height: 1;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.comment-item {
    background: #1e293b;
    border: none;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    /* Distinct colorful avatars */
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Alternate avatar colors */
.comment-item:nth-child(2) .comment-avatar {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.comment-item:nth-child(3) .comment-avatar {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.comment-content {
    flex: 1;
}

.comment-content h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-date {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
}

.comment-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
}

/* Refined Comment Form */
.comment-form-container {
    background: transparent;
    padding: 0;
    border: none;
    max-width: 900px;
    margin: 0 auto;
}

.comment-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-form-container h3::before {
    content: '\f075';
    /* fa-comment */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
}

.comment-form {
    background: #1e293b;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.form-group label {
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #0f172a;
    border: 2px solid #334155;
    padding: 15px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #0f172a;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

/* --- BLOG INDEX STYLES --- */
.blog-section {
    padding: 80px 0;
    min-height: 80vh;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.blog-img-box {
    height: 180px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-img-box i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tag-app {
    color: #3b82f6;
}

.tag-premium {
    color: #f59e0b;
}

.tag-tutorial {
    color: #10b981;
}

.tag-sports {
    color: #ef4444;
}

.tag-general {
    color: #8b5cf6;
}

.tag-movies {
    color: #ec4899;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--white);
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.read-more-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more-link:hover {
    gap: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-color);
}

.page-link.prev,
.page-link.next {
    width: auto;
    padding: 0 20px;
}

.page-dots {
    color: #64748b;
    font-weight: 700;
}

/* --- SINGLE POST STYLES --- */
.post-header-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('../assets/blog-bg-placeholder.jpg') no-repeat center center/cover;
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-header-container {
    max-width: 900px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
    align-items: center;
}

.read-time i,
.post-date i {
    margin-right: 5px;
    color: var(--primary-color);
}

.post-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
    padding: 60px 0;
    align-items: start;
}

.post-main {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.post-main h2 {
    font-size: 2rem;
    color: var(--white);
    margin: 40px 0 20px;
    scroll-margin-top: 100px;
    /* Offset for sticky header iÃƒÂneeded */
}

.post-main p {
    margin-bottom: 20px;
}

/* Internal CTA Box */
.cta-box-internal {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid var(--primary-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.cta-box-internal h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.cta-box-internal p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* TOC Box */
.toc-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 0 12px 12px 0;
}

.toc-box h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.toc-box ul {
    list-style: none;
    padding: 0;
}

.toc-box ul li {
    margin-bottom: 10px;
}

.toc-box ul li a {
    color: #94a3b8;
    transition: color 0.3s;
}

.toc-box ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Callout Box */
.callout-box {
    background: #1e293b;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    border: 1px dashed var(--gray);
}

.btn-outline-small {
    padding: 8px 20px;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-outline-small:hover {
    background: var(--white);
    color: var(--bg-color);
}

.btn-primary-small {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--bg-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
    border: none;
}

/* Mini Plans Grid */
.mini-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.mini-plan {
    background: #1e293b;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.mini-plan h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.mini-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.mini-price small {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
}

.mini-plan.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), #1e293b);
}

.mini-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--bg-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 0 0 8px 8px;
}

/* Sidebar */
.sidebar-widget {
    background: #1e293b;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    margin-bottom: 15px;
}

.sidebar-links a {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar-cat {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-title {
    font-size: 1rem;
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.4;
    transition: 0.3s;
}

.sidebar-links a:hover .sidebar-title {
    color: var(--primary-color);
}

.sticky-widget {
    position: sticky;
    top: 40px;
}

/* Final CTA in Post */
.final-cta {
    background: var(--bg-secondary);
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    margin-top: 60px;
    border: 1px solid var(--glass-border);
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .post-layout {
        grid-template-columns: 1fr;
    }

    .mini-plans-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ARTICLES SECTION (Reused in Planos & Home) --- */
.articles-section {
    padding: 80px 0;
    /* Ensuring background matches main theme or specific section */
    background-color: transparent;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.article-card {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.article-image {
    height: 180px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.article-image i {
    font-size: 3rem;
    color: var(--primary-color);
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 3rem;
}

.article-content p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 15px;
    min-height: 2.7rem;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 12px;
}

@media(max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* --- LIGHT THEME STYLES FOR TESTE IPTV PAGE (Specific Overrides) --- */

/* White Background for Why Choose & Timeline */
/* White Background REMOVED */
.why-us.light-mode-section,
.steps-timeline.light-mode-section,
.info-content.light-mode-section,
.apps-list-section.light-mode-section,
.comments-section.light-mode-section {
    background-color: transparent !important;
    color: var(--text-color);
}

/* Feature Cards (White on White Section -> Shadow or Border?) */
/* Image 1 shows clean white cards against a very light or white bg, maybe with drop shadow */
.why-us.light-mode-section .feature-card {
    background: var(--glass-bg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.why-us.light-mode-section .feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.why-us.light-mode-section .feature-card h3,
.why-us.light-mode-section .section-title {
    color: var(--white);
}

.why-us.light-mode-section .feature-card p,
.why-us.light-mode-section .feature-card i {
    color: var(--text-muted);
}

.why-us.light-mode-section .feature-card i {
    color: var(--primary-color);
}

/* Timeline (Image 1) - 2 Column Grid */
.steps-timeline.light-mode-section .timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.steps-timeline.light-mode-section .section-title {
    color: #1e293b;
    margin-bottom: 50px;
}

.steps-timeline.light-mode-section .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.steps-timeline.light-mode-section .timeline-number {
    background: #2563eb;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.steps-timeline.light-mode-section .timeline-content h3 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.steps-timeline.light-mode-section .timeline-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Request Form Section (Image 2 - Blue Background) */
.request-form-section.blue-mode-section {
    background-color: #2563eb !important;
    /* Royal Blue */
    padding: 80px 0;
}

.request-form-section.blue-mode-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.request-form-section.blue-mode-section .form-text {
    flex: 1;
    color: #ffffff;
}

.request-form-section.blue-mode-section .form-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.request-form-section.blue-mode-section .form-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.request-form-section.blue-mode-section .benefits-list li {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.request-form-section.blue-mode-section .benefits-list li i {
    background: #22c55e;
    /* Green Circle Check */
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Form Box (White Card) */
.request-form-section.blue-mode-section .form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 450px;
}

.request-form-section.blue-mode-section label {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

.request-form-section.blue-mode-section input,
.request-form-section.blue-mode-section select {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    width: 100%;
}

.request-form-section.blue-mode-section .btn-primary {
    background: #22c55e;
    /* Green Button */
    border: none;
    box-shadow: none;
    width: 100%;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
}

.request-form-section.blue-mode-section .btn-primary:hover {
    background: #16a34a;
}

/* Info Content (Image 3 - Light Text Section) */
.info-content.light-mode-section {
    padding: 80px 0;
}

.info-content.light-mode-section h3 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-content.light-mode-section p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Grey Box for 'Por que Vale a Pena' */
.info-block.grey-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.info-list li {
    color: #475569;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* Use CSS checkmark before like image? Or checkmark icon in HTML? HTML is safer, but let's assume raw text. Image 3 has checkmarks. */

/* Apps List (Image 4 - Pill Buttons) */
.apps-list-section.light-mode-section .section-title {
    color: #1e293b;
}

.apps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.apps-list-section.light-mode-section .app-item {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--glass-border);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    cursor: pointer;
}

.apps-list-section.light-mode-section .app-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

/* Comments (Image 4 - Light) */
.comments-section.light-mode-section .section-title {
    color: #1e293b;
}

.comments-section.light-mode-section .comment-item,
.comments-section.light-mode-section .comment-form-container {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    color: #334155;
}

.comments-section.light-mode-section h4 {
    color: #1e293b;
}

.comments-section.light-mode-section p {
    color: #64748b;
}

.comments-section.light-mode-section .btn-primary {
    background: #2563eb;
    /* Blue button for comments */
    color: #fff;
    box-shadow: none;
}

/* Mobile Responsive adjusts for new layout */
@media (max-width: 768px) {
    .request-form-section.blue-mode-section .container {
        flex-direction: column;
        text-align: center;

    }
}

/* --- SOBRE NÃ³s PAGE SPECIFIC STYLES --- */

/* Blue Header for About Page */
.page-title.about-header {
    background-color: #1e3a8a;
    /* Dark Royal Blue from image */
    background-image: none;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-bottom: none;
}

.page-title.about-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-title.about-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content - White Section */
.about-container.light-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.grid-2-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box-real {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-box-real img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #1e293b;
    /* Dark text */
    margin-bottom: 30px;
}

.about-topic {
    margin-bottom: 30px;
}

.about-topic h3 {
    color: #2563eb;
    /* Blue accent text */
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-topic p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 15px;
}

.benefits-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.benefits-grid-small li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 500;
    font-size: 0.95rem;
}

.benefits-grid-small li i {
    background: #22c55e;
    color: #fff;
    padding: 4px;
    border-radius: 50%;
    font-size: 0.7rem;
}

/* Why Different - White Section */
.why-us.light-section {
    background-color: #f8fafc;
    /* Very light grey/white */
    padding: 80px 0;
}

.why-us.light-section .section-title {
    color: #1e293b;
    margin-bottom: 60px;
}

/* Clean White Cards for Why Us */
.clean-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.clean-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Very subtle shadow */
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.icon-box-circle {
    width: 70px;
    height: 70px;
    background: #eff6ff;
    /* Light blue bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #2563eb;
    font-size: 1.8rem;
}

.clean-card h3 {
    color: #1e293b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.clean-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .grid-2-columns {
        grid-template-columns: 1fr;
    }

    .about-img-box-real {
        order: -1;
        /* Image first on mobile? User image shows text first but usually image top is better. Let's keep text first as per desktop reading flow or swap iÃƒÂneeded. The screenshot shows text left image right. */
    }
}
