:root {
    --fvw-dark: #0d1117;
    --fvw-dark-2: #161b22;
    --fvw-dark-3: #1c2333;
    --fvw-blue: #1b72e8;
    --fvw-blue-light: #4196ff;
    --fvw-accent: #e8c21b;
    --fvw-text: #e6edf3;
    --fvw-muted: #8b949e;
    --fvw-border: rgba(255, 255, 255, 0.08);
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Exo 2", sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--fvw-dark);
    color: var(--fvw-text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--fvw-blue-light);
}

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

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

.bg-dark-2 {
    background-color: var(--fvw-dark-2);
}

.bg-dark-3 {
    background-color: var(--fvw-dark-3);
}

.bg-blue {
    background-color: var(--fvw-blue);
}

.mx-8{
    margin-right: 5rem !important;
    margin-left: 5rem !important;
}
.icon-circle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;  /* Tamaño del círculo */
        height: 60px; /* Tamaño del círculo */
        border-radius: 50%;
        background-color: #007bff; /* o tu color bg-blue */
    }

    .icon-circle img {
        width: 30px;  /* Tamaño de la imagen (más pequeña) */
        height: 30px; /* Tamaño de la imagen (más pequeña) */
        object-fit: contain;
    }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fvw-blue-light);
    margin-bottom: 0.75rem;
}

.section-label i {
    font-size: 0.85rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: var(--fvw-text);
}

.section-subtitle {
    color: var(--fvw-muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin-inline: auto;
}

/* ============================================================
                   NAVBAR  – fondo negro sólido, sin borde inferior
                ============================================================ */
.fvw-navbar {
    background-color: #111418;
    padding-block: 0.55rem;
    transition: background-color var(--transition);
}

/* Al hacer scroll se añade sombra sutil */
.fvw-navbar.scrolled {
    background-color: #0d1117;
    box-shadow: 0 1px 0 var(--fvw-border);
}

.fvw-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Círculo placeholder – reemplazar con <img> real */
.brand-logo-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1e2530;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--fvw-blue-light);
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fvw-text);
    letter-spacing: 0.01em;
}

.brand-text span {
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--fvw-muted);
}

/* Nav links – texto blanco regular, separados */
.fvw-navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(230, 237, 243, 0.85);
    padding-inline: 1.1rem;
    padding-block: 0.5rem;
    letter-spacing: 0.01em;
    transition: color var(--transition);
}

.fvw-navbar .nav-link:hover,
.fvw-navbar .nav-link.active {
    color: #fff;
}

.navbar-toggler {
    border-color: var(--fvw-border);
    padding: 0.35rem 0.55rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28230,237,243,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
                   HERO / CAROUSEL  – imagen de fondo full-bleed + overlay
                ============================================================ */
.fvw-hero {
    height: 100svh;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

/* La imagen de fondo se define inline en cada slide via style="" */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /* Escala suave en el carrusel */
    transition: transform 8s ease;
}

.carousel-item.active .hero-slide-bg {
    transform: scale(1.04);
}

 .hero-image {
        max-width: 900px; /* Tamaño máximo */
        height: auto;
    }

/* Overlay: negro denso a la izquierda, transparente a la derecha */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 12, 16, 0.88) 0%,
        rgba(10, 12, 16, 0.7) 35%,
        rgba(10, 12, 16, 0.25) 65%,
        rgba(10, 12, 16, 0.05) 100%
    );
    z-index: 1;
}

/* Degradado inferior para suavizar corte */
.hero-overlay::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--fvw-dark), transparent);
}

/* Contenido del slide */
.hero-slide {
    position: relative;
    z-index: 2;
    height: 100svh;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding-top: 70px;
    /* compensa el navbar fijo */
}

/* Badge "Orgullosos de representar…" */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 22, 28, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(230, 237, 243, 0.9);
    letter-spacing: 0.03em;
    margin-bottom: 1.4rem;
    backdrop-filter: blur(6px);
}

/* Punto decorativo dentro del badge */
.hero-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fvw-blue-light);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 6rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
    color: #fff;
    margin-bottom: 0.8rem;
}

/* Título grande */
.hero-title-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 2.4rem);
    line-height: 0.92;
    letter-spacing: 0.01em;
    color: #fff;
    margin-bottom: 0.8rem;
}

.hero-title .highlight {
    color: var(--fvw-blue);
}

