/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e4e4e7;
    background: #0a0a0b;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Imagens responsivas otimizadas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Otimização específica para imagens críticas */
.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

/* Logo responsivo */
.logo img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 50px;
}

@media (max-width: 768px) {
    .logo img {
        max-width: 120px;
        max-height: 40px;
    }
    
    .hero-image img {
        max-width: 100%;
        width: 100%;
    }
}

/* Grid Responsivo */
.grid-1col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

/* Responsividade do Grid - PADRÃO 3-2-1 */
@media (max-width: 1024px) {
    .grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-3col,
    .grid-2col {
        grid-template-columns: 1fr;
    }
}

/* Header */
header {
    background: #111113;
    border-bottom: 1px solid #27272a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #e4e4e7;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: #e4e4e7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #22c55e;
}

/* Botões */
.btn-primary,
.btn-secondary,
.btn-plan,
.btn-footer,
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary,
.cta-button {
    background: #22c55e;
    color: #0a0a0b;
}

.btn-primary:hover,
.btn-primary:focus,
.cta-button:hover,
.cta-button:focus {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #e4e4e7;
    border-color: #3f3f46;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: #3f3f46;
    border-color: #52525b;
}

.btn-plan {
    background: #1d4ed8;
    color: #ffffff;
    width: 100%;
}

.btn-plan:hover,
.btn-plan:focus {
    background: #1e40af;
    transform: translateY(-2px);
}

.btn-footer {
    background: #22c55e;
    color: #0a0a0b;
    font-size: 14px;
    padding: 12px 24px;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Seções */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: #111113;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0a0a0b 0%, #111113 100%);
    padding: 120px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #a1a1aa;
    margin-bottom: 40px;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Títulos de Seção */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #f4f4f5;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #f4f4f5;
}

/* Cards */
.benefit-card,
.plan-card,
.app-item,
.category-item {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover,
.plan-card:hover,
.app-item:hover,
.category-item:hover {
    border-color: #22c55e;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Ícones SVG com cores específicas */
.benefit-card img,
.app-item img,
.category-item img,
.step img,
.stat-item img {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Cores específicas para benefícios */
.benefit-card img[alt*="Qualidade"],
.benefit-card img[src*="4k"] {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); /* Vermelho */
}

.benefit-card img[alt*="Compatibilidade"],
.benefit-card img[src*="teste-iptv-compativel-diversos-dispositivos"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(245deg) brightness(103%) contrast(101%); /* Azul */
}

.benefit-card img[alt*="Suporte"],
.benefit-card img[src*="suporte-teste-iptv-automatizado-24-horas"] {
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%); /* Verde */
}

.benefit-card img[alt*="Instalação"],
.benefit-card img[src*="configuracao-teste-iptv-facil"] {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); /* Verde claro */
}

.benefit-card img[alt*="Conteúdo"],
.benefit-card img[src*="diversos-canais-teste-iptv"] {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(119%) contrast(119%); /* Verde escuro */
}

.benefit-card img[alt*="Travamentos"],
.benefit-card img[src*="conexao-teste-iptv-estavel"] {
    filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(3166%) hue-rotate(78deg) brightness(119%) contrast(109%); /* Amarelo */
}

/* Cores para categorias */
.category-item img[alt*="Filmes"],
.category-item img[src*="raio"] {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); /* Vermelho */
}

.category-item img[alt*="Esportes"],
.category-item img[src*="futebol"] {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); /* Verde */
}

.category-item img[alt*="Notícias"],
.category-item img[src*="news"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(245deg) brightness(103%) contrast(101%); /* Azul */
}

.category-item img[alt*="Séries"],
.category-item img[src*="series"] {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(119%) contrast(119%); /* Verde escuro */
}

.category-item img[alt*="Canais"],
.category-item img[src*="relogio"] {
    filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(3166%) hue-rotate(78deg) brightness(119%) contrast(109%); /* Amarelo */
}

.category-item img[alt*="Outros"],
.category-item img[src*="play"] {
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%); /* Verde claro */
}

/* Cores para steps */
.step img[alt*="Passo 1"],
.step img[src*="teste-iptv-whatsapp"] {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); /* Verde */
}

.step img[alt*="Passo 2"],
.step img[src*="teste-iptv-automatico"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(245deg) brightness(103%) contrast(101%); /* Azul */
}

.step img[alt*="Passo 3"],
.step img[src*="teste-iptv-4-horas"] {
    filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(3166%) hue-rotate(78deg) brightness(119%) contrast(109%); /* Amarelo */
}

.step img[alt*="Passo 4"],
.step img[src*="chat"] {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); /* Vermelho */
}

/* Cores para planos */
.plan-card img[src*="30-dias"] {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); /* Verde */
}

.plan-card img[src*="90-dias"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(245deg) brightness(103%) contrast(101%); /* Azul */
}

.plan-card img[src*="180-dias"] {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); /* Vermelho */
}

/* Cores para estatísticas */
.stat-item img[src*="avaliacoes"] {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); /* Verde */
}

.stat-item img[src*="conexao"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(245deg) brightness(103%) contrast(101%); /* Azul */
}

.stat-item img[src*="24-horas"] {
    filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(3166%) hue-rotate(78deg) brightness(119%) contrast(109%); /* Amarelo */
}

/* Cores para aplicativos */
.app-item img[src*="IPTV SmartersPlayer"] {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); /* Vermelho */
}

.app-item img[src*="TiviMate"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(245deg) brightness(103%) contrast(101%); /* Azul */
}

