/* ============================================
   HOME.CSS - VERSIÓN DEFINITIVA CORREGIDA
   Con SEPARACIÓN VISUAL entre secciones
   ============================================ */

:root {
    --primary-red: #ca1a1c;
    --primary-red-dark: #a31517;
    --primary-red-soft: #e83133;
    --primary-blue: #0a0a2a;
    --dark-bg: #ffffff;
    --card-bg: #ffffff;
    --oro-color: #FFD700;
    --plata-color: #C0C0C0;
    --bronze-color: #CD7F32;
    --neon-glow: 0 0 15px rgba(202, 26, 28, 0.4);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
    --shadow-red-sm: 0 4px 12px rgba(202, 26, 28, 0.15);
    --shadow-red-lg: 0 8px 24px rgba(202, 26, 28, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --border-radius-card: 20px;
    --border-radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f0f2f5;
    overflow-x: hidden;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    line-height: 1.5;
}

/* ============================================
   HERO SECTION - MÁS OSCURO
   ============================================ */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 10, 42, 0.92) 0%, rgba(10, 10, 42, 0.88) 100%),
                url("/public/imagenes/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-split::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, var(--primary-red), rgba(10, 10, 42, 0.5));
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.12;
    z-index: 0;
}

.hero-split::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red), transparent);
    z-index: 1;
}

.hero-content-left {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(202, 26, 28, 0.2);
    border: 1px solid rgba(202, 26, 28, 0.35);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-red);
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
}

.hero-badge i {
    font-size: 0.85rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.stat-item {
    text-align: left;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-red), transparent);
    border-radius: 2px;
}

.stat-item:first-child::before {
    display: none;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-red);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.search-float {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 520px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-float:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-red-sm);
}

.search-float input {
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: white;
    width: 100%;
    font-size: 0.95rem;
}

.search-float input:focus {
    outline: none;
}

.search-float input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-float button {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border: none;
    border-radius: 100px;
    padding: 12px 34px;
    color: white;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.search-float button:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-red-sm);
}

.pais-float {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.pais-float:hover {
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.15);
}

.pais-float select {
    background: transparent;
    border: none;
    color: white;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.pais-float select:focus {
    outline: none;
}

.pais-float select option {
    background: var(--primary-blue);
    color: white;
}

/* ============================================
   CARRUSEL DE CATEGORÍAS - FLECHAS CENTRADAS
   ============================================ */
.categories {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding: 0 0 60px 0;
    background-color: transparent;
}

.categories .container {
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.cat-container {
    background: #ffffff;
    backdrop-filter: none;
    border-radius: 32px;
    padding: 20px 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #eef2f6;
}

.category-slider {
    position: relative;
    padding: 10px 0;
}

.single-cat {
    display: block;
    text-align: center;
    padding: 16px 12px;
    background: #ffffff;
    backdrop-filter: none;
    border-radius: 20px;
    transition: var(--transition-smooth);
    text-decoration: none;
    margin: 0 12px;
    border: 1px solid #eef2f6;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.single-cat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-red-lg);
    border-color: var(--primary-red);
    background: #ffffff;
}

.single-cat .icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fef2f2;
    transition: var(--transition-smooth);
}

.single-cat:hover .icon {
    transform: translateY(-4px);
    background: var(--primary-red);
}

.single-cat:hover .icon i {
    color: white !important;
}

.single-cat .icon i {
    font-size: 1.6rem !important;
    transition: var(--transition-smooth);
    color: var(--primary-red);
}

.single-cat h3 {
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1a1a2e;
}

.single-cat .total {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.2rem;
    font-weight: 800;
    margin-top: 4px;
    display: block;
}

.tns-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    backdrop-filter: none;
    border: 1px solid #eef2f6;
    border-radius: 50%;
    z-index: 2;
    color: var(--primary-red);
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.tns-controls button:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-50%) scale(1.08);
    box-shadow: var(--shadow-red-sm);
    border-color: var(--primary-red);
}

.tns-controls button[data-controls="prev"] {
    left: -16px;
}

.tns-controls button[data-controls="next"] {
    right: -16px;
}

/* ============================================
   SECCIÓN DESTACADOS - MEJORADA
   ============================================ */
.featured-showcase {
    padding: 90px 0;
    background: #f8f9fa;
    margin-top: 0;
}