/* Descripción */
.hero-description {
    color: rgba(230, 237, 243, 0.75);
    font-size: 0.98rem;
    font-weight: 300;
    max-width: 400px;
    line-height: 1.65;
    margin-bottom: 2rem;
}

/* Botones del hero */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ── Carousel controls ── */
.fvw-hero .carousel-indicators {
    bottom: 24px;
    gap: 0.45rem;
    margin: 0;
    justify-content: center;
}

.fvw-hero .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    opacity: 1;
    transition:
        background var(--transition),
        width var(--transition);
}

.fvw-hero .carousel-indicators .active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

/* Flechas laterales – círculo gris semitransparente */
.fvw-hero .carousel-control-prev,
.fvw-hero .carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: background var(--transition);
}

.fvw-hero .carousel-control-prev {
    left: 20px;
}

.fvw-hero .carousel-control-next {
    right: 20px;
}

.fvw-hero .carousel-control-prev:hover,
.fvw-hero .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.fvw-hero .carousel-control-prev-icon,
.fvw-hero .carousel-control-next-icon {
    width: 16px;
    height: 16px;
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .hero-description {
        font-size: 0.88rem;
    }
}

/* ============================================================
                   BUTTONS
                ============================================================ */
.btn-fvw-primary {
    background: var(--fvw-blue);
    border: 1.5px solid var(--fvw-blue);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    transition:
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.btn-fvw-primary:hover {
    background: var(--fvw-blue-light);
    border-color: var(--fvw-blue-light);
    color: #fff;
    box-shadow: 0 0 24px rgba(27, 114, 232, 0.5);
    transform: translateY(-1px);
}

.btn-fvw-outline {
    background: transparent;
    border: 1.5px solid var(--fvw-border);
    color: var(--fvw-text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    transition:
        border-color var(--transition),
        color var(--transition),
        background var(--transition);
}

.btn-fvw-outline:hover {
    border-color: var(--fvw-blue-light);
    color: var(--fvw-blue-light);
    background: rgba(27, 114, 232, 0.08);
}

/* ============================================================
                   SECCIÓN: CALENDARIO DE ACTIVIDADES
                ============================================================ */
.fvw-events {
    background-color: var(--fvw-dark);
    padding-block: 72px 80px;
}

/* Header labels */
.fvw-events .section-label {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    color: var(--fvw-blue-light);
    margin-bottom: 0.6rem;
}

.fvw-events .section-title {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--fvw-text);
}

.fvw-events .section-subtitle {
    color: var(--fvw-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ── Event Card ── */
.event-card {
    background: #141920;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    padding: 1.35rem 1.4rem 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.event-card:hover {
    border-color: rgba(65, 150, 255, 0.45);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Tags row */
.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.1rem;
}

.event-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.22rem 0.7rem;
    border-radius: 100px;
    line-height: 1.4;
}

/* Últimos Cupos – amarillo sólido */
.event-tag-ultimos {
    background: #e8b800;
    color: #111;
}

/* Próximamente – verde sólido */
.event-tag-prox {
    background: #22c55e;
    color: #fff;
}

/* Competencia / Capacitación / Selectivo – borde azul outline */
.event-tag-outline {
    background: transparent;
    border: 1px solid rgba(65, 150, 255, 0.55);
    color: var(--fvw-blue-light);
}

/* Título de la card – blanco, peso normal, fuente body */
.event-card-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--fvw-text);
    margin: 0;
    line-height: 1.3;
}

/* Metadatos */
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: rgba(230, 237, 243, 0.7);
}

.event-meta-item i {
    color: var(--fvw-blue-light);
    font-size: 0.9rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* Botón "Ver detalles" – ancho completo, borde gris, texto centrado */
.event-card-footer {
    margin-top: 0.3rem;
}

.btn-event-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 7px;
    background: transparent;
    color: var(--fvw-text);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    transition:
        border-color var(--transition),
        background var(--transition),
        color var(--transition);
}

.btn-event-detail:hover {
    border-color: var(--fvw-blue-light);
    background: rgba(27, 114, 232, 0.1);
    color: var(--fvw-blue-light);
}

/* CTA "Ver calendario completo" – azul sólido con flecha */
.btn-calendar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--fvw-blue);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.7rem 1.8rem;
    border-radius: 8px;
    transition:
        background var(--transition),
        box-shadow var(--transition);
}

