/* =====================================================
   ESTILOS DE PAGE TEMPLATES — SCP New by Acuciante Design
   ===================================================== */

/* ===== HERO DE PÁGINA ===== */
.page-hero {
    background: linear-gradient(135deg, #e8eaf0 0%, #f5f5f7 100%);
    padding: 48px 0 40px;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

/* Título destacado — banner lila animado (plantilla + Informar Pago + Arrepentimiento) */
.page-hero--destacado {
    position: relative;
    overflow: hidden;
    margin-bottom: 36px;
    padding: 0;
    border: none;
    border-bottom: none;
    border-radius: 16px;
    box-shadow:
        0 4px 24px rgba(107, 33, 168, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.08) inset;
    isolation: isolate;
}

.page-hero--destacado::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        125deg,
        #1e0a45 0%,
        #3b1578 22%,
        #5b21b6 42%,
        #6b21a8 58%,
        #581c87 72%,
        #4c1d95 88%,
        #2d1065 100%
    );
    background-size: 320% 320%;
    animation: scpnew-hero-destacado-flow 22s ease-in-out infinite;
}

.page-hero--destacado::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(196, 181, 253, 0.15) 0%, transparent 50%);
}

.page-hero--destacado .page-hero__inner {
    position: relative;
    z-index: 2;
    padding: 44px 28px 40px;
}

.page-hero--destacado .page-title {
    margin: 0;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.page-hero--destacado .page-subtitle {
    margin: 12px auto 0;
    font-size: 1.05rem;
    color: #ffffff;
    opacity: 0.92;
    max-width: 520px;
}

@keyframes scpnew-hero-destacado-flow {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero--destacado::before {
        animation: none;
        background-size: 100% 100%;
        background-position: 50% 50%;
    }
}

.pagina-destacado-body {
    margin: 0 auto 48px;
    width: 100%;
}

.pagina-destacado-body--center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagina-destacado-body--center > .wc-comprobantes-form-wrapper {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero:not(.page-hero--destacado) .page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.page-hero:not(.page-hero--destacado) .page-subtitle {
    font-size: 1.05rem;
    color: #666666;
    margin: 0;
}

/* Título destacado: blanco fijo (por encima de reglas genéricas) */
.page-hero--destacado .page-title,
.page-hero--destacado .page-subtitle {
    color: #ffffff;
}

/* ===== FORMS COMPARTIDOS ===== */
.scpnew-form .form-row {
    margin-bottom: 16px;
}

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

.scpnew-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.scpnew-form label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #444;
}

.scpnew-form input,
.scpnew-form select,
.scpnew-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #333;
}

.scpnew-form input:focus,
.scpnew-form select:focus,
.scpnew-form textarea:focus {
    border-color: var(--scp-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.scpnew-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 20px;
}

.btn-primary {
    background: var(--scp-accent);
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
    background: var(--scp-accent-hover);
    transform: translateY(-1px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    text-decoration: none;
}

.form-success {
    background: #e6f4ea;
    border-left: 4px solid #34a853;
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 20px;
    font-weight: 500;
    color: #1e6e3e;
}

.form-error {
    background: #fdecea;
    border-left: 4px solid #d32f2f;
    padding: 14px 18px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 20px;
    color: #922020;
}

/* ===== CONTACT LINKS ===== */
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.2s;
    text-decoration: none;
}

.contact-link:hover {
    color: var(--scp-accent);
    text-decoration: none;
}

.contact-link--whatsapp:hover {
    color: #25d366;
}

/* ===== CONTACTO ===== */
.page-contacto {
    padding-bottom: 48px;
}

.page-hero--contacto {
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.contacto-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px 32px;
    background: #0a0a0f;
    color: #f5f5f7;
    padding: 28px 32px;
    margin-bottom: 0;
    border-left: 4px solid var(--scp-purple-light, #9333ea);
}

.contacto-banner__brand {
    flex: 0 0 auto;
}

.contacto-banner__logo img {
    max-height: 52px;
    width: auto;
    filter: brightness(1.05);
}

.contacto-banner__site-name {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
}

.contacto-banner__details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 36px;
    flex: 1 1 480px;
    justify-content: flex-end;
}

.contacto-banner__group h2 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--scp-purple-light, #c4b5fd);
    margin: 0 0 8px;
}

