/* =========================================================
   Don Ofertón – Bootstrap Theme Overrides (v5.2.3)
   Paleta:
     Primary (CTA):     #FF7A00
     Primary-hover:     #FFB100
     Accent (ofertas):  #FFD43B
     Dark:              #1C1C1C
     Light-bg:          #F4F4F4
     White:             #FFFFFF
   ========================================================= */

/* 1) Variables Bootstrap a nivel de :root */
:root {
    /* Marca */
    --color-primary: #FF7A00;
    --color-primary-rgb: 255, 122, 0;
    --color-primary-hover: #FFB100;
    --color-accent: #FFD43B;
    --color-dark: #1C1C1C;
    --color-light: #F4F4F4;
    --color-white: #FFFFFF;

    /* Bootstrap core */
    --bs-primary: var(--color-primary);
    --bs-primary-rgb: var(--color-primary-rgb);
    --bs-warning: var(--color-accent);
    --bs-dark: var(--color-dark);
    --bs-light: var(--color-light);
    --bs-body-bg: var(--color-light);
    --bs-body-color: #212529;

    --bs-link-color: var(--color-primary);
    --bs-link-hover-color: var(--color-primary-hover);

    /* Focus ring (para inputs, botones, etc.) */
    --bs-focus-ring-color: rgba(var(--bs-primary-rgb), 0.25);
}

/* 2) Tipografía y fondos base */
body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bs-body-bg);
    font-size: 0.9rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.65rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1.05rem;
}

h6 {
    font-size: 0.95rem;
}

p,
li,
label,
.form-control,
.form-select {
    font-size: 0.9rem;
}

/* Navbar / Footer */
.navbar,
footer {
    background-color: var(--bs-dark) !important;
}

.navbar .navbar-brand,
.navbar .nav-link,
footer,
footer a {
    color: var(--color-white) !important;
}

.navbar .nav-link:hover {
    color: var(--color-accent) !important;
}

.navbar-toggler {
    background-color: var(--bs-primary) !important;
}

/* 3) Botones (usando la API de variables de Bootstrap) */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #1C1C1C;
    --bs-btn-hover-bg: var(--color-primary-hover);
    --bs-btn-hover-border-color: var(--color-primary-hover);
    --bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
    --bs-btn-active-bg: var(--color-primary-hover);
    --bs-btn-active-border-color: var(--color-primary-hover);
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 16px;
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #1C1C1C;
    --bs-btn-hover-bg: var(--color-primary-hover);
    --bs-btn-hover-border-color: var(--color-primary-hover);
    --bs-btn-active-bg: var(--color-primary-hover);
    --bs-btn-active-border-color: var(--color-primary-hover);
    border-radius: 10px;
    font-weight: 600;
}

/* 4) Formularios */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 .2rem var(--bs-focus-ring-color);
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* 5) Cards */
.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* 6) Badges para % de descuento */
.badge-offer {
    background: var(--color-accent) !important;
    color: var(--color-dark) !important;
    font-weight: 700;
    border-radius: 6px;
    padding: .25em .6em;
}

