/* ============================================================
   promocion.css — Estilos del Sistema de Ventas y Promoción
   Red de Medios: Intlax | Avance Noticias | Intlax Noticias
   ============================================================ */

/* --- Variables --- */
:root {
    --dark:       #0d0d0d;
    --dark-2:     #141414;
    --dark-card:  #1a1a1a;
    --border:     #2a2a2a;
    --yellow:     #FFD700;
    --yellow-dim: #b89a00;
    --text:       #f0f0f0;
    --text-muted: #888;
    --red:        #e63946;
    --green:      #2ec4b6;
    --font-head:  'Anton', sans-serif;
    --font-body:  'Montserrat', sans-serif;
    --radius:     12px;
    --shadow:     0 8px 32px rgba(0,0,0,0.5);
    --glow:       0 0 20px rgba(255,215,0,0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: .3s; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; }

/* --- HEADER --- */
header {
    background-color: var(--dark-bg, #111);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #222;
}

.logo-font { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 1px; text-decoration: none; color: inherit; }
.logo-font span { color: var(--yellow); }

.menu-btn {
    font-size: 1.8rem;
    color: var(--yellow);
    cursor: pointer;
    z-index: 1002;
    transition: 0.3s;
}
.menu-btn:hover { color: white; }

.desktop-menu { display: none; }
.desktop-menu ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 30px; align-items: center;
}
.desktop-menu ul li a {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.desktop-menu ul li a.text-yellow { color: var(--yellow); }
.desktop-menu ul li a:hover { color: var(--yellow); }

@media (min-width: 768px) {
    .menu-btn { display: none !important; }
    .desktop-menu { display: block; }
}

.nav-menu {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background-color: #0c0c0c; display: flex; flex-direction: column;
    justify-content: center; align-items: center; transition: 0.4s ease-in-out;
    z-index: 1001; box-shadow: -5px 0 30px rgba(0,0,0,0.9);
    border-left: 2px solid var(--yellow);
}
.nav-menu.active { right: 0; }
.nav-menu ul { list-style: none; padding: 0; }
.nav-menu ul li { margin: 25px 0; text-align: center; }
.nav-menu ul li a {
    font-size: 1.5rem; font-family: var(--font-head); text-transform: uppercase;
    letter-spacing: 2px; color: white; text-decoration: none;
}
.nav-menu ul li a:hover { color: var(--yellow); }
.text-yellow { color: var(--yellow); }

.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 999;
    opacity: 0; visibility: hidden; transition: 0.3s;
    backdrop-filter: blur(4px);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* --- HERO --- */
.prom-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1400 50%, #0d0d0d 100%);
    padding: 80px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.prom-hero::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,215,0,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.prom-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 16px;
}
.prom-hero h1 span { color: var(--yellow); }
.hero-sub {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

/* --- Logos de marcas --- */
.marcas-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px auto 20px;
    max-width: 800px;
}
.marca-badge {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 12px 28px;
    font-family: var(--font-head);
    font-size: .9rem;
    letter-spacing: 2px;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 10px;
}
.marca-badge:hover { border-color: var(--yellow); box-shadow: var(--glow); }
.marca-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }

/* Estadísticas rápidas */
.stats-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto 0;
    max-width: 700px;
    padding: 30px;
    background: var(--dark-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--yellow);
    display: block;
}
.stat-label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- CONTENEDOR COTIZADOR --- */
.cotizador-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}
.cotizador-section > h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 8px;
}
.cotizador-section > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* --- Indicador de pasos --- */
.pasos-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
}
.paso-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    flex: 1;
    max-width: 120px;
}
.paso-item::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--border);
    z-index: 0;
    transition: .5s;
}
.paso-item:last-child::after { display: none; }
.paso-item.done::after { background: var(--yellow); }

.paso-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: .9rem;
    background: var(--dark-card);
    border: 2px solid var(--border);
    transition: .4s;
    position: relative;
    z-index: 1;
}
.paso-item.active .paso-num { border-color: var(--yellow); color: var(--yellow); box-shadow: var(--glow); }
.paso-item.done   .paso-num { background: var(--yellow); color: #000; border-color: var(--yellow); }
.paso-label { font-size: .65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; text-align: center; line-height: 1.3; }
.paso-item.active .paso-label { color: var(--yellow); }

/* --- Paneles de pasos --- */
.paso-panel {
    display: none;
    animation: fadeIn .4s ease;
}
.paso-panel.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.panel-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}
.panel-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.panel-card h3 span { color: var(--yellow); }
.panel-desc { color: var(--text-muted); font-size: .9rem; margin-bottom: 28px; }

