/* ============================================
   BOMBARMUSIC.COM - ESTILOS GLOBAIS COMPLETOS
   ============================================ */

:root {
    --primary: #ff4d4d;
    --primary-dark: #e63939;
    --secondary: #6c5ce7;
    --whatsapp: #25d366;
    --bg: #fafafa;
    --white: #ffffff;
    --text: #1a1a1a;
    --gray: #666;
    --border: #e8e8e8;
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.5; 
}

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

/* ========== MENU ========== */
nav { background: rgba(255,255,255,0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); height: 60px; display: flex; align-items: center; }
.nav-content { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { font-size: 1.3rem; font-weight: 800; text-decoration: none; color: var(--text); display: flex; align-items: center; gap: 8px; }
.logo .icon { background: linear-gradient(135deg, #ff4d4d, var(--secondary)); color: #fff; width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.logo span { background: linear-gradient(135deg, #ff4d4d, var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.85rem; padding: 10px 16px; border-radius: 10px; transition: .2s; white-space: nowrap; font-weight: 500; }
.nav-links .dropdown > a { text-decoration: none; color: var(--text); font-size: 0.85rem; padding: 10px 16px; border-radius: 10px; transition: .2s; white-space: nowrap; font-weight: 500; cursor: pointer; }
.nav-links a:hover, .nav-links .dropdown > a:hover { background: #fff0f0; color: var(--primary); }
.btn-wa { background: var(--whatsapp); color: #fff !important; border-radius: 40px; font-weight: 700; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.btn-wa:hover { background: #128C7E !important; transform: translateY(-1px); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); border-radius: 14px; min-width: 240px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); padding: 8px 0; z-index: 200; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 11px 20px; font-size: 0.82rem; color: var(--text); text-decoration: none; border-radius: 0; white-space: nowrap; }
.dropdown-menu a:hover { background: #f5f5f5; color: var(--primary); }

/* ========== BREADCRUMB ========== */
.migalha { padding: 18px 0 8px; font-size: 0.8rem; color: #888; }
.migalha a { color: var(--primary); text-decoration: none; }

/* ========== BANNER 24H ========== */
.banner-24h { background: linear-gradient(135deg, #2d3436, #636e72); color: #fff; text-align: center; padding: 14px 20px; border-radius: 16px; margin: 20px 0; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 12px; }
.banner-24h .pulse { width: 12px; height: 12px; background: #00b894; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,184,148,0.6); } 70% { box-shadow: 0 0 0 12px rgba(0,184,148,0); } 100% { box-shadow: 0 0 0 0 rgba(0,184,148,0); } }

/* ========== HERO ========== */
.hero { text-align: center; padding: 40px 16px; margin: 24px 0; background: linear-gradient(135deg, #fff5f0, #ffffff); border-radius: 20px; }
.hero h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; color: #1a1a1a; }
.hero em { color: var(--primary); font-style: normal; }
.hero p { font-size: 1rem; color: #444; max-width: 650px; margin: 0 auto; }
.hero .badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.hero .badge, .badge-row .badge { background: white; padding: 6px 14px; border-radius: 30px; font-size: 0.75rem; color: #555; border: 1px solid #e0e0e0; }
.badge-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 18px; }

/* ========== SEÇÕES ========== */
.section-title { text-align: center; font-size: 1.5rem; margin: 40px 0 8px; color: #1a1a1a; }
.section-sub { text-align: center; color: #777; margin-bottom: 25px; font-size: 0.85rem; }

/* ========== SERVIÇOS ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; margin: 30px 0; }
.service-card { background: var(--white); border-radius: 22px; border: 1px solid var(--border); overflow: hidden; transition: .3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-header { padding: 20px 24px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid #f5f5f5; }
.service-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; }
.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743); }
.fb { background: linear-gradient(135deg, #1877f2, #0d5dc2); }
.yt { background: linear-gradient(135deg, #ff0000, #cc0000); }
.tt { background: linear-gradient(135deg, #111, #333); }
.kw { background: linear-gradient(135deg, #ff6600, #ff3300); }
.service-name { font-weight: 700; font-size: 1.15rem; }
.service-body { padding: 18px 24px; }
.service-body ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.service-body li { background: #f8f8f8; padding: 9px 16px; border-radius: 25px; font-size: 0.82rem; }
.service-body li a { color: var(--primary); text-decoration: none; font-weight: 600; }
.service-footer { padding: 14px 24px; background: #fafafa; border-top: 1px solid #f5f5f5; display: flex; justify-content: space-between; align-items: center; }
.btn-service { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; text-decoration: none; padding: 10px 24px; border-radius: 30px; font-size: 0.82rem; font-weight: 700; }
.btn-service-outline { display: inline-block; background: transparent; color: var(--primary); border: 2px solid var(--primary); text-decoration: none; padding: 8px 20px; border-radius: 30px; font-size: 0.78rem; font-weight: 700; }

/* ========== CARDS DE PREÇOS ========== */
.cards-scroll { display: flex; gap: 16px; overflow-x: auto; padding: 20px 4px 30px; scroll-snap-type: x mandatory; }
.cards-scroll::-webkit-scrollbar { height: 6px; }
.cards-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.card { flex: 0 0 260px; scroll-snap-align: start; background: white; border-radius: 20px; text-align: center; border: 1px solid #e0e0e0; padding-bottom: 16px; position: relative; transition: 0.2s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.card.popular { border: 2px solid var(--primary); }
.card .tag { position: absolute; top: -14px; right: 12px; background: var(--primary); color: white; font-size: 0.7rem; font-weight: bold; padding: 5px 14px; border-radius: 30px; z-index: 15; box-shadow: 0 2px 8px rgba(0,0,0,0.15); white-space: nowrap; }
.card .top { background: var(--primary); color: white; font-size: 0.65rem; font-weight: 600; padding: 6px; text-align: center; border-radius: 20px 20px 0 0; }
.card .body { padding: 16px 12px 20px; }
.card .qty { font-size: 0.8rem; color: #555; font-weight: 500; }
.card .num { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin: 5px 0; }
.card .price { font-size: 1.3rem; font-weight: 700; color: #1a1a1a; margin: 8px 0; }
.card .time { background: #e8f5e9; color: #2e7d32; font-size: 0.65rem; padding: 3px 8px; border-radius: 30px; display: inline-block; margin-bottom: 12px; }
.card ul { list-style: none; margin: 12px 0; font-size: 0.7rem; color: #444; }
.card ul li { padding: 4px 0; display: flex; align-items: center; justify-content: center; gap: 6px; }
.card ul li::before { content: "✓"; color: var(--primary); font-weight: bold; }
.card .btn { display: block; width: 90%; margin: 12px auto 0; padding: 10px 5px; background: linear-gradient(90deg, #25d366, #128C7E); color: white; border: none; border-radius: 40px; font-weight: 700; font-size: 0.8rem; cursor: pointer; }

/* ========== BENEFÍCIOS ========== */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; background: white; border-radius: 20px; padding: 32px 24px; margin: 40px 0; border: 1px solid #e0e0e0; text-align: center; }
.benefits .bf-item { padding: 12px; }
.benefits .bf-item h4 { color: var(--primary); font-size: 0.9rem; margin: 6px 0; }
.benefits .bf-item p { font-size: 0.75rem; color: #666; }
.benefits .bf-icon { font-size: 1.8rem; margin-bottom: 8px; }

/* ========== STEPS ========== */
.steps { background: white; border-radius: 20px; padding: 32px 24px; margin: 40px 0; border: 1px solid #e0e0e0; }
.steps-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; text-align: center; }
.steps-grid .st { flex: 1; min-width: 160px; padding: 16px; }
.steps-grid .st-num { width: 45px; height: 45px; background: var(--primary); color: white; font-size: 1.3rem; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.steps-grid .st h4 { font-size: 0.9rem; margin-bottom: 6px; color: #1a1a1a; }
.steps-grid .st p { font-size: 0.75rem; color: #444; }

/* ========== GARANTIA ========== */
.guarantee { background: #fff5f0; text-align: center; padding: 25px; border-radius: 20px; margin: 40px 0; border: 2px solid #fdd; }
.guarantee h3 { color: var(--primary-dark); margin-bottom: 8px; }
.guarantee p { color: #444; font-size: 0.9rem; }

/* ========== POR QUE COMPRAR ========== */
.why-us { margin: 55px 0; }
.why-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 25px; }
.why-card { flex: 0 1 200px; min-width: 180px; max-width: 220px; background: var(--white); border-radius: 22px; padding: 30px 22px; text-align: center; border: 1px solid var(--border); transition: .3s; position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-card .why-icon { font-size: 2.5rem; margin-bottom: 14px; }
.why-card h3 { color: var(--text); font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: var(--gray); font-size: 0.85rem; }

/* ========== DEPOIMENTOS ========== */
.testimonials { margin: 40px 0; }
.testimonials h2 { text-align: center; font-size: 1.5rem; color: #1a1a1a; margin-bottom: 6px; }
.dep-scroll { display: flex; gap: 16px; overflow-x: auto; padding: 10px 4px 20px; scroll-snap-type: x mandatory; cursor: grab; user-select: none; }
.dep-scroll::-webkit-scrollbar { height: 6px; }
.dep-scroll::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }
.dep-scroll:active { cursor: grabbing; }
.dep { flex: 0 0 300px; min-width: 280px; scroll-snap-align: start; background: white; border-radius: 20px; padding: 18px; border: 1px solid #e0e0e0; }
.dep .dep-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.dep .dep-avatar { width: 45px; height: 45px; background: linear-gradient(135deg, var(--primary), #333); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; }
.dep .stars { color: #ffc107; font-size: 0.75rem; margin-bottom: 8px; }
.dep .dep-text { font-size: 0.75rem; color: #444; font-style: italic; }

/* ========== FAQ ========== */
.faq-section { margin: 55px 0; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 18px; margin: 20px 0 40px; }
.faq-item { background: var(--white); border-radius: 18px; padding: 20px; border: 1px solid #e0e0e0; }
.faq-item .q { font-weight: 700; color: var(--primary); font-size: 0.95rem; margin-bottom: 10px; }
.faq-item .a { font-size: 0.85rem; color: #444; line-height: 1.45; }

/* ========== BLOG ========== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin: 30px 0; }
.blog-card { background: var(--white); border-radius: 22px; padding: 26px; border: 1px solid var(--border); text-decoration: none; color: inherit; transition: .3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card h3 { color: var(--text); font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { color: var(--gray); font-size: 0.85rem; }
.blog-card .ler { color: var(--primary); font-weight: 700; margin-top: 14px; display: inline-block; font-size: 0.85rem; }

/* ========== CTA ========== */
.cta { background: linear-gradient(135deg, #2d3436, #434a54); color: #fff; text-align: center; padding: 50px 24px; border-radius: 28px; margin: 55px 0; }
.cta h2 { font-size: 1.5rem; margin-bottom: 10px; }
.btn-cta { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; padding: 15px 38px; border-radius: 40px; text-decoration: none; font-weight: 700; font-size: 1rem; display: inline-block; }

/* ========== POPUPS ========== */
.popup-bg { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.75); z-index: 2000; justify-content: center; align-items: center; }
.popup-bg.on { display: flex; }
.popup { background: white; border-radius: 24px; padding: 30px; max-width: 440px; width: 92%; max-height: 90vh; overflow-y: auto; position: relative; animation: aparecer 0.3s ease; }
@keyframes aparecer { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.popup .close { position: absolute; top: 14px; right: 18px; font-size: 1.4rem; cursor: pointer; color: #aaa; background: none; border: none; }
.popup h3 { color: var(--primary); margin-bottom: 20px; text-align: center; font-size: 1.3rem; }
.popup .info { background: #f8f9ff; padding: 12px; border-radius: 12px; text-align: center; font-weight: 700; color: var(--primary); margin-bottom: 18px; }
.popup label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; color: #555; }
.popup input { width: 100%; padding: 12px; border-radius: 12px; border: 1px solid #ddd; font-size: 0.9rem; margin-bottom: 12px; }
.popup input:focus { outline: none; border-color: var(--primary); }
.popup .err { color: #e74c3c; font-size: 0.7rem; margin-top: -8px; margin-bottom: 8px; display: none; }
.popup .btn-main { width: 100%; padding: 14px; border: none; border-radius: 40px; font-weight: 700; font-size: 1rem; cursor: pointer; margin-top: 8px; transition: 0.2s; }
.btn-green { background: #25d366; color: white; }
.btn-green:hover { background: #128C7E; }
.btn-gray { background: #e0e0e0; color: #333; }
.pix-box { text-align: center; }
.pix-box .amount { font-size: 2rem; font-weight: 800; color: #25d366; margin: 10px 0; }
.pix-box pre { background: #f5f5f5; padding: 16px; border-radius: 16px; font-size: 0.6rem; word-break: break-all; white-space: pre-wrap; max-height: 150px; overflow: auto; text-align: left; font-family: monospace; margin: 15px 0; }
.pix-box .btn-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 15px; }
.pix-box .btn-row button, .pix-box .btn-row a { flex: 1; min-width: 120px; text-align: center; padding: 12px; border-radius: 40px; font-weight: 700; font-size: 0.85rem; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-blue { background: var(--primary); color: #fff; }
.confirm-box { text-align: center; }
.confirm-box .chk { font-size: 4rem; margin-bottom: 10px; }
.confirm-box .oid { background: #f8f9ff; padding: 8px 16px; border-radius: 12px; display: inline-block; font-weight: 700; color: var(--primary); margin: 10px 0; font-size: 0.9rem; }
.confirm-box .details { background: #f9f9f9; padding: 16px; border-radius: 14px; margin: 16px 0; text-align: left; font-size: 0.85rem; line-height: 1.6; }
.confirm-box .note { background: #fffbf0; border: 1px solid #ffc107; padding: 12px; border-radius: 12px; margin: 14px 0; font-size: 0.8rem; color: #856404; }
.confirm-box .btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.confirm-box .btn-row a, .confirm-box .btn-row button { flex: 1; min-width: 120px; text-align: center; padding: 12px; border-radius: 40px; font-weight: 700; font-size: 0.85rem; cursor: pointer; text-decoration: none; display: inline-block; }

/* ========== RODAPÉ ========== */
footer { text-align: center; padding: 24px; border-top: 1px solid #e0e0e0; margin-top: 40px; color: #555; font-size: 0.7rem; background: white; }
footer a { color: var(--primary); text-decoration: none; margin: 0 10px; }

/* ========== WHATSAPP FLUTUANTE ========== */
.wa-float { position: fixed; bottom: 20px; right: 20px; background: #25d366; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 99; font-size: 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.2); text-decoration: none; color: white; animation: float 2s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.wa-float:hover { transform: scale(1.08); }

/* ========== RESPONSIVO ========== */
@media (max-width: 900px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 16px; right: 16px; background: #fff; padding: 16px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); z-index: 150; }
    .nav-links.on { display: flex; }
    .mobile-menu-btn { display: block; }
    .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; display: none; }
    .dropdown.open .dropdown-menu { display: block; }
    .hero h1 { font-size: 1.4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .dep { flex: 0 0 85%; }
    .steps-grid { flex-direction: column; align-items: center; }
}