.btn-calendar-cta:hover {
    background: var(--fvw-blue-light);
    color: #fff;
    box-shadow: 0 0 20px rgba(27, 114, 232, 0.45);
}

/* ============================================================
                   SECCIÓN: SELECCIÓN NACIONAL
                ============================================================ */
.fvw-team {
    background: linear-gradient(
        180deg,
        #0d1117 0%,
        #0e2030 30%,
        #1b3d50 60%,
        #0e2535 100%
    );
    padding-block: 80px 100px;
}

.fvw-team .section-title {
    font-family: var(--font-body);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--fvw-text);
}

.fvw-team .section-subtitle {
    font-size: 0.85rem;
    color: var(--fvw-muted);
    margin-top: 0.3rem;
}

/* Fila de atletas con efecto escalonado */
.athletes-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-top: 3rem;
}

/* Card base */
.fighter-card {
    flex: 0 0 auto;
    width: 200px;
    border-radius: 28px;
    overflow: hidden;
    background: #f0ede8;
    /* fondo claro tipo la foto */
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

/* Cards 1 y 4 (extremos) más arriba */
.fighter-card:nth-child(1),
.fighter-card:nth-child(3) {
    height: 320px;
    transform: translateY(-20px);
}

/* Cards 2 y 3 (centro) más bajas */
.fighter-card:nth-child(2),
.fighter-card:nth-child(4) {
    height: 300px;
    transform: translateY(20px);
}

.fighter-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

@media (max-width: 767.98px) {
    .athletes-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .fighter-card {
        width: 140px;
    }

    .fighter-card:nth-child(1),
    .fighter-card:nth-child(4) {
        height: 220px;
        transform: none;
    }

    .fighter-card:nth-child(2),
    .fighter-card:nth-child(3) {
        height: 220px;
        transform: none;
    }
}

/* ============================================================
                   RESPONSIVE TWEAKS
                ============================================================ */
@media (max-width: 767.98px) {
    .fvw-events,
    .fvw-team {
        padding-block: 60px;
    }
}

/* ============================================================
                   ANIMATIONS
                ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.animate-fade-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.35s;
}

.delay-4 {
    animation-delay: 0.5s;
}

/* ============================================================
                   SECCIÓN: NOTICIAS
                ============================================================ */
.fvw-news {
    background: linear-gradient(
        180deg,
        #0e2535 0%,
        #0e1c2a 30%,
        #0d1117 70%,
        #0d1117 100%
    );
    padding-block: 80px 90px;
}

/* Wrapper con flechas posicionadas fuera del track */
.news-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Flechas laterales */
.news-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--fvw-text);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 2;
}

.news-arrow:hover {
    background: rgba(27, 114, 232, 0.35);
}

.news-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Área visible del carrusel */
.news-track-outer {
    flex: 1;
    overflow: hidden;
    padding: 8px 4px;
    /* espacio para box-shadow de cards */
}

/* Track que se desplaza */
.news-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Card individual */
.news-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #141c28;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.news-card-body {
    padding: 1.25rem 1.3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--fvw-blue-light);
    margin: 0;
}

.news-date i {
    font-size: 0.8rem;
}

.news-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--fvw-text);
    line-height: 1.35;
    margin: 0;
}

.news-excerpt {
    font-size: 0.82rem;
    color: var(--fvw-muted);
    line-height: 1.55;
    margin: 0;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--fvw-blue-light);
    transition: gap var(--transition);
    margin-top: auto;
}

.news-link:hover {
    gap: 0.6rem;
    color: var(--fvw-blue-light);
}

@media (max-width: 767.98px) {
    .news-card {
        flex: 0 0 calc(80% - 10px);
    }
}

.padding-block{
   padding-block: 80px 90px;
}

/* ============================================================
                   SECCION: PATROCINADORES / ALIADOS
                ============================================================ */