.contacto-banner__group p {
    margin: 0 0 6px;
    font-size: 0.92rem;
}

.contacto-banner__group p:last-child {
    margin-bottom: 0;
}

.contacto-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5f5f7;
    text-decoration: none;
    transition: color 0.2s;
}

.contacto-link:hover {
    color: #22d3ee;
    text-decoration: none;
}

.contacto-link--whatsapp:hover {
    color: #25d366;
}

.contacto-horario {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #d1d5db;
    font-size: 0.88rem;
    line-height: 1.45;
}

.contacto-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #111118;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    margin-bottom: 36px;
}

.contacto-galeria {
    padding: 20px;
    min-height: 520px;
}

.contacto-galeria__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    min-height: 480px;
}

.contacto-galeria__item {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #1a1a24;
}

.contacto-galeria__item--large {
    grid-column: span 3;
    min-height: 220px;
}

.contacto-galeria__item--small {
    grid-column: span 2;
    min-height: 150px;
}

.contacto-galeria__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.contacto-galeria__item:hover img {
    transform: scale(1.03);
}

.contacto-galeria__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    border: 2px dashed rgba(147, 51, 234, 0.35);
    border-radius: 12px;
    background: rgba(30, 10, 69, 0.25);
    text-align: center;
    padding: 32px;
}

.contacto-galeria__placeholder p {
    margin: 0;
    color: #a78bfa;
    font-size: 0.95rem;
    max-width: 280px;
}

.contacto-mapa {
    padding: 20px 20px 20px 0;
}

.contacto-mapa__embed {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.contacto-mapa__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.contacto-contenido {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px 32px;
    line-height: 1.75;
}

/* ===== DONDE ESTAMOS ===== */
.page-donde-estamos .donde-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
}

.contact-block {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 16px;
}

.contact-block h2 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 12px;
}

.contact-block p {
    margin-bottom: 8px;
}

.contact-block p:last-child {
    margin-bottom: 0;
}

.horario {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.donde-mapa .map-embed {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    margin-bottom: 24px;
}

.donde-mapa .entry-content {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 24px;
}

/* ===== SOBRE NOSOTROS ===== */
.page-sobre-nosotros .sobre-intro {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

.sobre-text {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 32px;
    line-height: 1.8;
}

.sobre-text p {
    margin-bottom: 16px;
}

.sobre-text p:last-child {
    margin-bottom: 0;
}

.sobre-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--scp-accent);
    line-height: 1.2;
}

.highlight-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

.sobre-instagram {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.sobre-instagram h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.sobre-instagram--placeholder .ig-hint {
    background: #f0f4ff;
    border: 1px dashed #99b4e8;
    border-radius: 8px;
    padding: 20px 24px;
    color: #555;
    font-size: 0.9rem;
    text-align: center;
}

/* ===== AYUDA ===== */
.page-hero--ayuda {
    background: linear-gradient(135deg, #4c1d95 0%, #6b21a8 50%, #7c3aed 100%);
}

.page-hero--ayuda .page-title,
.page-hero--ayuda .page-subtitle {
    color: #fff;
}

.page-hero--ayuda .page-subtitle {
    opacity: 0.9;
}

.ayuda-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 44px;
}

.ayuda-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    background: #fff;
    border: 1px solid #e8e8ec;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ayuda-card:hover {
    border-color: var(--scp-accent, #9333ea);
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.12);
    transform: translateY(-2px);
}