/* 7) Links */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 8) Componentes personalizados existentes en tu app */
.row {
    margin-top: 16px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.checkbox {
    margin-right: 16px;
}

.muted {
    color: #777;
    font-size: 14px;
}

.center {
    text-align: center;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

/* 9) Selector de Frecuencia (cards) */
.freq-card {
    border: 2px solid transparent;
    transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease, transform .05s ease;
    cursor: pointer;
}

.freq-card:hover {
    border-color: #dee2e6;
}

.freq-card.selected {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .25);
    background-color: #FFF7F0;
    /* tono cálido sutil */
}

.freq-card:active {
    transform: scale(0.99);
}

/* 10) Utilidades extra */
.btn-accent {
    background: var(--color-accent);
    color: var(--color-dark);
    border: none;
}

.btn-accent:hover {
    filter: brightness(0.95);
}

.bg-accent {
    background: var(--color-accent) !important;
}

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

/* =========================================================
   tg-app — estilos de Ofertas (pegar en custom-styles.css)
   Namespaced para evitar colisiones
   ========================================================= */

.offers-page {
    /* Tokens (con soporte Bootstrap si está presente) */
    --offer-bg: var(--bs-card-bg, #ffffff);
    --offer-text: var(--bs-body-color, #212529);
    --offer-muted: var(--bs-secondary-color, #6c757d);
    --offer-border: var(--bs-border-color, rgba(0, 0, 0, .125));
    --offer-accent: var(--bs-primary, #0d6efd);
    --offer-ok: #22c55e;
    --offer-danger: #ef4444;

    color: var(--offer-text);
}

@media (prefers-color-scheme: dark) {
    .offers-page {
        --offer-bg: var(--bs-card-bg, #16181d);
        --offer-text: var(--bs-body-color, #e6e6e6);
        --offer-muted: #a3a3a3;
        --offer-border: #2a2d34;
        --offer-accent: var(--bs-primary, #5ac8fa);
    }
}

/* Header y acciones */
.offers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1rem;
}

.offers-actions {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.offers-actions input[type="date"] {
    background: var(--offer-bg);
    color: var(--offer-text);
    border: 1px solid var(--offer-border);
    padding: .5rem .6rem;
    border-radius: .5rem;
}

.offers-actions .btn-secondary {
    background: transparent;
    color: var(--offer-accent);
}

/* Grid de cards */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

/* Tarjeta */
.offer-card {
    background: var(--offer-bg);
    border: 1px solid var(--offer-border);
    border-radius: .75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, box-shadow .15s ease;
    position: relative;
}

.offer-card:hover,
.offer-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* Imagen */
.offer-image {
    display: block;
    aspect-ratio: 4/3;
    background: rgba(0, 0, 0, .05);
}

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

.offer-image--placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--offer-muted);
    font-size: .9rem;
}

/* Cuerpo */
.offer-body {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding: .8rem;
}

.offer-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: .6rem;
}

.offer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.25;
}

.offer-title a {
    color: inherit;
    text-decoration: none;
}

.offer-title a:hover,
.offer-title a:focus {
    text-decoration: underline;
}

.offer-badges {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
}

.offer-store,
.offer-channel {
    color: var(--offer-muted);
    font-size: .85rem;
    white-space: nowrap;
}

/* Descripción truncada */
.offer-desc {
    margin: 0;
    color: var(--offer-muted);
    font-size: .92rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Precios */
.offer-prices {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}

.offer-prices .price {
    font-weight: 800;
}

.offer-prices .original-price {
    text-decoration: line-through;
    opacity: .75;
    color: var(--offer-muted);
}

.offer-prices .discount {
    background: color-mix(in srgb, var(--offer-ok) 18%, transparent);
    color: var(--offer-ok);
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: .5rem;
    font-size: .8rem;
    line-height: 1;
}

.offer-prices .offer-coupon {
    background: color-mix(in srgb, var(--offer-accent) 16%, transparent);
    color: var(--offer-accent);
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: .5rem;
    font-size: .8rem;
}

/* Meta */
.offer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    color: var(--offer-muted);
    font-size: .8rem;
}

.offer-meta .offer-category {
    border: 1px solid var(--offer-border);
    padding: .1rem .4rem;
    border-radius: .4rem;
}

.offer-meta .offer-rating {
    white-space: nowrap;
}

.offer-meta .offer-hot {
    white-space: nowrap;
}

/* Estados vacíos */
.offers-page .empty {
    opacity: .85;
    padding: 2rem;
    text-align: center;
    border: 1px dashed var(--offer-border);
    border-radius: .75rem;
}

/* Accesibilidad */
.offer-card a:focus-visible,
.offers-actions a:focus-visible,
.offers-actions button:focus-visible {
    outline: 2px solid var(--offer-accent);
    outline-offset: 2px;
}

/* Pequeños ajustes responsivos */
@media (max-width: 480px) {
    .offers-header {
        flex-direction: column;
        align-items: stretch;
    }

    .offers-actions {
        justify-content: space-between;
    }
}

/* === Ofertas: imagen con alto fijo y sin recortes (object-fit: contain) === */
.offers-page {
    --offer-image-height: 200px;
}

/* ajusta 200px a tu gusto */

.offer-image {
    display: block;
    width: 100%;
    height: var(--offer-image-height);
    aspect-ratio: unset;
    /* anulamos posibles reglas previas */
    background: white;
    /* fondo para barras laterales/superiores */
    overflow: hidden;
    /* por seguridad */
}

/* La imagen (o placeholder) ocupa el contenedor pero sin recortar */
.offer-image>img,
.offer-image>.offer-image--placeholder {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* clave: mostrar la imagen completa */
    object-position: center center;
    /* centrado */
    display: block;
}

/* Ajustes responsivos opcionales */
@media (max-width: 576px) {
    .offers-page {
        --offer-image-height: 160px;
    }
}

@media (min-width: 1200px) {
    .offers-page {
        --offer-image-height: 220px;
    }
}

/* === Ofertas: una tarjeta por fila === */
.offers-page .offers-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    /* fuerza una columna */
    gap: 1rem;
}

/* (Opcional) centra y limita el ancho para mejor lectura */
.offers-page {
    --offers-max-width: 820px;
    /* ajústalo a tu gusto o elimina estas 3 líneas */
}

.offers-page .offers-grid {
    max-width: var(--offers-max-width);
    margin-inline: auto;
    padding-inline: 12px;
}

/* === DISEÑO PROFESIONAL DE TARJETAS DE OFERTAS === */

/* Contenedor de la tarjeta profesional */
.offer-card.offer-card--pro {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--offer-bg);
    border: 1px solid var(--offer-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.offer-card.offer-card--pro:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: color-mix(in srgb, var(--offer-accent) 40%, var(--offer-border));
}

/* Wrapper de imagen con posición relativa para badges */
.offer-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    height: 280px;
    /* Altura fija para consistencia */
}

.offer-card.offer-card--pro .offer-image {
    display: block;
    width: 100%;
    height: 280px;
    /* Altura fija consistente */
    position: relative;
}

.offer-card.offer-card--pro .offer-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Muestra el producto completo sin recortar */
    object-position: center;
    padding: 1.5rem;
    /* Espacio alrededor del producto */
}

.offer-card.offer-card--pro .offer-image--placeholder {
    width: 100%;
    height: 280px;
    /* Altura fija consistente */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--offer-muted);
}

/* Badge de descuento flotante */
.offer-discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    z-index: 2;
}

.discount-percent {
    display: block;
    line-height: 1;
}

/* Cuerpo de la tarjeta */
.offer-card.offer-card--pro .offer-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--offer-bg);
}

/* Header con badges superiores */
.offer-card.offer-card--pro .offer-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offer-header-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.offer-store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: color-mix(in srgb, var(--offer-accent) 12%, transparent);
    color: var(--offer-accent);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.offer-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: color-mix(in srgb, #fbbf24 15%, transparent);
    color: #d97706;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.offer-rating-badge i {
    color: #fbbf24;
    font-size: 0.75rem;
}

.rating-count {
    opacity: 0.7;
    font-weight: 500;
}

/* Título profesional */
.offer-card.offer-card--pro .offer-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.02em;
}

.offer-card.offer-card--pro .offer-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.offer-card.offer-card--pro .offer-title a:hover {
    color: var(--offer-accent);
}

/* Descripción */
.offer-card.offer-card--pro .offer-desc {
    margin: 0;
    color: var(--offer-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sección de precios destacada */
.offer-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--offer-accent) 8%, transparent) 0%,
            color-mix(in srgb, var(--offer-accent) 3%, transparent) 100%);
    border-radius: 12px;
    margin: 0.5rem 0;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--offer-accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-current .currency {
    font-size: 1.25rem;
    font-weight: 700;
    margin-left: 0.2rem;
}