.featured-showcase::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin: 0 auto 60px auto;
    border-radius: 4px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(202, 26, 28, 0.1), rgba(202, 26, 28, 0.05));
    border: 1px solid rgba(202, 26, 28, 0.2);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-tag i {
    font-size: 1rem;
}

.section-title-white {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title-white span {
    color: var(--primary-red);
    position: relative;
}

.section-title-white span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    border-radius: 3px;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.featured-scroll {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 5px 30px 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) #e2e8f0;
}

.featured-scroll::-webkit-scrollbar {
    height: 4px;
}

.featured-scroll::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.featured-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 10px;
}

/* ============================================
   TARJETAS DESTACADAS
   ============================================ */
.featured-card-horizontal {
    min-width: 310px;
    background: white !important;
    border-radius: var(--border-radius-card) !important;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.featured-card-horizontal:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red) !important;
    box-shadow: 0 15px 35px rgba(202, 26, 28, 0.15);
}

.featured-img {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f0f2f5, #e8ecf0);
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: block;
}

.featured-card-horizontal:hover .featured-img img {
    transform: scale(1.04);
}

.featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.featured-card-horizontal:hover .featured-img::after {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--oro-color), #e6c200);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #2d2d2d;
    z-index: 10;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-sm);
}

/* LOGO DE RESALTADO - MÁS GRANDE */
.featured-level-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
    transition: transform 0.2s ease;
}

.featured-level-badge:hover {
    transform: scale(1.08);
}

.featured-level-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pais-indicator {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    color: white;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pais-indicator i {
    color: var(--oro-color);
    font-size: 0.7rem;
}

.featured-info {
    padding: 18px;
    background: white;
}

.featured-title {
    color: #1a1a2e !important;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.featured-price {
    color: var(--primary-red) !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin: 12px 0;
}

.featured-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 12px 0;
}

.featured-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #6b7280;
    background: transparent;
}

.featured-feature-item i {
    color: var(--primary-red);
    font-size: 0.7rem;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f2f5;
}

.featured-time {
    font-size: 0.7rem;
    color: #9ca3af;
}

.featured-time i {
    margin-right: 5px;
    font-size: 0.65rem;
}

.featured-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.featured-link:hover {
    transform: translateX(5px);
    color: var(--primary-red-dark);
}

/* ============================================
   SECCIÓN ÚLTIMOS ANUNCIOS - MEJORADA
   ============================================ */
.latest-masonry {
    padding: 90px 0;
    background: #ffffff;
}

.latest-masonry::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
    margin: 0 auto 60px auto;
    border-radius: 4px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 32px;
    grid-auto-flow: dense;
}

.masonry-card {
    background: white !important;
    border-radius: var(--border-radius-card) !important;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
}

.masonry-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red) !important;
    box-shadow: 0 15px 35px rgba(202, 26, 28, 0.15);
}

.masonry-img {
    height: 260px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f0f2f5, #e8ecf0);
}

.masonry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: block;
}

.masonry-card:hover .masonry-img img {
    transform: scale(1.04);
}

.masonry-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.masonry-card:hover .masonry-img::after {
    opacity: 1;
}

.masonry-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
}

/* LOGO DE RESALTADO - MÁS GRANDE */
.masonry-level-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
    transition: transform 0.2s ease;
}

.masonry-level-badge:hover {
    transform: scale(1.08);
}

.masonry-level-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.masonry-body {
    padding: 18px;
    background: white;
}

.masonry-title {
    color: #1a1a2e !important;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.masonry-price {
    color: var(--primary-red) !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin: 12px 0;
}

.anuncio-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 12px 0;
}

.feature-badge {
    background: transparent !important;
    padding: 0 !important;
    font-size: 0.7rem !important;
    font-weight: 400 !important;
    color: #6b7280 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feature-badge i {
    color: var(--primary-red);
    font-size: 0.7rem;
}

.masonry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #f0f2f5;
}

.masonry-time {
    font-size: 0.7rem;
    color: #9ca3af;
}

.masonry-time i {
    margin-right: 5px;
    font-size: 0.65rem;
}

.masonry-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
}

.masonry-link:hover {
    transform: translateX(5px);
    color: var(--primary-red-dark);
}

/* ============================================
   BORDES DE RESALTADO (ORO/PLATA/BRONCE)
   ============================================ */
.masonry-card.oro {
    border-top: 3px solid var(--oro-color) !important;
}

.masonry-card.plata {
    border-top: 3px solid var(--plata-color) !important;
}