/* --- Selector de zona --- */
.zona-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.zona-card {
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    cursor: pointer;
    transition: .3s;
    text-align: center;
}
.zona-card:hover { border-color: var(--yellow-dim); }
.zona-card.selected { border-color: var(--yellow); box-shadow: var(--glow); }
.zona-icon { font-size: 2.5rem; margin-bottom: 12px; }
.zona-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.zona-card p { font-size: .8rem; color: var(--text-muted); }

/* --- Selector de plataformas --- */
.plataformas-grupo { margin-bottom: 28px; }
.plataforma-grupo-titulo {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.plataformas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.plat-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 8px 18px;
    cursor: pointer;
    transition: .25s;
    font-size: .82rem;
    user-select: none;
}
.plat-chip:hover { border-color: var(--yellow-dim); }
.plat-chip.selected { border-color: var(--yellow); background: rgba(255,215,0,0.08); color: var(--yellow); }
.plat-check { font-size: .75rem; opacity: 0; transition: .2s; }
.plat-chip.selected .plat-check { opacity: 1; }

/* --- Selector de servicios --- */
.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.servicio-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    cursor: pointer;
    transition: .25s;
    position: relative;
}
.servicio-item:hover { border-color: var(--yellow-dim); }
.servicio-item.selected { border-color: var(--yellow); background: rgba(255,215,0,0.05); }
.servicio-icon { font-size: 1.6rem; flex-shrink: 0; }
.servicio-info { flex: 1; }
.servicio-nombre { font-weight: 700; font-size: .92rem; margin-bottom: 2px; }
.servicio-desc { font-size: .75rem; color: var(--text-muted); }
.servicio-precio {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--yellow);
    white-space: nowrap;
    text-align: right;
}
.precio-cot { color: var(--text-muted); font-size: .8rem; }
.servicio-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s;
    font-size: .7rem;
    flex-shrink: 0;
}
.servicio-item.selected .servicio-check { background: var(--yellow); border-color: var(--yellow); color: #000; }

/* --- Paso 4 Resumen y Formulario --- */
.resumen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 640px) { .resumen-grid { grid-template-columns: 1fr; } }

.resumen-box {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.resumen-box h4 { font-size: 1rem; margin-bottom: 16px; color: var(--yellow); }
.resumen-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
}
.resumen-item:last-child { border-bottom: none; }
.resumen-item .label { color: var(--text-muted); }
.resumen-item .val { font-weight: 600; text-align: right; }
.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    font-family: var(--font-head);
    font-size: 1.4rem;
}
.total-line .monto { color: var(--yellow); }

/* --- Formulario del cliente --- */
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.form-field input,
.form-field select {
    width: 100%;
    background: var(--dark-card);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: .9rem;
    transition: .25s;
    outline: none;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--yellow); }
.form-field select option { background: var(--dark-card); }