.price-original {
    font-size: 1rem;
    color: var(--offer-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

/* Badge de cupón */
.offer-coupon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: white;
    border: 2px dashed var(--offer-accent);
    border-radius: 8px;
    color: var(--offer-accent);
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.offer-coupon-badge i {
    font-size: 1.1rem;
}

/* Sección de acciones y meta */
.offer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--offer-border);
}

.offer-meta-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--offer-muted);
}

.offer-category-tag,
.offer-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.offer-category-tag {
    padding: 0.3rem 0.6rem;
    background: color-mix(in srgb, var(--offer-accent) 10%, transparent);
    color: var(--offer-accent);
    border-radius: 6px;
    font-weight: 600;
}

.offer-action-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-action-buttons .btn-primary {
    background: var(--offer-accent);
    border-color: var(--offer-accent);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.offer-action-buttons .btn-primary:hover {
    background: color-mix(in srgb, var(--offer-accent) 85%, black);
    border-color: color-mix(in srgb, var(--offer-accent) 85%, black);
    transform: translateX(2px);
}

/* Responsivo */
@media (max-width: 768px) {
    .offer-card.offer-card--pro {
        grid-template-columns: 1fr;
    }

    .offer-image-wrapper {
        height: 240px;
        /* Altura fija en tablets */
    }

    .offer-card.offer-card--pro .offer-image {
        height: 240px;
    }

    .offer-card.offer-card--pro .offer-image--placeholder {
        height: 240px;
    }

    .price-current {
        font-size: 1.75rem;
    }

    .offer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .offer-action-buttons {
        width: 100%;
        justify-content: space-between;
        gap: 0.4rem;
    }

    .offer-action-buttons .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .offer-action-buttons .btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .offer-image-wrapper {
        height: 200px;
        /* Altura fija en móviles */
    }

    .offer-card.offer-card--pro .offer-image {
        height: 200px;
    }

    .offer-card.offer-card--pro .offer-image--placeholder {
        height: 200px;
    }

    .offer-card.offer-card--pro .offer-body {
        padding: 1rem;
    }

    .offer-card.offer-card--pro .offer-title {
        font-size: 1.1rem;
    }

    .price-current {
        font-size: 1.5rem;
    }

    .offer-price-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-action-buttons {
        width: 100%;
        gap: 0.5rem;
    }

    .offer-action-buttons .btn {
        flex: 1;
        font-size: 1rem;
        padding: 0.5rem 0.4rem;
        white-space: nowrap;
    }

    .offer-action-buttons .btn i {
        font-size: 0.85rem;
    }

    .offer-action-buttons .btn span {
        font-size: 1rem;
    }
}

/* === FIN DISEÑO PROFESIONAL === */


/* === ESTILOS LEGACY (mantener por compatibilidad) === */

/* =========================================================
   DonOFERTON – Landing helpers (migrados desde inline)
   Integra con paleta de custom-styles.css
   ========================================================= */

/* Botón de marca (alias del CTA primario) */
.btn-brand {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.btn-brand:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--color-dark);
}

/* Texto con color de marca */
.text-brand {
    color: var(--bs-primary);
}

/* Fondo del hero (fallback + mejora con color-mix si está soportado) */
.hero-bg {
    /* Fallback cálido y limpio */
    background: radial-gradient(80% 80% at 10% 10%, var(--color-light) 0%, var(--color-white) 60%);
    /* Mejora (si el navegador soporta color-mix) */
    background: radial-gradient(80% 80% at 10% 10%,
            color-mix(in srgb, var(--color-accent) 18%, var(--color-white)) 0%,
            var(--color-white) 60%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 122, 0, .18);
    border: 1px solid color-mix(in srgb, var(--color-primary) 18%, transparent);
    background: rgba(255, 255, 255, .9);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-dark);
    color: color-mix(in srgb, var(--color-dark) 70%, var(--color-primary));
    backdrop-filter: blur(6px);
}

.hero-highlight {
    position: relative;
    display: inline-block;
    color: #e35c02;
    padding: 0 .1rem;
    z-index: 0;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero-highlight {
        background: linear-gradient(90deg, #e35c02 0%, #ff6a00 55%, #ff9340 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

.hero-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.25rem;
    height: 1.05rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'%3E%3Cpath d='M4 14 C 28 3, 92 3, 116 14' fill='none' stroke='%23FF9A1F' stroke-width='6' stroke-linecap='round' stroke-linejoin='round' opacity='0.92'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

.hero-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.3rem;
    height: .85rem;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(255, 180, 50, .2) 0%, rgba(255, 180, 50, 0) 65%);
    filter: blur(.4px);
    pointer-events: none;
    z-index: -2;
}

.hero-eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 122, 0, .12);
    background: color-mix(in srgb, var(--color-primary) 16%, var(--color-white));
    color: var(--bs-primary);
    font-size: 1rem;
}

.hero-points li {
    margin-bottom: .75rem;
    color: rgba(28, 28, 28, .72);
    color: color-mix(in srgb, var(--color-dark) 65%, var(--color-white));
}

.hero-points li:last-child {
    margin-bottom: 0;
}

.hero-point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: rgba(255, 122, 0, .1);
    background: color-mix(in srgb, var(--color-primary) 12%, var(--color-white));
    color: var(--bs-primary);
    flex: 0 0 auto;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 122, 0, .24);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-primary) 24%, transparent);
}

.hero-social-proof {
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    max-width: 520px;
    margin-inline: auto;
}

.hero-device {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(28, 28, 28, .06);
}

.hero-device-img {
    display: block;
}

.hero-floating-card {
    position: absolute;
    left: 8%;
    bottom: -14%;
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(28, 28, 28, .16);
    z-index: 2;
}

.hero-floating-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 122, 0, .18);
    background: color-mix(in srgb, var(--color-primary) 24%, var(--color-white));
    color: var(--bs-primary);
    font-size: 1.2rem;
}