.ayuda-card:focus-visible {
    outline: 2px solid var(--scp-accent, #9333ea);
    outline-offset: 2px;
}

.ayuda-card-icon {
    flex-shrink: 0;
    font-size: 1.6rem;
    line-height: 1;
    margin-top: 2px;
}

.ayuda-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ayuda-card-titulo {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.ayuda-card-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.45;
}

.ayuda-card-arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--scp-accent, #9333ea);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}

.ayuda-card:hover .ayuda-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.ayuda-contenido {
    max-width: 800px;
    margin: 0 auto 44px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: #444;
}

.ayuda-contenido h2,
.ayuda-contenido h3 {
    color: #222;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.6em;
}

.ayuda-contenido h2:first-child,
.ayuda-contenido h3:first-child {
    margin-top: 0;
}

.ayuda-contenido p {
    margin-bottom: 1em;
}

.ayuda-contenido ul,
.ayuda-contenido ol {
    margin: 0 0 1em 1.25em;
}

.ayuda-contenido a {
    color: var(--scp-accent, #9333ea);
    text-decoration: underline;
}

.ayuda-edit-hint {
    font-size: 0.9rem;
    color: #888;
    background: #f8f7fc;
    border: 1px dashed #d4c4f0;
    border-radius: 8px;
    padding: 14px 18px;
}

.ayuda-contacto {
    background: linear-gradient(135deg, #f3f0ff 0%, #faf8ff 100%);
    border: 1px solid #e4ddf5;
    border-radius: 14px;
    padding: 36px 32px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.ayuda-contacto h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.ayuda-contacto p {
    font-size: 0.97rem;
    color: #555;
    margin-bottom: 20px;
}

.ayuda-contacto a:not(.btn-whatsapp) {
    color: var(--scp-accent, #9333ea);
    font-weight: 600;
}

/* ===== EMPRESAS ===== */
.page-hero--empresas {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 100%);
}

.page-hero--empresas .page-title,
.page-hero--empresas .page-subtitle {
    color: #fff;
}

.page-hero--empresas .page-subtitle {
    opacity: 0.8;
}

.empresas-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.empresas-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 52px;
}

.beneficio-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.beneficio-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.beneficio-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.beneficio-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.beneficio-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.empresas-form-section {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 40px;
    max-width: 720px;
    margin: 0 auto;
}

.empresas-form-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 28px;
}

/* ===== SERVICIO TÉCNICO ===== */
.page-hero--rma {
    background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
}

.page-hero--rma .page-title,
.page-hero--rma .page-subtitle {
    color: #fff;
}

.page-hero--rma .page-subtitle {
    opacity: 0.8;
}

.rma-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px 32px;
    line-height: 1.8;
}

.rma-form-section {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 36px 40px;
    max-width: 680px;
    margin: 0 auto 40px;
}

.rma-form-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.rma-info-box {
    background: #f5f7ff;
    border: 1px solid #c5d0eb;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.rma-info-box h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.rma-info-box p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 4px;
}

/* ===== BOTÓN DE ARREPENTIMIENTO ===== */
.arrepentimiento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    width: 100%;
    margin: 0 auto 48px;
    align-items: start;
}

.arrepentimiento-legal {
    max-width: none;
    margin: 0;
    height: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px 32px;
}

.arrepentimiento-legal__list {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.75;
    color: #444;
}

.arrepentimiento-legal__list li {
    margin-bottom: 12px;
}

.arrepentimiento-legal__list li:last-child {
    margin-bottom: 0;
}

.arrepentimiento-form-section {
    max-width: none;
    margin: 0;
}

.arrepentimiento-form .form-group {
    margin-bottom: 14px;
}

.arrepentimiento-form label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.arrepentimiento-form input {
    background: #ececec;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 0.95rem;
}

.arrepentimiento-form input:focus {
    background: #fff;
    border-color: var(--scp-purple-light, #9333ea);
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.15);
}

.arrepentimiento-form .form-group--captcha input[type="number"] {
    max-width: 120px;
}

