/* =============================================
   RESET, BASE & NOVA ESTÉTICA DE FUNDO
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Inter', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    padding-bottom: 5rem;
    -webkit-font-smoothing: antialiased;
    position: relative;
    
    /* 1. Fundo Base Escuro */
    background-color: #0e0e11;
    
    /* 2. Fade Roxo Neon (canto superior) + toque verde no inferior */
    background-image: 
        radial-gradient(circle at 15% 0%, rgba(139, 92, 246, 0.18) 0%, rgba(14, 14, 17, 0) 55%),
        radial-gradient(circle at 85% 100%, rgba(34, 197, 94, 0.08) 0%, rgba(14, 14, 17, 0) 45%);
}

/* 3. Linhas Suaves de Fundo (Overlay Grid tênue) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.025;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(139, 92, 246, 0.6) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(139, 92, 246, 0.6) 1px, transparent 1px);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* =============================================
   LAYOUT & CONTAINER
   ============================================= */
.page-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-content {
    width: 100%;
}

/* =============================================
   HEADER / LOGO (AGORA NEON GREEN)
   ============================================= */
.header-logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0 24px;
    text-align: center;
    width: 100%;
}

.logo-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    background-color: #1c1c1e;
    
    /* Borda Roxa Neon */
    border: 3px solid rgba(139, 92, 246, 0.5); 
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.25); 
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.625rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.site-subtitle {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.5;
    max-width: 420px;
    font-weight: 400;
    padding: 0 16px;
}

/* =============================================
   CAROUSEL (BORDAS AJUSTADAS)
   ============================================= */
.section-carousel {
    width: 100%;
    margin-bottom: 24px;
}

.carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 0 4px;
}

