/* ===== SMILEY PRECIOS AGENTE ===== */
.spa-wrap { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; max-width: 1100px; margin: 0 auto; padding: 40px 36px; background: #f8fafc; border-radius: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.05); }

/* HEADER */
.spa-header { text-align: center; padding: 40px 20px 20px; }
.spa-titulo { font-size: clamp(24px, 4vw, 36px); font-weight: 900; color: #1a1a2e; margin: 0 0 12px; }
.spa-subtitulo { font-size: 18px; color: #6b7280; margin: 0; }

/* URGENCIA */
.spa-urgencia { display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, #1a1a2e, #16213e); color: white; padding: 16px 24px; border-radius: 14px; margin: 20px 0 32px; font-size: 15px; font-weight: 600; text-align: center; }
.spa-urgencia-icon { font-size: 24px; flex-shrink: 0; animation: spa-pulse 1.5s infinite; }
@keyframes spa-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.2)} }

/* GRID */
.spa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
@media (max-width: 900px) { .spa-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* CARDS — cuadrante blanco con sombra suave estilo Smiley */
.spa-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
}
.spa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

/* Borde superior de color por plan */
.spa-card.fundador { border-top: 4px solid #fbbf24; }
.spa-card.normal   { border-top: 4px solid #ff0000; }
.spa-card.smiley   { border-top: 4px solid #33cc33; }

/* BADGES */
.spa-badge { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 800; letter-spacing: 0.5px; text-align: center; }
.fundador-badge { background: #fbbf24; color: #1a1a2e; }
.normal-badge   { background: #ff0000; color: white; }
.smiley-badge   { background: #33cc33; color: white; }

/* CUPOS */
.spa-cupos-wrap { background: #fffbeb; border-radius: 10px; padding: 12px 14px; border: 1px solid #fde68a; }
.spa-cupos-texto { font-size: 13px; font-weight: 600; color: #92400e; margin-bottom: 8px; }
.spa-cupos-texto strong { font-size: 20px; color: #b45309; }
.spa-progress-bar { height: 8px; background: #fde68a; border-radius: 4px; overflow: hidden; }
.spa-progress-fill { height: 100%; background: linear-gradient(90deg, #fbbf24, #f59e0b); border-radius: 4px; transition: width 1s ease; }

/* AHORRO TAG */
.spa-ahorro-tag { display: inline-block; background: #f0fdf4; color: #166534; font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: 8px; border: 1px solid #86efac; }

/* PRECIOS */
.spa-precio-wrap { text-align: center; }
.spa-precio-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; font-weight: 600; margin-bottom: 6px; }
.spa-precio { font-size: clamp(28px, 4vw, 38px); font-weight: 900; color: #1a1a2e; line-height: 1; }
.spa-mensual { font-size: 14px; color: #6b7280; margin-top: 6px; font-weight: 500; }

.tachado-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; }
.spa-precio-tachado { font-size: 22px; font-weight: 700; color: #9ca3af; text-decoration: line-through; }
.spa-precio-real { font-size: clamp(28px, 4vw, 38px); font-weight: 900; color: #33cc33; }

/* FEATURES */
.spa-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.spa-features li { font-size: 14px; color: #374151; display: flex; align-items: flex-start; gap: 6px; line-height: 1.4; }

/* CTAs */
.spa-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 20px; border-radius: 12px; font-weight: 800; font-size: 15px; text-decoration: none; transition: all 0.2s; text-align: center; }
.spa-cta:hover { transform: translateY(-2px); text-decoration: none; }
.fundador-cta { background: #fbbf24; color: #1a1a2e; box-shadow: 0 4px 16px rgba(251,191,36,0.35); }
.fundador-cta:hover { background: #f59e0b; color: #1a1a2e; box-shadow: 0 8px 24px rgba(251,191,36,0.45); }
.normal-cta { background: #ff0000; color: white; box-shadow: 0 4px 16px rgba(255,0,0,0.25); }
.normal-cta:hover { background: #cc0000; color: white; box-shadow: 0 8px 24px rgba(255,0,0,0.35); }
.smiley-cta { background: #33cc33; color: white; box-shadow: 0 4px 16px rgba(51,204,51,0.35); }
.smiley-cta:hover { background: #28a428; color: white; box-shadow: 0 8px 24px rgba(51,204,51,0.45); }

/* GARANTIA / NOTA */
.spa-garantia { font-size: 12px; color: #6b7280; text-align: center; margin: 0; }
.spa-nota-smiley { font-size: 11px; color: #6b7280; text-align: center; margin: 0; line-height: 1.4; font-style: italic; }

/* COMPARATIVA BOTTOM — cuadrante blanco con sombra suave */
.spa-comparativa {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
}
@media (max-width: 768px) { .spa-comparativa { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .spa-comparativa { grid-template-columns: 1fr; } }

.spa-comp-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.spa-comp-icon { font-size: 32px; }
.spa-comp-item strong { font-size: 14px; color: #1f2937; font-weight: 700; }
.spa-comp-item span { font-size: 12px; color: #6b7280; line-height: 1.4; }

/* Animación contador */
@keyframes spa-count { from { transform: scale(1.3); color: #fbbf24; } to { transform: scale(1); } }
.spa-cupos-anim { animation: spa-count 0.4s ease; }