.hero-floating-card .badge {
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .75rem;
    letter-spacing: .02em;
}

@media (max-width: 991.98px) {
    .hero-floating-card {
        position: static;
        margin-top: 1.75rem;
        padding: 1.1rem 1.3rem;
        box-shadow: 0 16px 32px rgba(28, 28, 28, .12);
    }

    .hero-visual {
        max-width: 460px;
    }
}

@media (max-width: 575.98px) {
    .hero-eyebrow {
        font-size: .72rem;
    }

    .hero-floating-card {
        margin-inline: auto;
    }

    .hero-highlight::after,
    .hero-highlight::before {
        bottom: -.25rem;
    }
}

/* Badges de confianza (logos pequeños) */
.trusted-badges img {
    height: 28px;
    opacity: .8;
}

/* Iconos de las 4 ventajas */
.feature-icon {
    font-size: 2rem;
    color: var(--bs-primary);
}

/* Card suave (no sustituye a .card global) */
.card-soft {
    background: #fff;
    border: 1px solid var(--bs-border-color, #eee);
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
}

/* Números de pasos */
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Fallback sutil + realce con color-mix */
    background: #FFF7F0;
    background: color-mix(in srgb, var(--color-primary) 15%, var(--color-white));
    color: var(--color-primary);
    font-weight: 600;
}

/* Avatares de prueba social */
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
}

/* Ajuste vertical para bootstrap-icons */
.bi {
    vertical-align: -.125em;
}

/* Gradiente de sección destacada (usa primary → hover) */
.bg-gradient-primary-to-secondary {
    background: linear-gradient(45deg, var(--color-primary), var(--color-primary-hover)) !important;
}

/* Navbar/CTA sticky semitransparente acorde a navbar oscura del tema */
.sticky-cta {
    position: sticky;
    top: 0;
    z-index: 1030;
    /* Fallback */
    background: rgba(28, 28, 28, .85);
    /* Mejora con mezcla (oscuro + transparencia) */
    background: color-mix(in srgb, var(--color-dark) 85%, transparent);
    backdrop-filter: saturate(150%) blur(6px);
}

/* Chips (inputs tipo botón) */
.chip input[type="checkbox"].btn-check+label,
.chip input[type="radio"].btn-check+label {
    margin: .25rem;
}

/* Enlaces del footer sin subrayado por defecto */
footer a {
    text-decoration: none;
}

/* --- Modal de conexión Telegram -> DonOFERTON --- */
.connect-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.brand-bubble {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.brand-bubble.tg {
    /* color corporativo de Telegram */
    background: #229ED9;
    color: #fff;
}

.brand-bubble .bi-telegram {
    font-size: 1.9rem;
    line-height: 1;
}

.connect-logo {
    height: 56px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .12));
}

/* Flecha animada */
.connect-arrow svg {
    display: block;
    width: 160px;
    height: 28px;
    color: var(--bs-primary);
    /* tu color de marca */
}

.connect-arrow path {
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 10 8;
    animation: connect-dash 1.1s linear infinite;
}

.connect-arrow polygon {
    fill: currentColor;
}

/* Animación del trazo en marcha */
@keyframes connect-dash {
    to {
        stroke-dashoffset: -18;
    }
}

/* Responsivo */
@media (max-width: 420px) {
    .brand-bubble {
        width: 56px;
        height: 56px;
    }

    .brand-bubble .bi-telegram {
        font-size: 1.6rem;
    }

    .connect-logo {
        height: 48px;
    }

    .connect-arrow svg {
        width: 120px;
    }
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: #6c757d;
    border-color: #343a40;
    opacity: var(--bs-btn-disabled-opacity);
}

.help-text {
    margin-top: 0.25rem;
    font-size: 0.8em;
    color: #6c757d;
    font-weight: 300 !important;
}

.hr-title {
    margin-top: 1px;
    margin-bottom: 8px;
    border-width: 2px;
    color: #ff7a00;
    opacity: 1;
}

.hr-divider {
    margin-top: 2px;
    /* Espacio mínimo debajo del label */
    margin-bottom: 8px;
    /* Espacio antes del input */
    border-color: #acabab;
    /* (opcional) color más suave */
    padding-bottom: 2px;
}

.reverse-select {
    /* Mueve el texto de la hora a la derecha */
    text-align: right;

    /* Usa un relleno a la izquierda para el espacio donde estaba la flecha */
    padding-left: 2rem !important;

    /* Mueve la flecha del dropdown (la imagen de fondo) a la izquierda */
    background-position: left 0.5rem center;

    /* Asegura que el relleno de la derecha no interfiera */
    padding-right: 0.6rem !important;
}

/* Hover suave para las categorías de offers.html */
#categoriesList label.btn:hover {
    background-color: #f1f1f1 !important;
    color: #000 !important;
    border-color: #ccc !important;
    transition: background-color 0.2s ease-in-out, color 0.2s;
}

/* Mantener color cuando está seleccionada (ya marcada) */
#categoriesList .btn-check:checked+label.btn {
    background-color: #6c757d !important;
    /* gris Bootstrap */
    color: #fff !important;
    border-color: #6c757d !important;
}

/* Estado normal */
#categoriesList label.btn {
    transition: background-color 0.2s ease-in-out, color 0.2s;
}

/* Hover (pasa el ratón) */
#categoriesList label.btn:hover {
    background-color: #f1f1f1 !important;
    color: #000 !important;
    border-color: #ccc !important;
}

/* Checked + hover (mantén oscuro pero más intenso) */
#categoriesList .btn-check:checked+label.btn:hover {
    background-color: #343a40 !important;
    /* aún más oscuro */
    border-color: #343a40 !important;
    color: #000000 !important;
}

.pagination .page-link {
    cursor: pointer;
}

.pagination .page-item.disabled .page-link {
    cursor: not-allowed;
}