.arrepentimiento-form .btn-arrepentimiento {
    width: 100%;
    background: var(--scp-purple-nav, #6b21a8);
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.arrepentimiento-form .btn-arrepentimiento:hover {
    background: var(--scp-purple, #581c87);
    transform: translateY(-1px);
}

/* ===== PREGUNTAS FRECUENTES ===== */
.page-faq .faq-intro,
.page-faq .faq-intro--default {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
    color: #555;
    line-height: 1.7;
}

.page-hero--faq {
    margin-bottom: 8px;
}

.faq-edit-hint {
    margin-top: 18px;
    font-size: 0.85rem;
    color: #666;
}

.faq-edit-hint a {
    color: var(--scp-accent);
    font-weight: 600;
}

.faq-index {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.faq-index a {
    display: inline-block;
    padding: 7px 18px;
    background: #fff;
    border: 1px solid #dde3f0;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.faq-index a:hover {
    background: var(--scp-accent);
    color: #fff;
    border-color: var(--scp-accent);
}

.faq-seccion {
    margin-bottom: 44px;
}

.faq-seccion-titulo {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 12px;
}

.faq-accordion {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-pregunta {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 20px;
    text-align: left;
    font-size: 0.97rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.15s;
    font-family: inherit;
}

.faq-pregunta:hover {
    background: #f7f8fc;
}

.faq-pregunta[aria-expanded="true"] {
    background: #f0f5ff;
    color: var(--scp-accent);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: #999;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-pregunta[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: var(--scp-accent);
}

.faq-respuesta {
    overflow: hidden;
}

.faq-respuesta[hidden] {
    display: none;
}

.faq-respuesta-inner {
    padding: 16px 20px 20px;
    font-size: 0.93rem;
    line-height: 1.75;
    color: #444;
    border-top: 1px solid #e8e8e8;
}

.faq-respuesta-inner p,
.faq-respuesta-inner ul {
    margin-bottom: 12px;
}

.faq-respuesta-inner p:last-child,
.faq-respuesta-inner ul:last-child {
    margin-bottom: 0;
}

.faq-respuesta-inner ul {
    padding-left: 20px;
}

.faq-respuesta-inner li {
    margin-bottom: 6px;
}

.faq-respuesta-inner a {
    color: var(--scp-accent);
    text-decoration: underline;
}

.faq-contacto {
    background: linear-gradient(135deg, #e8eaf0 0%, #f5f5f7 100%);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
    margin-top: 48px;
}

.faq-contacto h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.faq-contacto p {
    font-size: 0.97rem;
    color: #555;
    margin-bottom: 20px;
}

.faq-contacto a:not(.btn-whatsapp) {
    color: var(--scp-accent);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contacto-visual {
        grid-template-columns: 1fr;
    }

    .contacto-mapa {
        padding: 0 20px 20px;
    }

    .contacto-banner__details {
        justify-content: flex-start;
    }

    .page-donde-estamos .donde-grid {
        grid-template-columns: 1fr;
    }

    .page-sobre-nosotros .sobre-intro {
        grid-template-columns: 1fr;
    }

    .sobre-highlights {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .highlight-card {
        flex: 1 1 140px;
    }
}

@media (max-width: 768px) {
    .arrepentimiento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .contacto-banner {
        padding: 20px 18px;
    }

    .contacto-galeria__grid {
        grid-template-columns: 1fr 1fr;
    }

    .contacto-galeria__item--large,
    .contacto-galeria__item--small {
        grid-column: span 1;
        min-height: 120px;
    }

    .page-hero .page-title {
        font-size: 1.5rem;
    }

    .scpnew-form .form-row--half {
        grid-template-columns: 1fr;
    }

    .empresas-form-section,
    .rma-form-section {
        padding: 24px 20px;
    }

    .faq-pregunta {
        font-size: 0.9rem;
        padding: 14px 16px;
    }

    .ayuda-cards {
        grid-template-columns: 1fr;
    }

    .ayuda-contacto {
        padding: 28px 20px;
    }
}

/* =====================================================
   HERO SLIDER — homepage
   ===================================================== */

.hero-slider-section {
    background: var(--scp-gray-bg, #f5f5f7);
    padding: 20px 0 4px;
}

.hero-slider-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: var(--scp-box-radius, 14px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    /* Desktop ~1400×484 */
    aspect-ratio: 1400 / 484;
    max-height: 484px;
}

@media (max-width: 767px) {
    .hero-slider-section {
        padding: 12px 0 2px;
    }

    .hero-slider {
        border-radius: var(--scp-box-radius, 14px);
        aspect-ratio: 1 / 1;
        max-height: none;
    }
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.slider-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    outline-offset: 3px;
    border-radius: inherit;
}

.slide-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #fff;
}

/* Sin flechas — navegación por dots y swipe */
.slider-btn {
    display: none !important;
}

/* Puntos debajo del banner (fuera del recuadro redondeado) */
.slider-dots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding: 2px 0 6px;
    z-index: 5;
}

.slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(147, 51, 234, 0.28);
    transition: transform 0.2s ease, background 0.2s ease;
}

.slider-dot.active {
    background: var(--scp-purple-light, #9333ea);
    transform: scale(1.15);
}

.slider-dot:hover,
.slider-dot:focus-visible {
    background: var(--scp-purple, #6b21a8);
    outline: none;
    transform: scale(1.1);
}

/* ===== HOMEPAGE SECTIONS ===== */
.home-content-area {
    padding: 40px 20px;
}

.home-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 28px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.home-section-title--accent {
    color: #1a1a2e;
    border-bottom: 3px solid var(--scp-accent);
    padding-bottom: 10px;
    display: inline-block;
}

.home-section-title--accent span {
    color: var(--scp-accent);
}

.home-section-title--line {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    width: 100%;
    display: block;
}

.home-section-more {
    text-align: center;
    margin-top: 28px;
}

.button-primary {
    display: inline-block;
    background: var(--scp-accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
}

.button-primary:hover {
    background: var(--scp-accent-hover);
    color: #fff;
    text-decoration: none;
}

/* ===== BARRA DE BENEFICIOS ===== */
.benefits-bar {
    padding: 0 0 8px;
    background: transparent;
}

.benefits-carousel {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--scp-box-radius, 14px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 100%;
}

.benefits-carousel__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.benefit-item {
    padding: 8px 12px;
    border-right: 1px solid #ddd;
    min-height: 0;
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-item__content {
    display: flex;
    height: 100%;
    min-height: 72px;
}

/* Cuotas: texto arriba, logos abajo */
.benefit-item__content--stack {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
}

.benefit-item__content--stack .benefit-text {
    align-items: center;
}

.benefit-item__content--stack .benefit-icon {
    width: auto;
    min-height: 0;
}

/* Garantía / envíos: icono al costado */
.benefit-item__content--side {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
}

.benefit-item__content--side .benefit-icon {
    width: auto;
    min-height: 0;
    flex-shrink: 0;
}

.benefit-item__content--side .benefit-text {
    align-items: flex-start;
    text-align: left;
    max-width: none;
    flex: 1;
    min-width: 0;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--scp-purple, #6b21a8);
}

.benefit-icon__img {
    max-height: 36px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.benefit-icon__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.benefit-icon__logo {
    width: 44px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.benefit-shield-svg {
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
}

.benefit-icon__fa {
    font-size: 1.65rem;
    color: var(--scp-purple, #6b21a8);
    line-height: 1;
    display: block;
    flex-shrink: 0;
}

.benefit-icon__fa--truck {
    animation: benefit-truck-fade 2.4s ease-in-out infinite;
}

@keyframes benefit-truck-fade {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

.benefit-shield-check {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: benefit-check-draw 1.4s ease forwards 0.35s;
}

@keyframes benefit-check-draw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .benefit-shield-check {
        animation: none;
        stroke-dashoffset: 0;
    }

    .benefit-icon__fa--truck {
        animation: none;
        opacity: 1;
    }

    .benefits-carousel__track {
        transition: none;
    }
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.benefit-text strong {
    font-size: 0.82rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.benefit-text span {
    font-size: 0.7rem;
    color: #444;
    line-height: 1.3;
}

.benefits-carousel__dots {
    display: none;
}

/* ===== SECCIÓN PROMO ===== */
.promo-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f5f7 0%, #e8eaf0 100%);
}

.promo-header {
    text-align: center;
    margin-bottom: 24px;
}

.promo-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--scp-accent);
    margin-bottom: 6px;
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.promo-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promo-card {
    position: relative;
    min-height: 280px;
    border-radius: var(--scp-box-radius, 14px);
    overflow: hidden;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: transform 0.25s;
}

.promo-card:hover {
    transform: translateY(-4px);
}

.promo-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.72) 100%);
    pointer-events: none;
}

.promo-card--alt .promo-card-overlay {
    background: linear-gradient(180deg, rgba(26,26,46,0.1) 0%, rgba(26,26,46,0.82) 100%);
}

.promo-card-content {
    position: relative;
    z-index: 1;
    padding: 28px 28px 28px;
    width: 100%;
}

.promo-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.promo-card-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.promo-card-btn {
    display: inline-block;
    background: #fff;
    color: #1a1a2e;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.promo-card-btn:hover {
    background: var(--scp-accent);
    color: #fff;
    text-decoration: none;
}

.promo-card-btn--alt {
    background: var(--scp-accent);
    color: #fff;
}

.promo-card-btn--alt:hover {
    background: #fff;
    color: #1a1a2e;
}

/* ===== HOME SECTIONS COMUNES ===== */
.home-section {
    padding: 48px 0;
}

.home-offers {
    background: #f5f5f7;
    padding: 48px 0 56px;
}

/* ===== OFERTAS (home) ===== */
.offers-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.offers-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.offers-title__accent {
    color: var(--scp-purple, #6b21a8);
}

.offers-header__line {
    flex: 1;
    height: 2px;
    background: var(--scp-purple, #6b21a8);
    border-radius: 2px;
    min-width: 40px;
}

.offers-panel {
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: var(--scp-box-radius, 14px);
    padding: 20px;
    box-shadow: 0 2px 18px rgba(107, 33, 168, 0.06);
}

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

.offer-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid #ececf0;
    border-radius: 10px;
    padding: 12px 12px 12px 10px;
    text-decoration: none;
    min-height: 118px;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.offer-card:hover {
    border-color: #d8b4fe;
    box-shadow: 0 4px 14px rgba(107, 33, 168, 0.12);
    transform: translateY(-1px);
    text-decoration: none;
}

.offer-card__fire {
    position: absolute;
    top: 4px;
    right: 6px;
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.scp-oferta-icon--card {
    position: absolute;
    top: 4px;
    right: 6px;
    z-index: 2;
    line-height: 0;
    pointer-events: none;
}

.scp-oferta-icon--card img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.offer-card__fire-emoji {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    font-style: normal;
    filter: drop-shadow(0 1px 3px rgba(255, 90, 0, 0.28));
    -webkit-font-smoothing: antialiased;
}

.offer-card__fire--animate .offer-card__fire-emoji {
    animation: scpnew-fire-emoji-flicker 1.75s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes scpnew-fire-emoji-flicker {
    0%,
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.05) translateY(-1px);
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {
    .offer-card__fire--animate .offer-card__fire-emoji {
        animation: none;
    }
}

.offer-card__media {
    flex-shrink: 0;
    width: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f9;
    border-radius: 8px;
    overflow: hidden;
}

.offer-card__img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
    padding: 6px;
}

.offer-card__body {
    flex: 1;
    min-width: 0;
    padding: 4px 28px 4px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.offer-card__name {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-card__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 8px;
}

.offer-card__price-current {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.offer-card__price-current .woocommerce-Price-amount,
.offer-card__price-regular .woocommerce-Price-amount {
    font-weight: inherit;
}

.offer-card__price-regular {
    font-size: 0.78rem;
    font-weight: 400;
    color: #9a9aa8;
    text-decoration: line-through;
}

.offer-card__price-regular .amount {
    text-decoration: line-through;
}

.offer-card__badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--scp-purple, #6b21a8);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.2;
}

.offer-card__combo {
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #1a1a2e;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 3px 7px;
    border-radius: 3px;
    line-height: 1.2;
    pointer-events: none;
}

.home-product-block {
    background: #f5f5f7;
}

/* ===== GRILLA DE PRODUCTOS (homepage — nuevos ingresos) ===== */
.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 100%;
}

.hprod-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hprod-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px);
    text-decoration: none;
}

.hprod-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    background: #f5f5f5;
    overflow: hidden;
}

.hprod-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hprod-badge {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    background: #e53935;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    padding: 2px 4px;
    border-radius: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hprod-badge--new {
    right: auto;
    width: auto;
    max-width: calc(100% - 8px);
    background: var(--scp-purple, #6b21a8);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.15;
    padding: 2px 5px;
    border-radius: 3px;
    overflow: visible;
    text-overflow: clip;
}

.hprod-info {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
}

.hprod-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(3 * 1.35em);
}

.hprod-price {
    margin: 0;
    margin-top: auto;
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
}

.hprod-price del {
    color: #aaa;
    font-weight: 400;
    font-size: 0.8rem;
    margin-right: 4px;
}

.hprod-price ins {
    text-decoration: none;
    color: #1a1a2e;
}

/* ===== GRILLA CATEGORÍAS / ACCESOS (home) ===== */
.home-categories {
    background: #f5f5f7;
    padding: 40px 0 48px;
}

.cat-hub-panel {
    background: #fff;
    border: 1px solid #e4e4ea;
    border-radius: var(--scp-box-radius, 14px);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.cat-hub-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
}

.cat-hub-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 22px 14px 20px;
    text-decoration: none;
    background: #fff;
    border-right: 1px solid #ececf0;
    border-bottom: 1px solid #ececf0;
    transition: background 0.2s;
    min-height: 168px;
}

.cat-hub-item:hover {
    background: #fafafc;
    text-decoration: none;
}

.cat-hub-item:nth-child(5n) {
    border-right: none;
}

.cat-hub-item:nth-child(-n+5) {
    border-bottom: 1px solid #ececf0;
}

.cat-hub-item:nth-child(n+6) {
    border-bottom: none;
}

.cat-hub-item__media {
    width: 100%;
    max-width: 130px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-hub__img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.cat-hub-item__label {
    font-size: 0.84rem;
    font-weight: 600;
    color: #2d3348;
    text-align: center;
    line-height: 1.35;
    padding: 0 4px;
}

/* Legacy (por si queda referencia) */
.home-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s;
}

.cat-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.cat-card-img {
    width: 100%;
    aspect-ratio: 1;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-card-noimg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8eaf0, #dde0ea);
}

.cat-card-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

/* ===== RESPONSIVE HOMEPAGE ===== */
@media (max-width: 1024px) {
    .cat-hub-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cat-hub-item:nth-child(5n) {
        border-right: 1px solid #ececf0;
    }

    .cat-hub-item:nth-child(3n) {
        border-right: none;
    }

    .cat-hub-item:nth-child(-n+5) {
        border-bottom: 1px solid #ececf0;
    }

    .cat-hub-item:nth-child(-n+3) {
        border-bottom: 1px solid #ececf0;
    }

    .cat-hub-item:nth-child(n+4):nth-child(-n+6) {
        border-bottom: 1px solid #ececf0;
    }

    .cat-hub-item:nth-child(n+7) {
        border-bottom: none;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .home-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .slider-dots {
        margin-top: 12px;
        gap: 8px;
        padding-bottom: 6px;
    }
    .slider-dot {
        width: 9px;
        height: 9px;
    }

    .benefits-bar {
        padding: 0 0 10px;
    }

    /* Carrusel: sin caja única — cada slide es su tarjeta */
    .benefits-carousel {
        background: transparent;
        border: none;
        box-shadow: none;
        overflow: hidden;
    }

    .benefits-carousel__track {
        display: flex;
        align-items: stretch;
        transition: transform 0.38s ease;
        will-change: transform;
    }

    .benefit-item {
        flex: 0 0 100%;
        border-right: none;
        min-height: 0;
        padding: 0 2px;
    }

    .benefit-item__content {
        background: #fff;
        border: 1px solid #e4e4e7;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
        padding: 18px 16px 16px;
        min-height: 132px;
        justify-content: center;
    }

    /* Mobile: layout vertical centrado en las 3 tarjetas */
    .benefit-item__content--stack,
    .benefit-item__content--side {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .benefit-item__content--side .benefit-text,
    .benefit-item__content--stack .benefit-text {
        align-items: center;
        text-align: center;
        max-width: 300px;
    }

    .benefit-icon {
        width: 52px;
        height: 52px;
        padding: 10px;
        background: rgba(107, 33, 168, 0.08);
        border-radius: 50%;
        flex-shrink: 0;
    }

    .benefit-item__content--stack .benefit-icon {
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .benefit-icon__logos {
        gap: 8px;
    }

    .benefit-icon__logo {
        width: 56px;
    }

    .benefit-icon__img {
        max-height: 40px;
    }

    .benefit-shield-svg {
        width: 30px;
        height: 30px;
    }

    .benefit-icon__fa {
        font-size: 1.5rem;
    }

    .benefit-text strong {
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .benefit-text span {
        font-size: 0.78rem;
        line-height: 1.4;
        color: #555;
    }

    .benefits-carousel__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 12px 0 2px;
        background: transparent;
    }

    .benefits-carousel__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: #d8b4fe;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
    }

    .benefits-carousel__dot.is-active {
        background: var(--scp-purple, #6b21a8);
        transform: scale(1.15);
    }

    .promo-cards {
        grid-template-columns: 1fr;
    }
    .promo-card {
        min-height: 220px;
    }

    .cat-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cat-hub-item {
        min-height: 150px;
        padding: 16px 10px;
    }

    .cat-hub-item:nth-child(3n),
    .cat-hub-item:nth-child(5n) {
        border-right: 1px solid #ececf0;
    }

    .cat-hub-item:nth-child(2n) {
        border-right: none;
    }

    .cat-hub-item {
        border-bottom: 1px solid #ececf0;
    }

    .cat-hub-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .offers-panel {
        padding: 14px;
    }

    .home-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .home-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-card-title {
        font-size: 1.2rem;
    }
}