.fvw-sponsors {
    background: linear-gradient(180deg, #10161f 0%, #0f1722 58%, #101a26 100%);
    padding-block: 72px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fvw-sponsors .section-title {
    font-family: var(--font-body);
    font-size: clamp(1.7rem, 3.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--fvw-text);
}

.fvw-sponsors .section-subtitle {
    color: var(--fvw-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 520px;
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 178px;
    height: 178px;
    margin-inline: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 0.8rem;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(65, 150, 255, 0.45);
    background: linear-gradient(180deg, rgba(65, 150, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 12px 24px rgba(11, 16, 24, 0.3);
}

.sponsor-logo {
    width: 150px;
    height: 150px;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(0.95);
    opacity: 0.82;
    transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.sponsor-card:hover .sponsor-logo {
    filter: none;
    opacity: 1;
    transform: scale(1.03);
}

.sponsor-empty {
    color: var(--fvw-muted);
    font-size: 0.95rem;
}

@media (max-width: 767.98px) {
    .fvw-sponsors {
        padding-block: 56px;
    }

    .sponsor-card {
        width: 148px;
        height: 148px;
        border-radius: 12px;
        padding: 0.7rem;
    }

    .sponsor-logo {
        width: 120px;
        height: 120px;
    }
}



/* ============================================================
                   SECCIÓN: GALERÍA DE IMÁGENES
                ============================================================ */
.fvw-gallery {
    background: linear-gradient(180deg, #0d1117 0%, #111820 60%, #0e2030 100%);
    padding-block: 80px 90px;
}

.fvw-gallery .section-title {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--fvw-text);
}

.fvw-gallery .section-subtitle {
    max-width: 560px;
    font-size: 0.88rem;
    color: var(--fvw-muted);
    line-height: 1.65;
    margin-top: 0.6rem;
}

/* Wrapper con flechas igual que noticias */
.gallery-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 2.5rem;
}

.gallery-track-outer {
    flex: 1;
    overflow: hidden;
    padding: 6px 4px;
}

.gallery-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Cards de galería – la central más grande (efecto featured) */
.gallery-card {
    flex: 0 0 calc(33.333% - 12px);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

/* Primera card: más baja, sin borde redondeado derecho visible */
.gallery-card:first-child {
    border-radius: 18px 4px 4px 18px;
}

/* Última card: parcialmente cortada = efecto de continuidad */
.gallery-card:last-child {
    flex: 0 0 calc(20% - 12px);
    border-radius: 4px 18px 18px 4px;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Indicadores tipo dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.6rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition:
        background var(--transition),
        width var(--transition);
}

.gallery-dot.active {
    background: var(--fvw-blue);
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    .gallery-card {
        flex: 0 0 80%;
        border-radius: 14px;
    }

    .gallery-card:last-child {
        flex: 0 0 60%;
    }

    .gallery-card img {
        height: 200px;
    }
}

/* ============================================================
                   SECCIÓN: CITA / TESTIMONIO
                ============================================================ */
.fvw-quote {
    background: linear-gradient(180deg, #0e2030 0%, #0e2a3e 40%, #0a1e30 100%);
    padding-block: 90px 100px;
    text-align: center;
}

/* Icono de comillas grande en azul outline */
.quote-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.quote-icon svg {
    width: 80px;
    height: 64px;
    fill: none;
    stroke: var(--fvw-blue-light);
    stroke-width: 3;
    opacity: 0.85;
}

.quote-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 300;
    color: rgba(230, 237, 243, 0.9);
    max-width: 560px;
    margin-inline: auto;
    line-height: 1.7;
}

/* Tres puntos separadores */
.quote-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-block: 1.6rem;
}

.quote-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: block;
}

/* Avatar + nombre */
.quote-author {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.4rem;
}

.quote-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(65, 150, 255, 0.4);
    background: var(--fvw-dark-3);
}

.quote-author-info {
    text-align: left;
}

.quote-author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--fvw-text);
    margin: 0;
}

.quote-author-role {
    font-size: 0.78rem;
    color: var(--fvw-muted);
    margin: 0;
}

/* ============================================================
                   FOOTER
                ============================================================ */
.fvw-footer {
    background-color: #1a1d21;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-block: 52px 36px;
}

/* Logos institucionales */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.footer-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

/* placeholder círculo blanco */
.footer-logo-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.3px;
    flex-shrink: 0;
}

/* Nav links del footer */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2rem 2rem;
    margin-bottom: 1.8rem;
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.footer-nav a {
    font-size: 0.88rem;
    color: rgba(230, 237, 243, 0.65);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--fvw-text);
}

/* Redes sociales */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: rgba(230, 237, 243, 0.55);
    font-size: 1.2rem;
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--fvw-blue-light);
}

/* Copyright */
.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(230, 237, 243, 0.3);
}