/* Personalización del botón activo en paginación */
.pagination .page-item.active>.page-link {
    z-index: 3;
    color: #fff !important;
    background-color: #343a40 !important;
    /* gris oscuro */
    border-color: #343a40 !important;
    font-weight: 600;
    box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.2);
}

/* Hover sobre el activo (más contraste aún) */
.pagination .page-item.active>.page-link:hover {
    background-color: #212529 !important;
    border-color: #212529 !important;
}

/* Otros botones de paginación (hover normal) */
.pagination .page-link:hover {
    background-color: #f1f1f1 !important;
    color: #000 !important;
}

/* === Accordion estilo DonOFERTÓN === */
.accordion-donoferton {
    border: none;
}

.accordion-donoferton .accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    background-color: #fff;
}

.accordion-donoferton .accordion-button {
    background-color: #f8f9fa;
    color: #212529;
    font-weight: 600;
    border: none;
    box-shadow: none;
    transition: all 0.2s ease-in-out;
    padding: 0.9rem 1.25rem;
}

.accordion-donoferton .accordion-button:not(.collapsed) {
    background-color: #e9ecef;
    color: #000;
    border-bottom: 1px solid #ddd;
}

.accordion-donoferton .accordion-button:hover {
    background-color: #f1f1f1;
}

.accordion-donoferton .accordion-body {
    background-color: #fff;
    color: #444;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
}

/* Quita el icono azul predeterminado */
.accordion-donoferton .accordion-button::after {
    filter: grayscale(1) brightness(0.5);
    transition: transform 0.2s ease;
}

.accordion-donoferton .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
    filter: grayscale(0);
}

/* === MODAL DE COMPARTIR - ESTILOS PROFESIONALES === */

/* Botones de redes sociales con colores de marca */
.share-btn {
    border: 2px solid;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* WhatsApp */
.share-btn-whatsapp {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.share-btn-whatsapp:hover {
    background-color: #20BA5A;
    border-color: #20BA5A;
    color: white;
}

/* Telegram */
.share-btn-telegram {
    background-color: #0088cc;
    border-color: #0088cc;
    color: white;
}

.share-btn-telegram:hover {
    background-color: #006FA8;
    border-color: #006FA8;
    color: white;
}

/* Facebook */
.share-btn-facebook {
    background-color: #1877F2;
    border-color: #1877F2;
    color: white;
}

.share-btn-facebook:hover {
    background-color: #0C63D4;
    border-color: #0C63D4;
    color: white;
}

/* X (Twitter) */
.share-btn-x {
    background-color: #000000;
    border-color: #000000;
    color: white;
}

.share-btn-x:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

/* Botón de copiar enlace con degradado naranja */
.btn-copy-link {
    background: linear-gradient(135deg, #ff7a00 0%, #ff9500 50%, #ffb300 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-copy-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-copy-link:hover {
    background: linear-gradient(135deg, #e66b00 0%, #ff8500 50%, #ffa500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    color: white;
}

.btn-copy-link:hover::before {
    left: 100%;
}

.btn-copy-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 122, 0, 0.3);
}

.btn-copy-link.copied {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-copy-link .btn-text {
    position: relative;
    z-index: 1;
}

/* Estilo del input de enlace (ahora oculto) */
#shareOfferModal .share-link-input {
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    color: #495057;
}

/* Animación del feedback de copiado */
.share-copy-feedback {
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejorar el modal content */
#shareOfferModal .modal-content {
    border-radius: 16px;
    overflow: hidden;
}

#shareOfferModal .modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
}

#shareOfferModal .modal-body {
    padding: 1.5rem;
}

/* Estilos responsivos para móviles */
@media (max-width: 768px) {
    #shareOfferModal .modal-header {
        padding: 1rem;
    }

    #shareOfferModal .modal-body {
        padding: 1rem;
    }

    .btn-copy-link {
        font-size: 1rem;
        padding: 0.75rem 2rem !important;
    }

    .share-btn {
        font-size: 0.9rem;
        padding: 0.65rem 0.75rem;
    }
}

@media (max-width: 576px) {
    #shareOfferModal .modal-header {
        padding: 0.875rem;
    }

    #shareOfferModal .modal-body {
        padding: 0.875rem;
    }

    #shareOfferModal .modal-title {
        font-size: 1.15rem;
    }

    .btn-copy-link {
        font-size: 1rem;
        padding: 0.625rem 3.25rem !important;
        white-space: nowrap;
    }

    .btn-copy-link i {
        font-size: 1.1rem;
    }

    .btn-copy-link .btn-text {
        font-size: 0.875rem;
    }

    .share-btn {
        font-size: 0.8rem;
        padding: 0.5rem 0.5rem;
        flex-direction: column;
        gap: 0.25rem !important;
    }

    .share-btn i {
        font-size: 1.25rem;
        margin: 0 !important;
    }

    .share-btn span {
        font-size: 0.75rem;
        margin: 0 !important;
    }

    #shareOfferModal .alert {
        padding: 0.625rem;
        font-size: 0.8rem;
    }

    #shareOfferModal .alert i {
        font-size: 0.9rem;
    }
}

/* === FIN ESTILOS MODAL COMPARTIR === */

/* === ESTILOS FILTROS DE MIS OFERTAS === */

/* Contenedor principal de filtros */
.my-offers-filters {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Header de filtros con botón colapsable */
.filter-header {
    margin-bottom: 0;
}

.filter-header button[data-bs-toggle="collapse"] {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
    background: white;
}

.filter-header button[data-bs-toggle="collapse"]:hover {
    background: #f8f9fa;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.15);
}

.filter-header button[data-bs-toggle="collapse"]:not(.collapsed) {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border-color: var(--color-primary);
    color: white !important;
    box-shadow: 0 4px 16px rgba(255, 122, 0, 0.25);
}

.filter-header button[data-bs-toggle="collapse"]:not(.collapsed):hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
}

