:root {
    --primary: #00a06b;
    --primary-dark: #007a4f;
    --secondary: #e65c2a;
    --dark: #1a1a1a;
    --dark-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --light-gray: #666666;
    --white: #ffffff;
    --background: #ffffff;
    --text: #333333;
    --card-bg: #f8f9fa;
    --header-bg: rgba(255, 255, 255, 0.95);
    --section-bg: #ffffff;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary: #00ff9d;
    --primary-dark: #00cc7a;
    --secondary: #ff6b35;
    --dark: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --light-gray: #e0e0e0;
    --background: #0a0a0a;
    --text: #e0e0e0;
    --card-bg: #1a1a1a;
    --header-bg: rgba(10, 10, 10, 0.95);
    --section-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
p { margin-bottom: 1.5rem; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 157, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}
#mobile-content {
    transition: opacity 0.3s ease;
}
/* Header */
header {
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] header {
    background-color: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
    url('https://www.epics.com.br/blog/foto-branca-download-wallpapers-e-onde-usar') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
}

.category-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    color: var(--text);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.category-btn.active, .category-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.device-mockups {
    position: relative;
    height: 550px; /* Aumentado para acomodar a TV maior */
}

.tv-mockup, .mobile-mockup {
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35); /* Sombra mais profunda para dar destaque */
    transition: var(--transition);
}

.tv-mockup {
    width: 750px; /* Aumentado em 50% (era 500px) */
    height: 422px; /* Proporção 16:9 mantida */
    top: 30px;
    right: -80px; /* Deslocado para direita para não cobrir o texto */
    border: 14px solid #1a1a1a; /* Borda um pouco mais espessa */
    border-radius: 20px;
    z-index: 1; /* Fica atrás do celular */
}

.mobile-mockup {
    width: 170px;
    height: 340px;
    bottom: -100px;
    right: 30px; /* Posicionado na frente, lado esquerdo da TV */
    border: 10px solid #1a1a1a;
    border-radius: 30px;
    z-index: 2; /* Fica na frente da TV */
}