/* --- Botones --- */
.btn-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 12px;
}
.btn { padding: 13px 28px; border-radius: 8px; font-family: var(--font-body); font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; border: none; transition: .25s; }
.btn-back { background: transparent; border: 1.5px solid var(--border); color: var(--text-muted); }
.btn-back:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-next { background: var(--yellow); color: #000; flex: 1; max-width: 280px; }
.btn-next:hover { background: #e6c200; transform: translateY(-2px); box-shadow: var(--glow); }
.btn-next:disabled { background: var(--border); color: var(--text-muted); cursor: not-allowed; transform: none; box-shadow: none; }
.btn-wa {
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    flex: 1;
    justify-content: center;
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }
.btn-guardar {
    background: transparent;
    border: 1.5px solid var(--yellow);
    color: var(--yellow);
}
.btn-guardar:hover { background: rgba(255,215,0,0.1); }

/* Alerta de éxito */
.success-box {
    display: none;
    background: rgba(46,196,182,.1);
    border: 1.5px solid var(--green);
    border-radius: var(--radius);
    padding: 20px 24px;
    color: var(--green);
    font-size: .9rem;
    margin-top: 16px;
    align-items: center;
    gap: 12px;
}
.success-box.visible { display: flex; }

/* Alerta de error */
.error-msg {
    color: var(--red);
    font-size: .82rem;
    margin-top: -10px;
    margin-bottom: 12px;
    display: none;
}
.error-msg.visible { display: block; }

/* --- FOOTER --- */
footer {
    background-color: #0a0a0a;
    color: #ccc;
    padding: 60px 20px 20px 20px;
    font-size: 0.95rem;
    border-top: 3px solid var(--yellow, #FFD700);
}

.container { max-width: 1200px; margin: 0 auto; width: 100%; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-col h4 {
    color: var(--yellow, #FFD700);
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-col a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--yellow, #FFD700);
}

.text-yellow {
    color: var(--yellow, #FFD700);
}

/* --- RESPONSIVE --- */
@media (max-width: 640px) {
    .zona-grid { grid-template-columns: 1fr; }
    .panel-card { padding: 22px 16px; }
    .btn-nav { flex-direction: column-reverse; }
    .btn-next { max-width: 100%; width: 100%; }
    .btn-guardar { width: 100%; text-align: center; }
    .btn-wa { width: 100%; }
    .stats-row { flex-direction: column; gap: 20px; }
    .pasos-indicator { gap: 0; }
    .paso-label { display: none; }
}

/* --- AUDIENCIA Y ALCANCE DETALLE --- */
.audiencia-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}
.container-audiencia h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 8px;
}
.section-desc-audiencia {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.95rem;
}
.brands-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}
.brand-detail-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: 0.3s ease;
}
.brand-detail-card:hover {
    border-color: var(--yellow);
    box-shadow: var(--shadow), var(--glow);
    transform: translateY(-4px);
}
.brand-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.brand-icon {
    font-size: 1.8rem;
}
.brand-detail-card h3 {
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
}
.brand-followers {
    font-size: 0.85rem;
    background: rgba(255, 215, 0, 0.1);
    color: var(--yellow);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
}
.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 40px;
}
.brand-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    margin-bottom: 20px;
    text-align: center;
}
.b-stat {
    display: flex;
    flex-direction: column;
}
.b-num {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: var(--text);
}
.b-lbl {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 2px;
}
.brand-demographics h4 {
    font-size: 0.85rem;
    color: var(--yellow);
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.brand-demographics ul {
    list-style: none;
    padding: 0;
}
.brand-demographics li {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: #ccc;
}
.brand-demographics li span {
    font-weight: 700;
    color: var(--text);
}

/* Conclusiones Demográficas */
.demographics-insights {
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}
.demographics-insights h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.insight-card {
    background: var(--dark);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--yellow);
}
.insight-card h4 {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--yellow);
}
.insight-card p {
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.5;
}

/* ============================================================
   SECCIÓN DE PRODUCTOS ESTRELLA & REDISEÑO CORPORATIVO
   Identidad: Azul Institucional, Acentos Dorados y Grises Limpios
   ============================================================ */

:root {
    --blue-corp-dark: #0b1727;
    --blue-corp-main: #0f172a;
    --blue-corp-card: #1e293b;
    --blue-corp-border: #334155;
    --gold-main: #ffd700;
    --gold-accent: #f59e0b;
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #d97706 100%);
    --gray-clean: #f8fafc;
    --gray-subtle: #94a3b8;
    --shadow-elevated: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
    --glow-gold: 0 0 25px rgba(255, 215, 0, 0.25);
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold-main);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.star-products-section {
    background: linear-gradient(180deg, var(--blue-corp-dark) 0%, #070d18 100%);
    padding: 70px 24px;
    position: relative;
    border-top: 1px solid var(--blue-corp-border);
    border-bottom: 1px solid var(--blue-corp-border);
}

.star-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-tag-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-main);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.star-section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.star-section-header p {
    color: var(--gray-subtle);
    font-size: 1rem;
    line-height: 1.6;
}

.star-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    max-width: 1140px;
    margin: 0 auto;
}