/* Animación del chevron */
.filter-header button[data-bs-toggle="collapse"] .bi-chevron-down {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.filter-header button[data-bs-toggle="collapse"]:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

/* Badge contador */
.filter-header .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
}

.filter-header button[data-bs-toggle="collapse"]:not(.collapsed) .badge {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.filter-header h3 {
    font-size: 1.5rem;
    color: #1c1c1c;
    letter-spacing: -0.02em;
}

.filter-header .btn {
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.filter-header .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.2);
}

/* Grid de filtros */
.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Tarjeta de filtro individual */
.filter-card {
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.filter-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Header de cada filtro */
.filter-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-icon {
    font-size: 2rem;
    color: var(--color-primary);
    background: color-mix(in srgb, var(--color-primary) 12%, white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #1c1c1c;
    letter-spacing: -0.01em;
}

.filter-subtitle {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    margin-top: 0.2rem;
}

/* Body del filtro */
.filter-card-body {
    min-height: 80px;
}

/* Contenedor de tags */
.filter-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Tags de filtros */
.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.65rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: default;
}

.filter-tag i {
    font-size: 0.75rem;
}

.filter-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Categorías */
.filter-tag-category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

/* Palabras clave */
.filter-tag-keyword {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(245, 87, 108, 0.3);
}

/* Estado vacío */
.filter-empty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.filter-empty i {
    font-size: 1.1rem;
    opacity: 0.7;
}

/* Resumen de resultados */
.filter-summary {
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--color-primary) 8%, white) 0%,
            color-mix(in srgb, var(--color-primary) 3%, white) 100%);
    border-radius: 12px;
    padding: 1.25rem;
    border: 2px dashed color-mix(in srgb, var(--color-primary) 30%, white);
}

.filter-summary-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-summary-count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.filter-summary-text {
    font-size: 1rem;
    color: #1c1c1c;
    font-weight: 500;
}

/* Header de sección de ofertas */
.offers-section-header {
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.offers-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

/* Responsivo */
@media (max-width: 768px) {
    .my-offers-filters {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filter-header h3 {
        font-size: 1.25rem;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filter-card {
        padding: 1rem;
    }

    .filter-icon {
        width: 44px;
        height: 44px;
        font-size: 1.75rem;
    }

    .filter-title {
        font-size: 1rem;
    }

    .filter-summary-count {
        font-size: 2rem;
    }

    .filter-summary-text {
        font-size: 0.9rem;
    }

    .offers-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .my-offers-filters {
        padding: 1rem;
    }

    .filter-header h3 {
        font-size: 1.1rem;
    }

    .filter-header .btn span {
        display: none;
    }

    .filter-card {
        padding: 0.875rem;
    }

    .filter-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }

    .filter-summary {
        padding: 1rem;
    }

    .filter-summary-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .filter-summary-count {
        font-size: 1.75rem;
    }

    .offers-section-title {
        font-size: 1.25rem;
    }
}

/* === FIN ESTILOS FILTROS DE MIS OFERTAS === */

/* === ESTILOS FILTROS DE OFERTAS (SIDEBAR + OFFCANVAS) === */

/* Botón de filtros móvil (fixed top) */
.btn-filters-mobile {
    position: fixed;
    top: 70px;
    /* Debajo de la navbar */
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    margin: 0 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: calc(100% - 2rem);
}

.btn-filters-mobile:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-filters-mobile i {
    font-size: 1.2rem;
}

.btn-filters-mobile .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Sidebar de filtros (Desktop) */
.offers-sidebar {
    display: block;
}

.filters-container {
    position: sticky;
    top: 80px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Header de filtros */
.filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.filters-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.filters-title i {
    color: var(--color-primary);
}

/* Secciones de filtro */
.filter-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-section:last-of-type {
    border-bottom: none;
}

.filter-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.filter-section-header i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.filter-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
    flex: 1;
}

.filter-section-header .badge {
    font-size: 0.7rem;
}

.filter-section-body {
    padding-left: 0;
}

/* Items de checkbox */
.filter-checkbox-item {
    display: flex;
    align-items: center;
    padding: 0.625rem 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.filter-checkbox-item:hover {
    background: #f8f9fa;
}

.filter-checkbox-item .form-check-input {
    margin-right: 0.75rem;
    cursor: pointer;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    transition: all 0.2s ease;
}

.filter-checkbox-item .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.filter-checkbox-item .form-check-label {
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
    margin: 0;
    flex: 1;
}

/* Texto de ayuda */
.filter-help-text {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #6c757d;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.filter-help-text i {
    font-size: 0.85rem;
}

/* Acciones de filtro */
.filter-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.filter-actions .btn {
    font-weight: 600;
    padding: 0.75rem;
}

/* Contenido principal */
.offers-main {
    min-height: 100vh;
}

.offers-header-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.offers-main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
    letter-spacing: -0.02em;
}

.offers-main-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0.5rem 0 0 0;
}

/* Offcanvas móvil */
.offcanvas {
    width: 85% !important;
    max-width: 380px;
}

.offcanvas-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: white;
    border-bottom: none;
}

.offcanvas-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offcanvas-header .btn-close {
    filter: brightness(0) invert(1);
}

.offcanvas-body {
    padding: 1.5rem;
}

