/* ===========================
   FULLTIQUETES — HOME
=========================== */

.ft-home {
    background: var(--ft-bg);
}

/* ─── HERO SLIDER ─── */
/* Desktop image expected: 1920 × 600 px (aspect 16:5) */
.ft-hero-section {
    background: var(--ft-bg);
    padding: 1.5rem 0 1rem;
}

.ft-hero-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ft-hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    background: #0d0d0d;
}

.ft-hero-slide {
    position: relative;
    aspect-ratio: 16 / 5;
    max-height: 55vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ft-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.ft-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.65) 100%);
}

.ft-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2.5rem 2.5rem;
    color: #fff;
}

/* Arrows */
.ft-hero-slider .ft-hero-nav {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    border-radius: 50%;
    color: var(--ft-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all var(--ft-transition);
    z-index: 10;
}

.ft-hero-slider .ft-hero-nav::after {
    font-size: 16px;
    font-weight: 900;
}

.ft-hero-slider .ft-hero-nav-prev {
    left: 1rem;
}

.ft-hero-slider .ft-hero-nav-next {
    right: 1rem;
}

.ft-hero-slider .ft-hero-nav:hover {
    background: var(--ft-primary);
    color: #fff;
    transform: scale(1.08);
}

/* Pagination dots */
.ft-hero-slider .ft-hero-pagination {
    bottom: 0.9rem;
    z-index: 10;
}

.ft-hero-slider .ft-hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all var(--ft-transition);
}

.ft-hero-slider .ft-hero-pagination .swiper-pagination-bullet-active {
    background: var(--ft-primary);
    width: 28px;
    border-radius: 999px;
}

.ft-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--ft-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.ft-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 0 0 0.75rem;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.ft-hero-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.ft-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

/* ─── BUSCADOR ─── */
.ft-search-section {
    background: var(--ft-bg);
    padding: 1.5rem 0 0.5rem;
}

.ft-search-bar {
    display: flex;
    align-items: center;
    background: var(--ft-white);
    border: 1px solid var(--ft-border);
    border-radius: 999px;
    padding: 0.5rem 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.ft-search-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    color: var(--ft-text-muted);
    min-width: 120px;
}

.ft-search-item i {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--ft-primary);
}

.ft-search-item input,
.ft-search-item select {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ft-text);
    font-size: 0.9rem;
    font-family: 'Sora', sans-serif;
}

.ft-search-item input::placeholder {
    color: var(--ft-text-muted);
}

.ft-search-divider {
    width: 1px;
    height: 22px;
    background: var(--ft-border);
    flex-shrink: 0;
}

.ft-search-btn {
    border-radius: 999px;
    padding: 0.55rem 1.4rem;
    flex-shrink: 0;
}

/* ─── SECCIÓN GENÉRICA ─── */
.ft-section {
    padding: 3rem 0;
}

.ft-section-head {
    text-align: center;
    margin-bottom: 2rem;
}

.ft-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #FFF3E8;
    color: var(--ft-primary);
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.ft-section-head p {
    color: var(--ft-text-muted);
    margin: 0.4rem 0 0;
    font-size: 1rem;
}

/* ─── CARDS DE EVENTOS ─── */
.ft-events-section {
    background: var(--ft-bg);
}

.ft-event-card {
    background: var(--ft-white);
    border: 1px solid var(--ft-border);
    border-radius: var(--ft-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform var(--ft-transition), box-shadow var(--ft-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ft-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.ft-event-media {
    height: 200px;
    overflow: hidden;
}

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

.ft-event-card:hover .ft-event-media img {
    transform: scale(1.04);
}

.ft-event-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ft-event-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ft-dark);
    margin: 0 0 0.5rem;
}

.ft-event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.ft-meta-line {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ft-text-muted);
    font-size: 0.85rem;
}

.ft-meta-line i {
    color: var(--ft-primary);
    font-size: 0.85rem;
}

/* ─── CTA BANNER ─── */
.ft-cta-section {
    background: var(--ft-primary);
    padding: 3.5rem 1rem;
    color: #fff;
}

.ft-cta-section h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 900;
    margin: 0 0 0.5rem;
    color: #fff;
}

.ft-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
}

/* ─── ALIADOS ─── */
.ft-allies-section {
    background: var(--ft-bg);
}

.ft-allies-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.ft-ally-logo {
    background: var(--ft-white);
    border: 1px solid var(--ft-border);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.ft-ally-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2);
}

.ft-allies-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--ft-text-muted);
    font-size: 0.85rem;
}

.ft-allies-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ft-allies-trust i {
    color: var(--ft-primary);
}

/* ─── FEATURED ─── */
.ft-featured-section {
    background: var(--ft-bg);
}

/* ─── EMPTY ─── */
.ft-empty {
    text-align: center;
    padding: 2.5rem 0;
    color: var(--ft-text-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 767.98px) {
    /* Mobile image expected: 1080 × 1350 px (aspect 4:5) */
    .ft-hero-section {
        padding: 1rem 0 0.5rem;
    }

    .ft-hero-container {
        padding: 0 0.75rem;
    }

    .ft-hero-slider {
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .ft-hero-slide {
        aspect-ratio: 4 / 5;
        max-height: 85vh;
    }

    .ft-hero-content {
        padding: 0 1.25rem 1.5rem;
    }

    .ft-hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 45%,
                rgba(0, 0, 0, 0.75) 100%);
    }

    /* Arrows take too much space on mobile — hide and rely on swipe/dots */
    .ft-hero-slider .ft-hero-nav {
        display: none;
    }

    .ft-search-bar {
        border-radius: 16px;
        flex-wrap: wrap;
        padding: 0.75rem;
    }

    .ft-search-divider {
        display: none;
    }

    .ft-search-item {
        min-width: 100%;
    }

    .ft-search-btn {
        width: 100%;
        border-radius: 10px;
    }

    .ft-allies-logos {
        gap: 0.75rem;
    }

    .ft-ally-logo {
        padding: 0.5rem 1rem;
        min-width: 80px;
    }

    .ft-ally-logo img {
        height: 24px;
    }

    .ft-allies-trust {
        gap: 1rem;
    }
}

/* Tablet — slightly taller than desktop because viewport is narrower */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .ft-hero-slide {
        aspect-ratio: 16 / 6;
        max-height: 55vh;
    }
}