.device-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Problem Solution Section */
.problem-solution {
    padding: 6rem 0;
    background-color: var(--section-bg);
    border-bottom: 1px solid var(--medium-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: var(--text);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--light-gray);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card.bad {
    border-top: 4px solid #ff4d4d;
}

.card.good {
    border-top: 4px solid var(--primary);
}

.card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.card i {
    font-size: 1.5rem;
}

.card.bad i {
    color: #ff4d4d;
}

.card.good i {
    color: var(--primary);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.card.bad .feature-list li::before {
    background-color: #ff4d4d;
}

.card.good .feature-list li::before {
    background-color: var(--primary);
}

/* Ecosystem Section */
.ecosystem {
    padding: 6rem 0;
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--medium-gray);
}

.ecosystem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ecosystem-image {
    position: relative;
    height: 400px;
}

.dashboard-illustration {
    width: 100%;
    height: 100%;
    background-color: var(--medium-gray);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.dashboard-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.ecosystem-features {
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--dark);
}

.feature-text h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* Hardware Section */
.hardware {
    padding: 6rem 0;
    background-color: var(--section-bg);
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.device-item {
    background-color: var(--medium-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.device-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.device-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

/* Showcase Section */
.showcase {
    padding: 6rem 0;
    background-color: var(--section-bg);
    border-bottom: 1px solid var(--medium-gray);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.showcase-item {
    background-color: var(--dark-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.showcase-image {
    height: 200px;
    background-color: var(--medium-gray);
    background-image: url('https://www.epics.com.br/blog/foto-branca-download-wallpapers-e-onde-usar');
    background-size: cover;
    background-position: center;
}

.showcase-content {
    padding: 1.5rem;
}

.showcase-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* CTA Section */
.hero {
    padding: 8rem 0 6rem;
    background: var(--section-bg);
    color: var(--text);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--medium-gray);
}

.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    text-align: center;
}

.cta h2 {
    color: var(--text);
    margin-bottom: 1.5rem;
}

[data-theme="light"] .cta h2 {
    color: var(--dark);
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.25rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .btn-primary {
    background-color: #000000;
    color: var(--primary);
    border: 2px solid var(--primary);
}

[data-theme="dark"] .btn-primary:hover {
    background-color: var(--primary);
    color: #000000;
}

.cta .btn {
    background-color: var(--dark);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.cta .btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-logo span {
    color: var(--primary);
}

.footer-about p {
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

[data-theme="light"] .footer-links a {
    color: var(--text);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .category-buttons {
        justify-content: center;
    }

    .device-mockups {
        margin-top: 3rem;
        height: 400px;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ecosystem-image {
        order: -1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 0 4rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .device-mockups {
        height: 300px;
    }

    .tv-mockup {
        height: 180px;
        border-width: 8px;
    }

    .mobile-mockup {
        width: 100px;
        height: 200px;
        right: 10px;
        bottom: -30px;
        border-width: 8px;
    }
}
/* ===== Responsive Styles ===== */
/* Base mobile styles */
.container {
    padding: 0 1rem;
}

/* Typography adjustments for mobile */
h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

/* Header & Navigation */
.header-container {
    flex-direction: column;
    padding: 1rem 0;
    position: relative;
}

.nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0;
    display: none;
}

.nav-links.active {
    display: flex;
}

.hamburger {
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
}

/* Hero Section */
.hero {
    padding-top: 11rem;
}
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}
.hero-text {
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: 2rem;
}

/* Features Grid */
.features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Pricing Section */
.pricing-cards {
    flex-direction: column;
    align-items: center;
}

.pricing-card {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
}

/* Showcase Section */
.showcase-grid {
    grid-template-columns: 1fr;
}

/* CTA Section */
.cta-content {
    text-align: center;
    padding: 3rem 1rem;
}

.footer-links {
    margin-top: 1.5rem;
}

/* Hide elements on mobile */
.hide-mobile {
    display: none;
}

/* Tablet Styles */
@media (min-width: 768px){
    .hero {
        padding-top: 6rem;
    }
    .container {
        padding: 0 2rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        flex-direction: row;
        display: flex !important;
        width: auto;
        padding: 0;
    }

    .hamburger {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        text-align: left;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        flex-direction: row;
        justify-content: center;
    }

    .pricing-card {
        margin: 0 1rem;
    }

    .hide-mobile {
        display: block;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Container da mídia (Vídeo) */
.showcase-media {
    height: 200px; /* Mantém a altura fixa que você já tinha */
    width: 100%;
    position: relative;
    overflow: hidden; /* Garante que nada saia do card */
    background-color: var(--medium-gray); /* Cor de fundo enquanto carrega */
}

/* Estilo do Vídeo para preencher tudo */
.showcase-media video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* A MÁGICA: Faz o vídeo cobrir a área como uma imagem de fundo */
    display: block;
    border: none;
}
.hero-content {
    display: grid;
    /* MUDANÇA AQUI: 0.8fr para texto (40%) e 1.2fr para imagem (60%) */
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
/* Estilos Específicos da Central de Ajuda no Footer */

.help-links li {
    margin-bottom: 0.9rem;
}

.help-links a {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre ícone e texto */
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

/* Ícones com largura fixa para alinhar o texto */
.help-links a i {
    width: 20px;
    text-align: center;
    color: var(--primary); /* Usa a cor verde do seu tema */
}

/* Link de WhatsApp com destaque */
.highlight-link:hover {
    color: #25D366 !important; /* Verde oficial do WhatsApp no hover */
}

/* Indicador de Status (Bolinha verde pulsando) */
.status-indicator {
    width: 10px;
    height: 10px;
    background-color: #10b981; /* Verde sucesso */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 2s infinite;
    margin-left: 5px; /* Centraliza no lugar do ícone */
    margin-right: 5px;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}
/* --- RESPONSIVIDADE (Tablets e Telas Menores que 1100px) --- */
@media (max-width: 1100px) {
    /* 1. Muda o layout para coluna (Texto em cima, Imagem embaixo) */
    .hero-content {
        grid-template-columns: 1fr; /* Uma única coluna */
        text-align: center;
        gap: 3rem;
        padding-bottom: 2rem;
    }

    /* Centraliza o texto */
    .hero-text {
        margin: 0 auto;
        max-width: 800px;
    }

    /* Centraliza os botões */
    .category-buttons {
        justify-content: center;
    }

    /* 2. Ajusta o container dos Mockups */
    .device-mockups {
        height: auto; /* Altura automática (baseada no tamanho da TV) */
        min-height: 400px; /* Altura mínima para garantir que o celular caiba */
        display: flex;
        justify-content: center; /* Centraliza tudo horizontalmente */
        align-items: center;
        margin-top: 1rem;
        width: 100%;
    }

    /* 3. Ajusta a TV para ser fluida */
    .tv-mockup {
        position: relative; /* Muda de absolute para relative para fluir na tela */
        top: 0;
        right: auto; /* Remove o deslocamento lateral */
        left: auto;

        width: 90%; /* Ocupa 90% da largura da tela */
        max-width: 650px; /* Mas trava em 650px para não ficar gigante */
        height: auto; /* Altura automática */
        aspect-ratio: 16/9; /* MANTÉM O FORMATO DE TV SEMPRE */

        border-width: 10px; /* Borda um pouco mais fina */
        margin-right: 10%; /* Abre espaço na direita para o celular não cortar */
    }

    /* 4. Ajusta o Celular proporcionalmente */
    .mobile-mockup {
        width: 22%; /* Largura relativa à tela */
        max-width: 140px; /* Trava tamanho máximo */
        height: auto;
        aspect-ratio: 9/19; /* Mantém formato de celular */

        right: 5%; /* Posiciona baseado em % */
        bottom: -20px; /* Um pouco para baixo da TV */
        border-width: 6px;
    }
}

/* --- RESPONSIVIDADE (Celulares - Telas Menores que 500px) --- */
@media (max-width: 500px) {
    .device-mockups {
        min-height: 250px; /* Reduz altura do container */
    }

    .tv-mockup {
        width: 100%; /* TV ocupa largura total */
        margin-right: 20px; /* Pequeno respiro p/ celular */
        border-width: 6px;
        border-radius: 12px;
    }

    .mobile-mockup {
        width: 25%; /* Celular um pouco maior proporcionalmente */
        right: 0; /* Cola na direita */
        bottom: -10px;
    }

    .hero h1 {
        font-size: 2rem; /* Ajuste de fonte do título */
    }
}
/* Pricing Section Styles */
.pricing {
    padding: 6rem 0;
    background-color: var(--dark-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--medium-gray);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.2);
}

.pricing-card.coming-soon {
    opacity: 0.6;
    filter: grayscale(0.5);
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    width: 150px;
    text-align: center;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.price span {
    font-size: 1rem;
    color: var(--light-gray);
    font-weight: 400;
}

.annual-savings {
    background: rgba(0, 255, 157, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--primary);
}

.annual-savings i {
    font-size: 1.2rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .pricing-card.featured {
        transform: none;
    }
}
/* --- BANNER DE COOKIES --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 16px;
    padding: 20px;
    z-index: 99999; /* Fica acima de tudo */

    /* Começa escondido para o JS controlar */
    display: none;

    /* Animação de entrada */
    animation: slideUp 0.5s ease-out;
}

/* Responsividade: No desktop fica num cantinho discreto */
@media (min-width: 768px) {
    .cookie-banner {
        max-width: 400px; /* Largura fixa no PC */
        left: auto; /* Cola na direita */
        right: 30px;
        bottom: 30px;
    }
}

.cookie-content p {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.btn-cookie {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    width: 100%;
    transition: filter 0.2s;
}

.btn-cookie:hover {
    filter: brightness(1.1);
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}