.star-card {
    background: var(--blue-corp-card);
    border: 2px solid var(--blue-corp-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: var(--shadow-elevated);
    overflow: hidden;
}

.star-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-main);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), var(--glow-gold);
}

.badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.star-card-header {
    margin-bottom: 16px;
}

.format-type-tag {
    display: inline-block;
    color: var(--gold-main);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.star-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.star-card-desc {
    color: var(--gray-subtle);
    font-size: 0.88rem;
    line-height: 1.5;
}

.mockup-container {
    background: #09111e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    margin: 22px 0;
    position: relative;
}

.flyer-mockup-wrapper {
    background: #111c2e;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-top-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 900;
    color: #000;
}

.mockup-user-info {
    display: flex;
    flex-direction: column;
}

.mockup-username {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
}

.mockup-subtext {
    font-size: 0.62rem;
    color: var(--gray-subtle);
}

.flyer-visual-box {
    height: 180px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0b1727 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.flyer-visual-box .promo-tag {
    background: var(--gold-main);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.flyer-visual-box .promo-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

.flyer-visual-box .promo-subtitle {
    font-size: 0.72rem;
    color: #cbd5e1;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    display: flex;
    gap: 5px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
    background: var(--gold-main);
    width: 14px;
    border-radius: 10px;
}

.video-visual-box {
    height: 210px;
    background: radial-gradient(circle at center, #1e293b 0%, #09111e 100%);
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease;
    cursor: pointer;
    padding-left: 4px;
}

.video-visual-box:hover .video-play-btn {
    transform: scale(1.15);
    background: var(--gold-main);
}

.reel-overlay-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.reel-stats-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    color: #fff;
    font-size: 0.7rem;
}

.reel-stat-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.reel-stat-icon span {
    font-size: 0.6rem;
    margin-top: 2px;
}

.mockup-social-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    background: #0f172a;
    font-size: 0.7rem;
    color: var(--gray-subtle);
}

.star-features-list {
    list-style: none;
    padding: 0;
    margin: 18px 0;
}

.star-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #e2e8f0;
    margin-bottom: 10px;
    line-height: 1.4;
}

.star-features-list li i {
    color: var(--gold-main);
    margin-top: 3px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.metric-pill {
    background: rgba(255, 215, 0, 0.08);
    border: 1px dashed rgba(255, 215, 0, 0.3);
    color: var(--gold-main);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.star-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--blue-corp-border);
    margin-top: auto;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.65rem;
    color: var(--gray-subtle);
    text-transform: uppercase;
}

.price-val {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--gold-main);
}

.price-val small {
    font-size: 0.75rem;
    color: #fff;
    font-family: var(--font-body);
}

.btn-star {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.25);
    text-decoration: none;
}

.btn-star:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #000;
}

/* ============================================================
   ESTILOS WIZARD: INDICADOR DE PASOS Y PROGRESO DINÁMICO
   ============================================================ */

.pasos-indicator-container {
    position: relative;
    max-width: 780px;
    margin: 30px auto 45px;
    padding: 0 10px;
}

.progress-bar-bg {
    position: absolute;
    top: 20px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    z-index: 1;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.pasos-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.paso-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.paso-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue-corp-card);
    border: 2px solid var(--blue-corp-border);
    color: var(--gray-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.paso-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.paso-item.active .paso-num {
    background: var(--blue-corp-dark);
    border-color: var(--gold-main);
    color: var(--gold-main);
    box-shadow: var(--glow-gold);
    transform: scale(1.1);
}

.paso-item.active .paso-label {
    color: var(--gold-main);
}

.paso-item.done .paso-num {
    background: var(--gold-gradient);
    border-color: var(--gold-main);
    color: #000;
    font-weight: 900;
}

.paso-item.done .paso-label {
    color: #ffffff;
}

/* Tarjetas de Zona */
.zona-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.zona-badge {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zona-badge.base {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gray-subtle);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.zona-badge.extra {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-main);
    border: 1px solid var(--gold-main);
}

.zona-card {
    background: var(--blue-corp-card);
    border: 1.5px solid var(--blue-corp-border);
    border-radius: 14px;
    padding: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zona-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-3px);
}