/* Contenedor principal con espacio lateral */
.offers-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .offers-sidebar {
        display: none;
    }

    .btn-filters-mobile {
        display: flex;
    }

    .offers-main {
        padding: 0;
        margin-top: 80px;
        /* Espacio para el botón de filtros */
    }

    .offers-page-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .btn-filters-mobile {
        top: 65px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        margin: 0 0.75rem;
        width: calc(100% - 1.5rem);
    }

    .offers-header-bar {
        padding: 1.25rem;
    }

    .offers-main-title {
        font-size: 1.5rem;
    }

    .offers-main-subtitle {
        font-size: 0.9rem;
    }

    .offers-page-container {
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .btn-filters-mobile {
        top: 60px;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }

    .offers-main {
        margin-top: 75px;
    }

    .offcanvas {
        width: 90% !important;
    }

    .offcanvas-body {
        padding: 1rem;
    }

    .filter-section {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .filters-header {
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }

    .offers-header-bar {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .offers-main-title {
        font-size: 1.25rem;
    }

    .offers-main-subtitle {
        font-size: 0.85rem;
    }

    .offers-page-container {
        padding: 0 0.75rem;
    }
}

/* === ESTILOS DE SLIDER DE PRECIO === */

/* Contenedor de sliders */
.price-slider-container {
    position: relative;
    height: 40px;
    margin-bottom: 0.5rem;
}

/* Sliders superpuestos */
.price-slider {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}

.price-slider::-webkit-slider-track {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right,
            #e9ecef 0%,
            var(--color-primary) 0%,
            var(--color-primary) 100%,
            #e9ecef 100%);
    border-radius: 3px;
}

.price-slider::-moz-range-track {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    margin-top: -7px;
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.price-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.price-slider::-webkit-slider-thumb:active {
    transform: scale(1.05);
}

.price-slider::-moz-range-thumb:active {
    transform: scale(1.05);
}

/* Barra de progreso entre los dos sliders */
.price-slider-container::before {
    content: '';
    position: absolute;
    top: 17px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 3px;
    pointer-events: none;
    z-index: 0;
}

/* Ajustes para inputs de precio */
.filter-section-body input[type="number"] {
    font-weight: 600;
    color: var(--color-primary);
}

.filter-section-body input[type="number"]::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

/* === DROPDOWN DE CATEGORÍAS === */

/* Botón del dropdown */
.filter-section-body button[data-bs-toggle="collapse"] {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #dee2e6;
    background: white;
    color: #374151;
}

.filter-section-body button[data-bs-toggle="collapse"]:hover {
    background: #f8f9fa;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-section-body button[data-bs-toggle="collapse"]:not(.collapsed) {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    border-color: var(--color-primary);
    color: white !important;
}

.filter-section-body button[data-bs-toggle="collapse"]:not(.collapsed):hover {
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
    color: white !important;
}

/* Animación del chevron */
.filter-section-body button[data-bs-toggle="collapse"] .bi-chevron-down {
    transition: transform 0.3s ease;
}

.filter-section-body button[data-bs-toggle="collapse"]:not(.collapsed) .bi-chevron-down {
    transform: rotate(180deg);
}

/* Contenedor del dropdown */
.categories-dropdown-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

/* Scrollbar del dropdown */
.categories-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.categories-dropdown-list::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px;
}

.categories-dropdown-list::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 10px;
}

.categories-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #6c757d;
}

/* Items dentro del dropdown */
.categories-dropdown-list .filter-checkbox-item {
    background: white;
    margin-bottom: 0.35rem;
    border: 1px solid #e9ecef;
}

.categories-dropdown-list .filter-checkbox-item:last-child {
    margin-bottom: 0;
}

/* === FIN ESTILOS FILTROS DE OFERTAS === */

/* === ESTILOS MODAL DE TELEGRAM CONNECT === */

/* Ícono principal de Telegram */
.tg-connect-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0088cc 0%, #006ba8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.25);
    animation: tgIconPulse 2s ease-in-out infinite;
}

@keyframes tgIconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 136, 204, 0.25);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 136, 204, 0.35);
    }
}

.tg-connect-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

/* Modal header sin borde */
#tgConnect .modal-header {
    padding: 1rem 1rem 0 1rem;
}

#tgConnect .modal-body {
    padding-top: 2rem;
}

/* Beneficios de conectar */
.tg-connect-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

/* Alert mejorado */
#tgConnect .alert {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 1rem;
}

#tgConnect .alert strong {
    color: #1c1c1c;
}

/* Responsive para modal */
@media (max-width: 576px) {
    .tg-connect-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .tg-connect-icon-wrapper i {
        font-size: 2rem;
    }

    #tgConnect h2 {
        font-size: 1.5rem;
    }

    #tgConnect .modal-body {
        padding: 1.5rem 1rem;
    }

    .benefit-item {
        padding: 0.625rem 0.875rem;
    }

    .benefit-item i {
        font-size: 1.25rem;
    }

    .benefit-item span {
        font-size: 0.85rem;
    }
}

/* === FIN ESTILOS MODAL DE TELEGRAM CONNECT === */


/* =========================================================
   SETUP PAGE - Modern Redesign Styles
   ========================================================= */

/* Step badges with gradient */
.step-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Category buttons */
.category-btn {
    transition: all 0.2s ease;
    border-width: 2px !important;
    font-size: 0.8rem;
    padding: 0.4rem 0.65rem;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-check:checked+.category-btn {
    background-color: #FF7A00 !important;
    border-color: #FF7A00 !important;
    color: white !important;
}

/* Category search input */
#cat-search {
    font-size: 0.85rem;
}

#cat-search::placeholder {
    font-size: 0.85rem;
}

/* Frequency cards */
.freq-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border-color: #dee2e6 !important;
}

.freq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.btn-check:checked+.freq-card {
    border-color: #FF7A00 !important;
    border-width: 3px !important;
    background-color: #fff8f0 !important;
}

.btn-check:checked+.freq-card .card-title {
    color: #FF7A00;
}

/* Action buttons sticky bar */
.action-buttons {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 2px solid #e9ecef;
    padding: 1.5rem 0;
    margin-top: 2rem;
    z-index: 10;
}

/* Save button with gradient */
.save-button {
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.save-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 122, 0, 0.3);
}

