/* ============================================
   Novedades Page - Estilos específicos
   ============================================ */

/* Hero Section */
.novedades-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #F8F7FF 0%, #EDE9FE 50%, #F5F3FF 100%);
}

.novedades-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.15);
    animation: floatIcon 6s ease-in-out infinite;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.icon-1 { top: 20%; left: 18%; animation-delay: 0s; }
.icon-2 { top: 15%; right: 20%; animation-delay: 1s; }
.icon-3 { top: 65%; left: 22%; animation-delay: 2s; }
.icon-4 { top: 70%; right: 18%; animation-delay: 0.5s; }
.icon-5 { top: 45%; left: 12%; animation-delay: 1.5s; }
.icon-6 { top: 40%; right: 14%; animation-delay: 2.5s; }

.icon-1 svg { color: #7C3AED; }
.icon-2 svg { color: #EC4899; }
.icon-3 svg { color: #F59E0B; }
.icon-4 svg { color: #10B981; }
.icon-5 svg { color: #3B82F6; }
.icon-6 svg { color: #EF4444; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Hero Content */
.novedades-hero-content {
    position: relative;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.hero-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.novedades-hero-content .section-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 8px 20px;
    font-weight: 600;
}

.novedades-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 24px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.novedades-hero-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.08);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
    border-color: var(--color-primary-light);
}

.hero-tag svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* Feature Destacada */
.feature-destacada {
    padding: 80px 0 100px;
    background: white;
}

.feature-card-grande {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F3FF 100%);
    border-radius: 32px;
    padding: 60px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.08);
}

.feature-badges-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.badge-nuevo {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.badge-premium svg {
    width: 14px;
    height: 14px;
}

.feature-card-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-subtitle {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 24px;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Benefits */
.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.1);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Button */
.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    gap: 10px;
}

.btn-lg svg {
    width: 20px;
    height: 20px;
}

/* Image Section */
.feature-card-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    background: #1A1A2E;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-frame img {
    width: 100%;
    border-radius: 32px;
    display: block;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    z-index: 10;
}

.floating-stat svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Pegatina arriba-derecha del celular */
.floating-stat-1 {
    top: 20%;
    left: 50%;
    margin-left: 100px;
    animation: floatRight 3s ease-in-out infinite;
}

.floating-stat-1 svg {
    color: var(--color-primary);
}

/* Pegatina abajo-izquierda del celular */
.floating-stat-2 {
    bottom: 20%;
    right: 50%;
    margin-right: 100px;
    animation: floatLeft 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.floating-stat-2 svg {
    color: #10B981;
}

@keyframes floatRight {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(3px); }
}

@keyframes floatLeft {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(-3px); }
}

/* Próximas Novedades */
.proximas-novedades {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.proximas-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.proximas-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.proximas-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 2;
}

.proximas-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

/* Confetti para el icono */
.proximas-confetti {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.proximas-confetti .confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    opacity: 0;
    top: 0;
    left: 0;
}

.proximas-confetti .confetti-piece.rise {
    animation: iconConfettiRise 1.5s ease-out forwards;
}

.proximas-confetti .confetti-piece.fall {
    animation: iconConfettiFall 1.5s ease-out forwards;
}

.proximas-confetti .confetti-piece:nth-child(odd) {
    border-radius: 50%;
}

.proximas-confetti .confetti-piece:nth-child(3n) {
    width: 6px;
    height: 6px;
}

@keyframes iconConfettiRise {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--end-x, 0px)), calc(-50% + var(--end-y, -80px))) rotate(var(--rotation, 360deg)) scale(0.3);
    }
}

@keyframes iconConfettiFall {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--end-x, 0px)), calc(-50% + var(--end-y, 80px))) rotate(var(--rotation, -360deg)) scale(0.3);
    }
}