.masonry-card.bronce {
    border-top: 3px solid var(--bronce-color) !important;
}

.featured-card-horizontal.oro {
    border-top: 3px solid var(--oro-color) !important;
}

.featured-card-horizontal.plata {
    border-top: 3px solid var(--plata-color) !important;
}

.featured-card-horizontal.bronce {
    border-top: 3px solid var(--bronce-color) !important;
}

/* ============================================
   SELECTOR DE PAÍS ACTIVO
   ============================================ */
.pais-activo-badge {
    background: #fef2f2;
    backdrop-filter: none;
    border: 1px solid var(--primary-red);
    border-radius: 100px;
    padding: 10px 24px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 20px;
    transition: var(--transition-smooth);
}

.pais-activo-badge:hover {
    background: #fee2e2;
}

.pais-activo-badge a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, rgba(10, 10, 42, 0.95) 100%);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.cta-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(202, 26, 28, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 70%, rgba(202, 26, 28, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red), transparent);
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(202, 26, 28, 0.2);
    border: 1px solid rgba(202, 26, 28, 0.4);
    padding: 10px 26px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-title span {
    color: var(--primary-red);
    position: relative;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons-group {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-cta-red {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    padding: 16px 44px;
    border-radius: 100px;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-red-sm);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta-red:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red-lg);
    color: white !important;
}

.btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 16px 44px;
    border-radius: 100px;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    background: transparent;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
}

.btn-cta-outline:hover {
    border-color: var(--primary-red);
    background: rgba(202, 26, 28, 0.2);
    color: white !important;
    transform: translateY(-3px);
}

.text-center .btn-cta-outline {
    border: 2px solid var(--primary-red);
    color: var(--primary-red) !important;
    background: transparent;
}

.text-center .btn-cta-outline:hover {
    background: var(--primary-red);
    color: white !important;
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-left,
.cat-container,
.section-header-center,
.cta-content {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-split::before { width: 100%; opacity: 0.08; }
    .pais-float { top: 20px; right: 20px; }
    .categories { margin-top: -65px; }
    .section-title-white { font-size: 2.2rem; }
    .cta-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 28px; }
    .search-float { flex-direction: column; border-radius: 48px; }
    .search-float input { border-radius: 48px 48px 0 0; padding: 14px 20px; }
    .search-float button { border-radius: 0 0 48px 48px; width: 100%; padding: 14px; }
    .categories { margin-top: -50px; }
    .cat-container { padding: 16px 20px; }
    .tns-controls button { width: 36px; height: 36px; font-size: 0.9rem; }
    .tns-controls button[data-controls="prev"] { left: -12px; }
    .tns-controls button[data-controls="next"] { right: -12px; }
    .single-cat { min-height: 110px; padding: 12px 8px; }
    .single-cat .icon { width: 45px; height: 45px; }
    .single-cat .icon i { font-size: 1.3rem !important; }
    .single-cat h3 { font-size: 0.7rem; }
    .single-cat .total { font-size: 1rem; }
    .masonry-grid { gap: 20px; grid-template-columns: 1fr; }
    .masonry-level-badge,
    .featured-level-badge { width: 50px; height: 50px; top: 12px; left: 12px; }
    .cta-title { font-size: 2rem; }
    .cta-buttons-group { flex-direction: column; align-items: center; gap: 16px; }
    .pais-float { display: none; }
    .pais-indicator { font-size: 0.65rem; padding: 5px 12px; bottom: 12px; left: 12px; }
    .section-title-white { font-size: 1.8rem; }
    .btn-cta-red, .btn-cta-outline { padding: 12px 32px; font-size: 0.9rem; }
    .featured-img, .masonry-img { height: 220px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .section-title-white { font-size: 1.5rem; }
    .masonry-grid { gap: 16px; }
    .featured-scroll { gap: 18px; }
    .featured-card-horizontal { min-width: 280px; }
    .featured-badge,
    .masonry-badge { font-size: 0.6rem; padding: 4px 10px; top: 10px; right: 10px; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 1.6rem; }
    .cta-title { font-size: 1.6rem; }
    .btn-cta-red,
    .btn-cta-outline { padding: 10px 28px; font-size: 0.85rem; }
    .featured-info,
    .masonry-body { padding: 14px; }
    .featured-img, .masonry-img { height: 200px; }
    .masonry-level-badge,
    .featured-level-badge { width: 45px; height: 45px; }
}