.zona-card.selected {
    border-color: var(--gold-main);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

/* Servicios Highlights y Badges */
.servicio-estrella-highlight {
    border-color: rgba(255, 215, 0, 0.35);
}

.tag-estrella-mini {
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
}

/* ============================================================
   ESTILOS PASO 4: DURACIÓN, UPSELL & CARGA DE ARCHIVOS
   ============================================================ */

.sub-section-title {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Selector de Duración */
.duracion-section {
    margin-bottom: 30px;
}

.duracion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.duracion-card {
    background: var(--blue-corp-card);
    border: 1.5px solid var(--blue-corp-border);
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.duracion-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-3px);
}

.duracion-card.selected {
    border-color: var(--gold-main);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: var(--glow-gold);
}

.duracion-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.duracion-badge.base {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-subtle);
}

.duracion-badge.promo {
    background: var(--gold-gradient);
    color: #000;
}

.duracion-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.duracion-card h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.duracion-card p {
    font-size: 0.8rem;
    color: var(--gray-subtle);
    line-height: 1.4;
    margin-bottom: 10px;
}

.duracion-factor {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-subtle);
}

.text-gold {
    color: var(--gold-main) !important;
}

/* Módulo de Recomendación Inteligente (Upsell) */
.upsell-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1.5px dashed var(--gold-main);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.upsell-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}

.upsell-content {
    flex: 1;
    min-width: 240px;
}

.upsell-title {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--gold-main);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.upsell-desc {
    font-size: 0.88rem;
    color: #e2e8f0;
    line-height: 1.4;
}

.btn-upsell-action {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.btn-upsell-action:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.35);
}

/* Campo Drag & Drop (Dropzone Upload) */
.upload-section {
    margin-bottom: 30px;
}

.dropzone {
    background: #09111e;
    border: 2px dashed rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dropzone:hover,
.dropzone.dragover {
    border-color: var(--gold-main);
    background: rgba(255, 215, 0, 0.03);
}

.dropzone-icon {
    font-size: 2.2rem;
    color: var(--gold-main);
    margin-bottom: 10px;
}

.dropzone-text {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 6px;
}

.dropzone-link {
    color: var(--gold-main);
    text-decoration: underline;
    font-weight: 700;
}

.dropzone-hint {
    font-size: 0.72rem;
    color: var(--gray-subtle);
}

/* Preview de Archivo */
.file-preview-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--blue-corp-card);
    border: 1px solid var(--blue-corp-border);
    border-radius: 10px;
    padding: 12px 18px;
    width: 100%;
}

.file-info-col {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    font-size: 1.8rem;
}

.file-name-wrapper {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.file-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    word-break: break-all;
}

.file-size {
    font-size: 0.72rem;
    color: var(--gray-subtle);
}

.file-status-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-ready {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-remove-file {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.btn-remove-file:hover {
    background: #ef4444;
    color: #ffffff;
}

/* ============================================================
   ESTILOS PASO 5: CHECKOUT, DESGLOSE MATEMÁTICO & PASARELA PAGO
   ============================================================ */

.checkout-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
}

@media (max-width: 820px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.box-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--blue-corp-border);
}

.badge-tag-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-main);
    border: 1px solid var(--gold-main);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
}

.resumen-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.resumen-detail-item .d-label {
    color: var(--gray-subtle);
}

.resumen-detail-item .d-val {
    font-weight: 700;
    color: #ffffff;
    text-align: right;
}

.summary-subgroup {
    margin-top: 16px;
}

.summary-subgroup h5 {
    font-size: 0.8rem;
    color: var(--gold-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.chips-summary-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.plat-summary-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 50px;
}

/* Caja de desglose matemático */
.math-breakdown-box {
    background: #09111e;
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 20px;
}

.math-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--gray-subtle);
    margin-bottom: 6px;
}

.math-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.math-total-row .total-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: #ffffff;
    letter-spacing: 1px;
}

.math-total-row .monto {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--gold-main);
}

/* Botones de Conversión Duales */
.dual-conversion-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

.btn-wa-primary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-wa-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-pay-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border: 1.5px solid var(--gold-main);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    width: 100%;
}