.carousel-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e; /* Verde Status Online */
    animation: pulse-anim 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-anim {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.carousel-hint {
    font-size: 0.625rem;
    color: #6b7280;
    animation: pulse-anim 2s ease-in-out infinite;
}

.carousel-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    background-color: #1c1c1e;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 240px;
    scroll-snap-align: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

/* Bordas coloridas mantidas conforme original */
.carousel-item:nth-child(1) { border: 1px solid rgba(234, 179, 8, 0.3); }
.carousel-item:nth-child(2) { border: 1px solid rgba(34, 197, 94, 0.3); }
.carousel-item:nth-child(3) { border: 1px solid rgba(6, 182, 212, 0.3); } /* Cyan Magalu */
.carousel-item:nth-child(4) { border: 1px solid rgba(239, 68, 68, 0.4); }

.carousel-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 2px 8px;
    border-bottom-left-radius: 8px;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.badge-yellow { background-color: #ca8a04; color: #000; }
.badge-green  { background-color: #16a34a; color: #fff; }
.badge-cyan   { background-color: #0891b2; color: #fff; } /* Cyan Magalu */
.badge-red    { background-color: #dc2626; color: #fff; }

.carousel-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #374151;
    flex-shrink: 0;
}

.carousel-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.carousel-product-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 6px;
}

.carousel-category {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
    margin-bottom: 4px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.price-new {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
}

.price-old {
    font-size: 0.5625rem;
    color: #6b7280;
    text-decoration: line-through;
}

.tag {
    font-size: 0.5625rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 2px;
}

.tag-green {
    color: #4ade80;
    background-color: rgba(21, 128, 61, 0.2);
    border: 1px solid rgba(21, 128, 61, 0.3);
}

.tag-yellow {
    color: #fbbf24;
    background-color: rgba(120, 53, 15, 0.3);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

/* =============================================
   CHANNEL CARDS (ACORDEÕES) -> AGORA NEON
   ============================================= */
.channels-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.channel-card {
    background-color: #1c1c1e;
    border: 1px solid #2c2c2e;
    border-radius: 24px;
    width: 100%;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.channel-card:hover {
    /* Hover Roxo Neon */
    border-color: #a78bfa; 
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2); 
}

.channel-header {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px;
    transition: background-color 0.2s ease;
    outline: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.channel-header:hover,
.channel-header:focus-visible {
    background-color: #252527;
}

.channel-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    margin-left: 4px;
    flex-shrink: 0;
}

.channel-info {
    flex: 1;
    text-align: left;
    margin-left: 16px;
}

.channel-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.channel-header:hover .channel-name,
.channel-header[aria-expanded="true"] .channel-name {
    /* Texto Verde Neon quando abre */
    color: #86efac; 
}

.channel-desc {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 2px;
}

.channel-action {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 12px;
    flex-shrink: 0;
}

.ver-links-badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    
    /* Badge Verde Neon */
    color: #86efac; 
    background-color: rgba(16, 163, 74, 0.2); 
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.4); 
    
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.chevron-icon {
    color: #9ca3af;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chevron-icon.rotated {
    transform: rotate(180deg);
    /* Setinha Verde Neon ao abrir */
    color: #86efac; 
}

/* =============================================
   ACCORDION CONTENT BASE
   ============================================= */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.accordion-content.open {
    /* Aumentado para acomodar FAQ longo do Mago Cupons */
    max-height: 800px; 
}

/* =============================================
   SOCIAL BUTTONS
   ============================================= */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    gap: 0;
}

.social-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.social-icon {
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.social-title {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    padding-right: 40px;
}

.btn-whatsapp {
    background-color: rgba(21, 128, 61, 0.35);
    color: #86efac;
    border: 1px solid rgba(21, 128, 61, 0.3);
}

.btn-telegram {
    background-color: rgba(29, 78, 216, 0.35);
    color: #93c5fd;
    border: 1px solid rgba(29, 78, 216, 0.3);
}

/* =============================================
   POR QUE SEGUIR SEÇÃO -> ÍCONES NEON
   ============================================= */
.why-section {
    width: 100%;
    margin: 32px 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-card {
    background-color: #1c1c1e;
    border: 1px solid #2c2c2e;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-icon {
    padding: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícones padrão transformados para Verde Neon */
.icon-neon   { background-color: rgba(16, 163, 74, 0.2); color: #22c55e; } 
.icon-green  { background-color: rgba(21, 128, 61, 0.3); color: #22c55e; }
.icon-yellow { background-color: rgba(120, 53, 15, 0.3); color: #eab308; }

.why-title {
    font-size: 0.875rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.why-desc {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.5;
}

/* =============================================
   FAQ SEÇÃO -> AGORA NEON
   ============================================= */
.faq-section {
    width: 100%;
    margin: 48px 0 32px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.faq-card {
    background-color: #1c1c1e;
    border: 1px solid #2c2c2e;
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    /* Hover Roxo Neon */
    border-color: #a78bfa; 
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2); 
}

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: #1c1c1e;
    transition: background-color 0.2s ease;
    text-align: left;
    gap: 12px;
    outline: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-header:hover,
.faq-header:focus-visible {
    background-color: #252527;
}

.faq-header span {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.faq-header:hover span,
.faq-header[aria-expanded="true"] span {
    /* Texto Verde Neon ao abrir */
    color: #86efac; 
}

.faq-answer {
    padding: 16px;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.65;
    border-top: 1px solid #2c2c2e;
}

.faq-answer strong {
    color: #d1d5db;
}

.faq-list-items {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* =============================================
   RESPONSIVE (FONTES E CAROUSEL)
   ============================================= */
@media (max-width: 480px) {
    .page-wrapper {
        padding: 0 16px;
    }

    .site-title {
        font-size: 1.375rem;
    }

    .carousel-item {
        width: 210px;
    }

    .channel-name {
        font-size: 0.9375rem;
    }
}

@media (min-width: 540px) {
    .carousel-item {
        width: 260px;
    }
}
/* =============================================
   FOOTER (RODAPÉ)
   ============================================= */
.site-footer {
    width: 100%;
    padding: 40px 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.6; /* Deixa o texto mais discreto */
}

.site-footer p {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.4;
}

/* Um detalhe opcional: se quiser que o ano brilhe levemente em verde */
.site-footer p:first-child {
    color: #c4b5fd;
    font-weight: 500;
}