.proximas-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.proximas-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.proximas-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.proximas-social .social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.proximas-social .social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.proximas-social .social-btn svg {
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.proximas-social .social-btn:hover svg {
    color: white;
}

/* Responsive */
@media (max-width: 1100px) {
    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-card-grande {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 40px;
    }

    .feature-card-image {
        order: -1;
    }

    .floating-stat-1 {
        margin-left: 50px;
    }

    .floating-stat-2 {
        margin-right: 50px;
    }
}

@media (max-width: 768px) {
    .novedades-hero {
        padding: 150px 0 70px;
    }

    .floating-icons {
        display: none;
    }

    .hero-emoji {
        font-size: 3rem;
    }

    .novedades-hero-content h1 {
        font-size: 2.25rem;
    }

    .novedades-hero-content p {
        font-size: 1rem;
        br { display: none; }
    }

    .hero-tags {
        gap: 8px;
    }

    .hero-tag {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero-tag svg {
        width: 14px;
        height: 14px;
    }

    .feature-destacada {
        padding: 60px 0 80px;
    }

    .feature-card-grande {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .feature-card-content h2 {
        font-size: 1.75rem;
    }

    .feature-subtitle {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .phone-frame {
        width: 240px;
    }

    .floating-stat {
        display: none;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
    }

    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }

    .proximas-novedades {
        padding: 60px 0;
    }

    .proximas-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .proximas-icon {
        width: 64px;
        height: 64px;
    }

    .proximas-icon svg {
        width: 28px;
        height: 28px;
    }

    .proximas-content h3 {
        font-size: 1.5rem;
    }
}

/* Mejoras responsive para móviles pequeños */
@media (max-width: 480px) {
    .novedades-hero {
        padding: 120px 0 50px;
    }

    .hero-emoji {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .novedades-hero-content .section-badge {
        padding: 6px 14px;
        font-size: 12px;
    }

    .novedades-hero-content h1 {
        font-size: 1.75rem;
        margin: 16px 0;
    }

    .novedades-hero-content p {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-tags {
        gap: 6px;
    }

    .hero-tag {
        padding: 6px 12px;
        font-size: 11px;
    }

    .hero-tag svg {
        width: 12px;
        height: 12px;
    }

    .feature-destacada {
        padding: 40px 0 60px;
    }

    .feature-card-grande {
        padding: 24px 16px;
        border-radius: 20px;
        gap: 32px;
    }

    .feature-badges-row {
        margin-bottom: 16px;
        gap: 8px;
    }

    .badge-nuevo,
    .badge-premium {
        padding: 5px 10px;
        font-size: 10px;
    }

    .feature-card-content h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .feature-subtitle {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .feature-description {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .feature-benefits {
        gap: 16px;
        margin-bottom: 28px;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .benefit-text strong {
        font-size: 0.9rem;
    }

    .benefit-text span {
        font-size: 0.8rem;
    }

    .btn-lg {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        justify-content: center;
    }

    .phone-frame {
        width: 200px;
        border-radius: 32px;
        padding: 10px;
    }

    .phone-frame img {
        border-radius: 24px;
    }

    .proximas-novedades {
        padding: 50px 0;
    }

    .proximas-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .proximas-icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .proximas-icon svg {
        width: 24px;
        height: 24px;
    }

    .proximas-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .proximas-content p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .proximas-social {
        gap: 10px;
    }

    .proximas-social .social-btn {
        width: 44px;
        height: 44px;
    }

    .proximas-social .social-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Ultra pequeño (iPhone SE, etc.) */
@media (max-width: 375px) {
    .novedades-hero {
        padding: 100px 0 40px;
    }

    .hero-emoji {
        font-size: 2rem;
    }

    .novedades-hero-content h1 {
        font-size: 1.5rem;
    }

    .novedades-hero-content p {
        font-size: 0.85rem;
    }

    .feature-card-grande {
        padding: 20px 14px;
    }

    .feature-card-content h2 {
        font-size: 1.35rem;
    }

    .phone-frame {
        width: 180px;
    }

    .proximas-content {
        padding: 0 8px;
    }
}

/* Mejoras para dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    .hero-tag:hover,
    .proximas-social .social-btn:hover {
        transform: none;
    }

    .hero-tag:active {
        transform: scale(0.98);
    }

    .proximas-social .social-btn:active {
        transform: scale(0.95);
        background: var(--color-primary);
        border-color: var(--color-primary);
    }

    .proximas-social .social-btn:active svg {
        color: white;
    }
}

/* ============================================
   Carrusel de Novedades
   ============================================ */

.novedades-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.carousel-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.carousel-nav-btn:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--text-muted);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    width: 36px;
    border-radius: 6px;
}

.novedades-carousel {
    overflow: hidden;
    border-radius: 0;
    position: relative;
    flex: 1;
    min-width: 0;
}

.novedades-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.novedades-track::-webkit-scrollbar {
    display: none;
}

.novedad-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    scroll-snap-align: start;
}

/* Asegurar que las cards dentro del carrusel se vean bien */
.novedad-slide .feature-card-grande {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

/* En el carrusel, mantener el grid de las cards */
.novedades-carousel .feature-card-grande {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px 50px;
}

.novedades-carousel .feature-badges-row {
    margin-bottom: 12px;
}

.novedades-carousel .feature-card-content h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.novedades-carousel .feature-subtitle {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.novedades-carousel .feature-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.novedades-carousel .feature-benefits {
    gap: 12px;
    margin-bottom: 24px;
}

.novedades-carousel .benefit-item {
    gap: 12px;
}

.novedades-carousel .benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.novedades-carousel .benefit-icon svg {
    width: 20px;
    height: 20px;
}

.novedades-carousel .benefit-text {
    gap: 2px;
}

.novedades-carousel .benefit-text strong {
    font-size: 0.9rem;
}

.novedades-carousel .benefit-text span {
    font-size: 0.85rem;
}

.novedades-carousel .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.novedades-carousel .phone-frame {
    width: 240px;
}

.novedades-carousel .floating-stat {
    padding: 10px 16px;
    font-size: 13px;
}

/* Responsive del carrusel - tablets */
@media (max-width: 1100px) {
    .novedades-carousel .feature-card-grande {
        gap: 30px;
        padding: 32px 36px;
    }

    .novedades-carousel .phone-frame {
        width: 200px;
    }

    .novedades-carousel .floating-stat-1 {
        margin-left: 50px;
    }

    .novedades-carousel .floating-stat-2 {
        margin-right: 50px;
    }
}

/* Responsive del carrusel - móvil */
@media (max-width: 768px) {
    .feature-destacada .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .novedades-carousel-wrapper .carousel-nav-btn {
        display: none;
    }

    .novedades-carousel .feature-card-grande {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px;
    }

    .novedades-carousel .feature-card-image {
        order: -1;
    }

    .novedades-carousel .phone-frame {
        width: 160px;
    }

    .novedades-carousel .floating-stat {
        display: none;
    }

    .novedades-carousel .feature-card-content h2 {
        font-size: 1.6rem;
    }

    .novedades-carousel .feature-benefits {
        gap: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .feature-destacada .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .novedades-carousel .feature-card-grande {
        padding: 20px 16px;
        gap: 16px;
        border-radius: 20px;
    }

    .novedades-carousel .phone-frame {
        width: 140px;
    }

    .novedades-carousel .feature-card-content h2 {
        font-size: 1.4rem;
    }

    .novedades-carousel .feature-subtitle {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .novedades-carousel .feature-description {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .novedades-carousel .benefit-icon {
        width: 34px;
        height: 34px;
    }

    .novedades-carousel .benefit-icon svg {
        width: 16px;
        height: 16px;
    }

    .novedades-carousel .benefit-text strong {
        font-size: 0.85rem;
    }

    .novedades-carousel .benefit-text span {
        font-size: 0.8rem;
    }

    .novedades-carousel .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Ajustes para el carrusel en tablets */
@media (max-width: 900px) {
    .novedades-carousel-wrapper {
        gap: 16px;
    }

    .carousel-nav-btn {
        width: 48px;
        height: 48px;
    }

    .carousel-nav-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Ajustes para el carrusel en móvil */
@media (max-width: 768px) {
    .novedades-carousel-wrapper {
        gap: 0;
    }

    .carousel-dots {
        margin-top: 20px;
        gap: 10px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .carousel-dots {
        margin-top: 16px;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
        border-radius: 4px;
    }
}

@media (max-width: 375px) {
    .feature-destacada .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .novedades-carousel .feature-card-grande {
        padding: 16px 14px;
        gap: 14px;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .carousel-nav-btn:hover {
        transform: none;
        background: white;
        color: var(--text-secondary);
        border-color: var(--border-color);
    }

    .carousel-nav-btn:active {
        transform: scale(0.95);
        background: var(--color-primary);
        color: white;
        border-color: var(--color-primary);
    }
}