.btn-pay-card:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e293b 100%);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* Modal Pasarela de Pago */
.payment-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal-card {
    background: #0f172a;
    border: 2px solid var(--gold-main);
    border-radius: 20px;
    padding: 36px 30px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), var(--glow-gold);
    animation: modalSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid #22c55e;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.modal-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.8rem;
    color: var(--gray-subtle);
}

.modal-order-summary {
    background: #09111e;
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    font-size: 0.85rem;
    color: var(--gray-subtle);
}

.modal-total-amount {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--gold-main);
}

.card-input-wrapper {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
    font-size: 1.2rem;
    color: var(--gray-subtle);
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-secure-footer {
    font-size: 0.72rem;
    color: var(--gray-subtle);
    text-align: center;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-submit-payment {
    width: 100%;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 900;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.btn-submit-payment:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 22px rgba(255, 215, 0, 0.5);
}

/* Pantalla Éxito Modal */
.payment-success-screen {
    text-align: center;
    padding: 20px 0;
}

.success-icon-circle {
    font-size: 3.5rem;
    margin-bottom: 14px;
}

.payment-success-screen h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.payment-success-screen p {
    font-size: 0.88rem;
    color: var(--gray-subtle);
    margin-bottom: 24px;
}/* ============================================================
   MOBILE COMPACT OPTIMIZATION 
   (Compactar secciones para maximizar espacio en celulares)
   ============================================================ */
@media (max-width: 768px) {
    /* 1. AUDIENCIA Y ALCANCE */
    .audiencia-section {
        margin: 25px auto !important;
        padding: 0 10px !important;
    }
    .container-audiencia h2 {
        font-size: 1.6rem !important;
        margin-bottom: 5px !important;
    }
    .section-desc-audiencia {
        margin-bottom: 20px !important;
        font-size: 0.85rem !important;
    }
    .brands-detail-grid {
        gap: 12px !important;
        margin-bottom: 25px !important;
    }
    .brand-detail-card {
        padding: 15px !important;
    }
    .brand-icon {
        font-size: 1.4rem !important;
    }
    .brand-detail-card h3 {
        font-size: 1.1rem !important;
    }
    .brand-followers {
        font-size: 0.75rem !important;
        padding: 2px 8px !important;
    }
    .brand-tagline {
        margin-bottom: 12px !important;
        min-height: auto !important;
    }
    .brand-stats-grid {
        gap: 8px !important;
        margin-bottom: 15px !important;
    }
    .b-num { font-size: 1.1rem !important; }
    .b-lbl { font-size: 0.7rem !important; }
    .brand-demographics h4 { margin-bottom: 8px !important; }
    .brand-demographics ul li { margin-bottom: 4px !important; font-size: 0.8rem !important; }
    .demographics-insights h3 { font-size: 1.3rem !important; margin-bottom: 15px !important; }
    .insights-grid { gap: 10px !important; }
    .insight-card { padding: 15px !important; }

    /* 2. SERVICIOS ESTRELLA (Formatos) */
    .star-products-section {
        padding: 30px 15px !important;
    }
    .star-section-header {
        margin: 0 auto 25px !important;
    }
    .star-section-header h2 {
        font-size: 1.6rem !important;
    }
    .star-products-grid {
        gap: 15px !important;
    }
    .star-card {
        padding: 15px !important;
    }
    .star-card-desc {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
    }
    .star-feature-item {
        font-size: 0.85rem !important;
        margin-bottom: 6px !important;
    }
    .star-card-footer {
        padding-top: 15px !important;
        margin-top: 15px !important;
    }
    
    /* 3. OTROS SERVICIOS Y CONSULTORIA (Reducción de Padding) */
    .otros-servicios-section, .consultoria-section {
        padding: 25px 15px !important;
        margin: 25px auto !important;
    }
    .otros-servicios-section h2, .consultoria-section h2 {
        font-size: 1.5rem !important;
    }
    .otros-servicios-section > div, .consultoria-section > div {
        gap: 10px !important;
    }
    .otros-servicios-section > div > div, .consultoria-section > div > div {
        padding: 15px !important;
    }

    /* 4. COTIZADOR */
    .cotizador-section {
        padding: 25px 10px !important;
    }
    .panel-card {
        padding: 15px !important;
    }
}