.app-item img[src*="GSE Smart"] {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); /* Verde */
}

.app-item img[src*="aplicativo-xci"] {
    filter: brightness(0) saturate(100%) invert(58%) sepia(14%) saturate(3166%) hue-rotate(78deg) brightness(119%) contrast(109%); /* Amarelo */
}

.app-item img[src*="kodai"] {
    filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg) brightness(119%) contrast(119%); /* Verde escuro */
}

.app-item img[src*="vlc"] {
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%); /* Verde claro */
}

.app-item img[src*="OTTPlayer"] {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); /* Vermelho */
}

.app-item img[src*="Perfect Player"] {
    filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7151%) hue-rotate(245deg) brightness(103%) contrast(101%); /* Azul */
}

.app-item img[src*="ssiptv"] {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%); /* Verde */
}

/* Hover effects */
.benefit-card:hover img,
.category-item:hover img,
.step:hover img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%) !important;
}

.app-item:hover img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%) !important;
}

.plan-card.featured {
    border-color: #22c55e;
    position: relative;
}

.plan-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: #0a0a0b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-card ul {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.plan-card li {
    padding: 8px 0;
    border-bottom: 1px solid #27272a;
    position: relative;
    padding-left: 24px;
}

.plan-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Steps */
.step {
    text-align: center;
    padding: 32px;
    background: #18181b;
    border-radius: 12px;
    border: 1px solid #27272a;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    border-color: #22c55e;
}

.step img {
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.step:hover img {
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%);
}

/* Apps */
.apps-disclaimer {
    text-align: center;
    font-size: 1.1rem;
    color: #fbbf24;
    margin-bottom: 40px;
    padding: 16px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, #18181b, #1a1a1d);
    border-radius: 16px;
    border: 1px solid #27272a;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-item h3 {
    font-size: 2.8rem;
    color: #22c55e;
    margin-bottom: 8px;
    font-weight: 900;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.stat-item h3.animating {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    animation: pulse 0.5s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { 
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    }
    100% { 
        transform: scale(1.1);
        text-shadow: 0 0 40px rgba(34, 197, 94, 0.8);
    }
}

/* Animação de entrada para os stats */
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Delay escalonado para cada stat */
.stat-item:nth-child(1).animate-in { transition-delay: 0.1s; }
.stat-item:nth-child(2).animate-in { transition-delay: 0.3s; }
.stat-item:nth-child(3).animate-in { transition-delay: 0.5s; }
.stat-item:nth-child(4).animate-in { transition-delay: 0.7s; }

.stat-item p {
    color: #d1d5db;
    font-weight: 600;
    font-size: 1rem;
}

.stat-item img {
    margin-bottom: 16px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%);
}

.stat-item:hover img {
    transform: scale(1.1);
}

/* Depoimentos */
.testimonials {
    background: linear-gradient(135deg, #0f0f10 0%, #111113 50%, #0f0f10 100%);
}

.section-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: linear-gradient(145deg, #18181b, #1a1a1d);
    border: 1px solid #27272a;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.testimonial-card img {
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%);
}

.testimonial-card p {
    font-style: italic;
    color: #d1d5db;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-card h3 {
    color: #f4f4f5;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.testimonial-card span {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* CTA Final melhorada */
.final-cta {
    background: linear-gradient(135deg, #0a0a0b 0%, #111113 50%, #0a0a0b 100%);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content img {
    margin-bottom: 30px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(85%) saturate(2274%) hue-rotate(95deg) brightness(103%) contrast(89%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.cta-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons img {
    filter: brightness(0) invert(1);
}

/* FAQ */
.faq-list {
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, #18181b, #1a1a1d);
    border: 1px solid #27272a;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #22c55e, #16a34a);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    border-color: #22c55e;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item.active {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.faq-item.active::before {
    transform: scaleY(1);
}

.faq-item h3 {
    color: #22c55e;
    margin: 0;
    padding: 24px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.faq-item h3:hover {
    background: rgba(34, 197, 94, 0.1);
}

.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: #22c55e;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 24px 24px 24px;
}

.faq-item p {
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* CTA Sections */
.final-cta,
.hero {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* Institutional */
.institutional-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
}

.institutional-links a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

.institutional-links a:hover,
.institutional-links a:focus {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #0a0a0b;
    border-top: 1px solid #27272a;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.footer-info img {
    margin-bottom: 16px;
    max-height: 40px;
    width: auto;
}

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

.footer-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

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

/* Páginas Internas */
.page-header {
    background: #111113;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #f4f4f5;
}

.breadcrumb {
    margin-top: 20px;
}

.breadcrumb a {
    color: #22c55e;
    text-decoration: none;
}

.content {
    padding: 60px 0;
}

.policy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2,
.terms-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin: 40px 0 20px;
    color: #22c55e;
}

.policy-content ul,
.terms-content ul {
    margin: 16px 0 16px 32px;
}

.policy-content a,
.terms-content a {
    color: #22c55e;
    text-decoration: none;
}

.policy-content a:hover,
.policy-content a:focus,
.terms-content a:hover,
.terms-content a:focus {
    text-decoration: underline;
}

.policy-footer,
.terms-footer {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 8px;
    padding: 32px;
    margin-top: 40px;
    text-align: center;
}

.back-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111113;
        border-top: 1px solid #27272a;
        padding: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    
    .institutional-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .back-links {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }
    
    .cta-content img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .benefit-card,
    .plan-card,
    .step {
        padding: 24px;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}