/* Category items animation */
.cat-item {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hidden category (for search filter) */
.hidden-cat {
    display: none !important;
}

/* Hide check icon by default, show only when checked */
.category-btn .category-check-icon {
    display: none;
    font-size: 0.75rem;
}

/* Mobile optimizations for setup page */
@media (max-width: 767.98px) {

    /* Reducir padding de las cards */
    .card-body {
        padding: 0rem !important;
    }

    /* Grid de categorías - asegurar 2 por línea */
    #cat-list .cat-item {
        flex: 0 0 50%;
        max-width: 49%;
    }

    /* Reducir márgenes entre secciones */
    .card.mb-4 {
        margin-bottom: 1rem !important;
    }

    /* Reducir espacio del header */
    .container.py-2 .row.mb-2 {
        margin-bottom: 0.5rem !important;
    }

    .text-center.mb-2 {
        margin-bottom: 0.5rem !important;
    }

    .display-5 {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .lead {
        font-size: 0.95rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Reducir espacio entre título y contenido de cada paso */
    .d-flex.align-items-center.mb-3 {
        margin-bottom: 1rem !important;
    }

    /* Badge de paso más pequeño */
    .step-badge {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    /* Títulos de sección más pequeños */
    .h5.mb-0.fw-bold {
        font-size: 1rem !important;
    }

    .text-muted.small {
        font-size: 0.8rem !important;
    }

    /* Reducir espacio del buscador de categorías */
    .mb-3 {
        margin-bottom: 0.75rem !important;
    }

    /* Botones de seleccionar/limpiar más compactos y rectangulares */
    #check-all,
    #uncheck-all {
        border-radius: 0.375rem !important;
        /* Bordes más cuadrados, no ovalados */
        padding: 0.4rem 0.75rem !important;
        font-size: 0.8rem !important;
        flex: 1;
        /* Ocupan todo el ancho disponible */
    }

    .d-flex.gap-2.mb-3 {
        margin-bottom: 0.75rem !important;
    }

    /* Grid de categorías más compacto */
    .row.g-2 {
        gap: 0.4rem !important;
    }

    /* Alerts más compactos */
    .alert {
        padding: 0.75rem 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    /* Tarjetas de frecuencia más compactas */
    .freq-card .card-body {
        padding: 1.25rem 0.75rem !important;
    }

    .freq-card .display-4 {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }

    .freq-card .card-title {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .freq-card .card-text {
        font-size: 0.75rem !important;
    }

    /* Secciones de configuración adicional más compactas */
    #quiet-hours,
    #daily-time,
    .mt-4.p-4 {
        margin-top: 0.75rem !important;
        padding: 1rem !important;
    }

    /* Action buttons más compactos */
    .action-buttons {
        padding: 1rem 0 !important;
        margin-top: 1rem !important;
    }

    /* Input de email más pequeño */
    .form-control-lg {
        font-size: 0.95rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    /* Textarea de keywords más compacto */
    #keywords {
        font-size: 0.85rem !important;
    }
}

.btn-check:checked+.category-btn .category-check-icon {
    display: inline-block;
}

/* === FIN ESTILOS SETUP PAGE === */

/* =========================================================
   CUSTOM CONFIGURATION SECTION - Gloss/Neon Images
   ========================================================= */

/* Container para las imágenes con efecto gloss/neon */
.config-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.config-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 122, 0, 0.35);
}

/* Imagen con borde gloss/neon */
.config-image {
    max-width: 300px;
    /* o 100% */
    height: auto;
    display: block;
    border: 3px solid transparent;
    border-radius: 1rem;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg,
            #FF7A00 0%,
            #FFB100 25%,
            #FFD43B 50%,
            #FFB100 75%,
            #FF7A00 100%) border-box;
    position: relative;
}

/* Efecto de brillo/gloss sobre la imagen */
.config-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    border-radius: 1rem;
    opacity: 0.6;
}

/* Animación de pulso neon sutil */
@keyframes neonPulse {

    0%,
    100% {
        box-shadow:
            0 0 20px rgba(255, 122, 0, 0.3),
            0 0 40px rgba(255, 122, 0, 0.2),
            0 10px 40px rgba(255, 122, 0, 0.2);
    }

    50% {
        box-shadow:
            0 0 30px rgba(255, 122, 0, 0.5),
            0 0 60px rgba(255, 122, 0, 0.3),
            0 15px 50px rgba(255, 122, 0, 0.35);
    }
}

.config-image-wrapper.animated {
    animation: neonPulse 3s ease-in-out infinite;
}

/* Contenedor de texto con feature */
.config-feature {
    padding: 2rem 0;
}

.config-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.config-feature-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Badge para destacar características */
.config-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #FF7A00, #FFB100);
    color: white;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .config-feature {
        padding: 1.5rem 0;
        text-align: center;
    }

    .config-image-wrapper {
        margin-bottom: 1.5rem;
    }

    .config-feature-title {
        font-size: 1.2rem;
    }
}

/* === FIN ESTILOS CUSTOM CONFIGURATION === */

/* =========================================================
   COMPARISON SECTION - Nosotros vs Otros
   ========================================================= */

.bg-light-success {
    background-color: #f0f9f4 !important;
}

#comparacion .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#comparacion .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Efecto neon en el borde verde de DonOFERTON */
#comparacion .border-success {
    border-width: 2px !important;
    box-shadow: 0 0 10px rgba(25, 135, 84, 0.3),
        0 0 20px rgba(25, 135, 84, 0.2),
        0 0 30px rgba(25, 135, 84, 0.1);
    animation: neonGreenPulse 2s ease-in-out infinite;
}

#comparacion .border-success:hover {
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.5),
        0 0 30px rgba(25, 135, 84, 0.3),
        0 0 45px rgba(25, 135, 84, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes neonGreenPulse {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(25, 135, 84, 0.3),
            0 0 20px rgba(25, 135, 84, 0.2),
            0 0 30px rgba(25, 135, 84, 0.1);
    }

    50% {
        box-shadow: 0 0 15px rgba(25, 135, 84, 0.5),
            0 0 30px rgba(25, 135, 84, 0.3),
            0 0 45px rgba(25, 135, 84, 0.2);
    }
}

#comparacion .vr {
    width: 2px;
    background-color: var(--bs-border-color);
}

.comparison-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* === FIN ESTILOS COMPARISON SECTION === */