/* =============================================
   RIOFOOTVOLLEY — CSS COMPLETO E LIMPO
   Paleta: Azul #002776 | Amarelo #ffdf00 | Verde #009c3b | Branco #ffffff
=============================================== */

/* ===== VARIÁVEIS ===== */
:root {
    --green:      #009c3b;
    --green-dark: #007a2e;
    --yellow:     #ffdf00;
    --yellow-dark:#e6c800;
    --blue:       #002776;
    --blue-mid:   #003da8;
    --blue-light: #1a56c4;
    --white:      #ffffff;
    --off-white:  #f4f7ff;
    --text-dark:  #1a1a2e;
    --text-muted: #6b7280;
    --transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    --shadow-sm:  0 4px 16px rgba(0,39,118,0.12);
    --shadow-md:  0 12px 40px rgba(0,39,118,0.18);
    --shadow-lg:  0 24px 60px rgba(0,39,118,0.25);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

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

/* ===== UTILITÁRIOS ===== */
.text-yellow { color: var(--yellow) !important; }
.text-green  { color: var(--green) !important; }
.text-blue   { color: var(--blue) !important; }
.bg-blue-dark { background-color: var(--blue) !important; }
.bg-light-beach { background-color: var(--off-white) !important; }
.section-padding { padding: 100px 0; }
.section-title {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* ===== DECORAÇÃO PADRÃO DAS SECÇÕES ===== */
/* Linha de acento verde-amarelo (reutilizável via classe) */
.section-accent::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--green));
    border-radius: 4px;
    margin: 0 auto 20px;
}

/* ===================================================
   NAVBAR
=================================================== */
#mainNav {
    padding: 18px 0;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

#mainNav.scrolled {
    background: var(--blue);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.navbar-brand { color: white; font-size: 1.8rem; font-weight: 900; }
.navbar-brand span { color: var(--yellow); }

.navbar-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
    transition: transform 0.3s ease;
}
.navbar-logo:hover { transform: scale(1.04); }

.nav-link {
    color: white !important;
    margin: 0 8px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    position: relative;
    padding-bottom: 4px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--yellow) !important; }
.nav-link:hover::after { width: 100%; }
.nav-link.active-section { color: var(--yellow) !important; }
.nav-link.active-section::after { width: 100%; }

/* Botão CTA na navbar */
.btn-cta {
    background: var(--yellow) !important;
    color: var(--blue) !important;
    border-radius: 50px !important;
    padding: 8px 22px !important;
    font-weight: 800 !important;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}
.btn-cta:hover {
    background: var(--green) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,156,59,0.4) !important;
}
.btn-cta::after { display: none !important; }

/* ===================================================
   HERO
=================================================== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: var(--blue);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.active {
    opacity: 0.55;
    transform: scale(1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,39,118,0.82) 0%,
        rgba(0,39,118,0.55) 50%,
        rgba(0,0,0,0.45) 100%
    );
    z-index: 2;
}

.z-index-1 { z-index: 3; position: relative; }

/* Dots hero */
.slider-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 1.5px solid rgba(255,255,255,0.55);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    width: 26px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255,223,0,0.5);
}

/* Logo hero */
.hero-logo {
    max-width: 620px;
    width: 100%;
    margin: 0 auto 16px;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

/* Botões hero */
.btn-primary {
    background: var(--green) !important;
    border: none !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    letter-spacing: 0.05em;
    transition: all 0.3s ease !important;
}
.btn-primary:hover {
    background: var(--yellow) !important;
    color: var(--blue) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(0,156,59,0.4) !important;
}

.btn-outline-light {
    border-radius: 50px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    transition: all 0.3s ease !important;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15) !important;
    transform: translateY(-3px) !important;
}

/* ===================================================
   SOBRE NÓS
=================================================== */
#historia {
    position: relative;
    z-index: 2;
    background: var(--off-white);
}

#historia .section-title span { color: var(--green); }

.history-img-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}
.history-img-wrapper img:hover { transform: scale(1.02); }

/* ===================================================
   PROFESSORES
=================================================== */
#professores { background: var(--blue); }

.professor-card {
    padding: 0 0 36px 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                background 0.35s ease,
                box-shadow 0.35s ease;
}

.professor-card:hover {
    transform: translateY(-12px);
    background: rgba(255,255,255,0.11);
    box-shadow: 0 24px 50px rgba(0,0,0,0.35),
                0 0 0 1px rgba(255,223,0,0.2);
}

.prof-img {
    width: 100%;
    height: 260px;
    background: rgba(0,0,0,0.3);
    border-radius: 24px 24px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.prof-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(to bottom, transparent, rgba(0,39,118,0.6));
    pointer-events: none;
}

.prof-img img {
    width: 170px; height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--yellow);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.prof-divider {
    width: 48px; height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--green));
    border-radius: 3px;
    margin: 20px auto 16px;
}

.professor-card h4 {
    font-size: 1.25rem;
    padding: 0 20px;
    margin-bottom: 6px;
}

.professor-card .text-yellow { font-size: 0.88rem; padding: 0 20px; margin-bottom: 12px; }
.professor-card .text-white-50 { font-size: 0.85rem; line-height: 1.7; padding: 0 24px; }

/* ===================================================
   CURIOSIDADES
=================================================== */
.curiosidades-section {
    padding: 100px 20px;
    background: linear-gradient(160deg, var(--off-white) 0%, white 100%);
}

.curiosidades-section .section-title span { color: var(--green); }

.curiosidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.flip-card {
    background: transparent;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.flip-card:hover { transform: translateY(-8px); }

.flip-card-inner {
    position: relative;
    width: 100%; height: 220px;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.flip-card-front {
    background: white;
    border: 2px solid rgba(0,39,118,0.07);
}

.flip-card-front h3 {
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
}

.flip-card-front p { color: var(--text-muted); font-size: 0.9rem; }

.flip-card-back {
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: white;
    transform: rotateY(180deg);
    border: 2px solid rgba(255,223,0,0.2);
}

.flip-card-back p { font-size: 0.92rem; line-height: 1.65; }

/* ===================================================
   PLANOS
=================================================== */
.planos-section {
    position: relative;
    overflow: hidden;
}

.planos-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: blur(4px) brightness(0.35);
    transform: scale(1.06);
    z-index: 0;
}

.planos-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,39,118,0.88) 0%, rgba(0,20,60,0.75) 100%);
    z-index: 1;
}

.planos-section .section-title { color: white; }
.planos-section .section-title span { color: var(--yellow); }
.planos-section .text-white-50 { color: rgba(255,255,255,0.55) !important; }

.pricing-card {
    background: white;
    border-radius: 20px;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,39,118,0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--yellow);
    box-shadow: 0 0 0 4px rgba(255,223,0,0.15), var(--shadow-md);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.btn-blue {
    background: var(--blue) !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}
.btn-blue:hover {
    background: var(--blue-mid) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,39,118,0.35) !important;
}

.btn-outline-success {
    border-radius: 50px !important;
    font-weight: 700 !important;
    border-color: var(--green) !important;
    color: var(--green) !important;
    transition: all 0.3s ease !important;
}
.btn-outline-success:hover {
    background: var(--green) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.btn-outline-dark {
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}
.btn-outline-dark:hover {
    transform: translateY(-2px) !important;
}

/* ===================================================
   UNIFORMES
=================================================== */
#uniformes { background: white; }
#uniformes .section-title span { color: var(--blue); }

.uniform-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
    height: 100%;
}

.uniform-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.uniform-img {
    width: 100%; height: 300px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.5s ease;
}

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

/* ===================================================
   GALERIA
=================================================== */
.galeria-section {
    background: var(--blue);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.galeria-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,223,0,0.15) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.1) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 85%, rgba(0,156,59,0.12) 0%, transparent 100%);
    pointer-events: none;
}

.gal-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 12px;
}

.galeria-section .section-title { color: white; }
.galeria-section .section-title span { color: var(--green); }
.galeria-section .text-muted { color: rgba(255,255,255,0.4) !important; }

.gal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.gal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.4),
                0 0 0 2px rgba(255,223,0,0.3);
}

.gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gal-item:hover img { transform: scale(1.06); }

.gal-featured img { object-position: center 35%; }
.gal-item:not(.gal-featured) img { object-position: center 20%; }

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,39,118,0.8) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gal-item:hover .gal-overlay { opacity: 1; }

.gal-caption {
    color: white;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-left: 3px solid var(--yellow);
    padding-left: 12px;
}

/* ===================================================
   LOCALIZAÇÕES
=================================================== */
.localizacoes-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.localizacoes-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,39,118,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.localizacoes-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,156,59,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.localizacoes-section .section-title span { color: var(--green); }

.loc-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 10px;
}

.loc-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.loc-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,39,118,0.1);
}

.loc-img-wrapper {
    position: relative;
    height: 210px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    overflow: hidden;
}

.loc-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.loc-card:hover .loc-img { transform: scale(1.06); }

.loc-img-wrapper.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.loc-img-wrapper.no-img::after {
    content: '🏖️';
    font-size: 3.5rem;
    opacity: 0.4;
}

.loc-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.loc-info {
    padding: 22px 26px 14px;
    border-bottom: 1px solid rgba(0,39,118,0.07);
}

.loc-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 6px;
    line-height: 1.3;
}

.loc-name span { color: var(--green); }

.loc-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.loc-address i { color: var(--green); margin-right: 6px; }

.loc-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.loc-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--off-white);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1px solid rgba(0,39,118,0.1);
}

.loc-tag i { font-size: 0.7rem; color: var(--green); }

.loc-map { flex: 1; display: flex; flex-direction: column; }

.loc-map iframe {
    flex: 1;
    display: block;
    min-height: 250px;
    border: none;
}

.loc-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--blue);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease, letter-spacing 0.3s ease;
}

.loc-directions:hover {
    background: var(--green);
    color: white;
    letter-spacing: 0.15em;
}

/* ===================================================
   PATROCINADORES (CAROUSEL)
=================================================== */
.sponsors-carousel {
    padding: 100px 0;
    background: linear-gradient(160deg, #010f2e 0%, var(--blue) 60%, #011a50 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.sponsors-carousel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 18%, rgba(255,223,0,0.35) 0%, transparent 100%),
        radial-gradient(1px 1px at 38% 72%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(2px 2px at 62% 12%, rgba(0,156,59,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 88% 55%, rgba(255,255,255,0.15) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 25% 88%, rgba(255,223,0,0.2) 0%, transparent 100%);
    pointer-events: none;
}

.sponsors-carousel::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow), var(--green), var(--yellow), transparent);
}

.sponsors-carousel .section-title {
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.sponsors-carousel .section-title span { color: var(--yellow); }

.sponsors-carousel .sponsors-subtitle {
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 10px 70px;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}
.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #010f2e, transparent);
}
.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #011a50, transparent);
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.sponsor-card {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 24px;
    flex-direction: column;  
    padding: 32px 40px;
    min-height: 160px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.sponsor-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,223,0,0.06) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sponsor-card::after {
    content: '';
    position: absolute;
    top: 0; left: 20%; right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,223,0,0.55), transparent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sponsor-card:hover::before,
.sponsor-card:hover::after { opacity: 1; }

.sponsor-card:hover {
    border-color:transparent !important; 
    box-shadow: none !important;
    transform: translateY(-6px);
}

.sponsor-card img {
    max-width: 280px;
    max-height: 130px;
    width: 80%;
    height: auto;
    object-fit: contain;
    background: white;
    border-radius: 14px;
    padding: 22px 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.sponsor-card:hover img { transform: scale(1.05) translateY(-4px); }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.carousel-btn:hover {
    background: rgba(255,223,0,0.2);
    border-color: rgba(255,223,0,0.5);
    color: var(--yellow);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255,223,0,0.15);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

.carousel-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.carousel-dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    width: 26px;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255,223,0,0.4);
}

.sponsors-cta {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.sponsors-cta p {
    color: rgba(255,255,255,0.35);
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.btn-sponsor {
    display: inline-block;
    padding: 12px 36px;
    border: 1.5px solid rgba(255,223,0,0.5);
    border-radius: 50px;
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    background: rgba(255,223,0,0.05);
    transition: all 0.3s ease;
}

.btn-sponsor:hover {
    background: var(--yellow);
    color: var(--blue);
    box-shadow: 0 0 30px rgba(255,223,0,0.3);
    transform: translateY(-2px);
}

/* ===================================================
   FOOTER
=================================================== */
footer {
    background: var(--text-dark) !important;
}

footer h2 span { color: var(--yellow); }

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    vertical-align: middle;
}

.social-icons a:hover {
    background: #ffdf00;
    color: #002776 !important;
    border-color: #ffdf00;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255,223,0,0.35);
}

/* ===================================================
   WHATSAPP FLOAT
=================================================== */
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #25d366;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    text-decoration: none;
    animation: waPulse 2.5s ease-out infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* ===================================================
   SCROLL ANIMATIONS
=================================================== */
[data-scroll] {
    opacity: 1;
    transform: none;
}
/*[data-scroll] {
  opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*[data-scroll="fade-up"]    { transform: translateY(80px); opacity: 0; }
[data-scroll="fade-left"]  { transform: translateX(-80px); opacity: 0; }
[data-scroll="fade-right"] { transform: translateX(80px); opacity: 0; }
[data-scroll="zoom-in"]    { transform: scale(0.75); opacity: 0; }

[data-scroll].visible {
    opacity: 1;
    transform: none;
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
/*
[data-scroll-delay="1"] { transition-delay: 0.18s; }
[data-scroll-delay="2"] { transition-delay: 0.36s; }
[data-scroll-delay="3"] { transition-delay: 0.54s; }
[data-scroll-delay="4"] { transition-delay: 0.72s; }
[data-scroll-delay="5"] { transition-delay: 0.90s; }
*/
/* Excepções com transform próprio */
.pricing-card.featured[data-scroll].visible {
    transform: scale(1.05);
}
.pricing-card.featured[data-scroll].visible:hover {
    transform: scale(1.05) translateY(-12px);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 992px) {
    .section-padding { padding: 80px 20px; }
    .section-title { font-size: 2.1rem; }
    .hero-section { height: 90vh; }
    .prof-img { height: 230px; }
    .gal-grid { gap: 14px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 70px 20px; }
    .section-title { font-size: 1.9rem; }

    #mainNav { padding: 14px 0; }
    .navbar-logo { height: 66px; }
    .nav-link { margin: 4px 0; text-align: center; }

    .hero-section { height: auto; padding: 110px 0 80px; }
    .hero-logo { max-width: 220px; }

    .prof-img { height: 210px; }
    .prof-img img { width: 150px; height: 150px; }

    .flip-card-inner { height: 200px; }

    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-12px); }

    .gal-grid { grid-template-columns: 1fr; }
    .gal-item { height: 300px; aspect-ratio: unset; }
    .gal-overlay { opacity: 1; }

    .uniform-img { height: 240px; }

    .carousel-container { padding: 10px 52px; }
    .sponsor-card {
    padding: 32px 40px;
    min-height: 140px;
}
    .sponsor-card img { max-width: 200px; max-height: 90px; }

    .loc-img-wrapper { height: 185px; }

    .whatsapp-float { width: 52px; height: 52px; font-size: 26px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.65rem; }
    .hero-logo { max-width: 285px; }
    .prof-img img { width: 130px; height: 130px; }
    .flip-card-inner { height: 185px; }
    .uniform-img { height: 210px; }
}
/* Animações de scroll */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll="fade-left"] {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll="fade-right"] {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll].visible {
    opacity: 1 !important;
    transform: none !important;
}

[data-scroll-delay="1"] { transition-delay: 0.15s; }
[data-scroll-delay="2"] { transition-delay: 0.30s; }
[data-scroll-delay="3"] { transition-delay: 0.45s; }
[data-scroll-delay="4"] { transition-delay: 0.60s; }
[data-scroll-delay="5"] { transition-delay: 0.75s; }
/* =============================================
   ADICIONA NO FINAL DO style-final.css
   Melhorias carousel patrocinadores
=============================================== */

/* ===== CONTADOR ===== */
.carousel-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.counter-current {
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    transition: all 0.3s ease;
}

.counter-sep {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    margin: 0 2px;
}

.counter-total {
    font-size: 1rem;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    line-height: 1;
    align-self: flex-end;
    margin-bottom: 4px;
}

/* ===== NOME DO PATROCINADOR ===== */
.sponsor-name {
    position: static;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.sponsor-card:hover .sponsor-name {
    color: var(--yellow);
}

/* ===== BARRA DE PROGRESSO ===== */
.carousel-progress-wrapper {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 28px auto 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--yellow), var(--green));
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* ===== FADE em vez de SLIDE ===== */
/* Sobrescreve o comportamento do track */
.carousel-track {
    position: relative;
    display: block; /* muda de flex para block */
    height: auto;
}

.sponsor-card {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.97);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    /* Remove o flex:0 0 100% do slide anterior */
    flex: unset;
}

.sponsor-card.active-slide {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    position: relative; /* o activo ocupa espaço */
}

/* Altura mínima para o container não colapsar */
.carousel-track {
    min-height: 200px;
}

/* Padding reduzido */
.sponsor-card {
    padding: 32px 40px;
    min-height: 160px;
}
/* FORCE RESET SPONSOR CARD */
.sponsor-card,
.sponsor-card:hover,
.sponsor-card:focus {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}

.sponsor-card::before,
.sponsor-card::after {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
}
/* =============================================
   ADICIONA NO FINAL DO style-final.css
   Sponsors — versão final
=============================================== */

.sponsors-carousel {
    padding: 120px 20px;
    background: linear-gradient(160deg, #010f2e 0%, #002776 60%, #011a50 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Linha no topo */
.sponsors-carousel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffdf00, #009c3b, #ffdf00, transparent);
}

/* Estrelas de fundo */
.sponsors-carousel::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,223,0,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 75%, rgba(255,255,255,0.15) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 10%, rgba(0,156,59,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 50%, rgba(255,255,255,0.1) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 75% 85%, rgba(255,223,0,0.2) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.sponsors-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

/* ===== CABEÇALHO ===== */
.sponsors-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sponsors-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffdf00, #009c3b);
    border-radius: 3px;
}

.sponsors-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    margin: 0;
}

.sponsors-head .section-title {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0;
}

.sponsors-head .section-title span {
    color: #ffdf00;
}

/* ===== STAGE ===== */
.sponsors-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* ===== SPOTLIGHT — logo principal ===== */
.sponsors-spotlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
}

.spotlight-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,223,0,0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

.spotlight-card {
    background: white;
    border-radius: 24px;
    padding: 32px 48px;
    box-shadow:
        0 0 0 1px rgba(255,223,0,0.2),
        0 20px 60px rgba(0,0,0,0.5),
        0 0 40px rgba(255,223,0,0.15);
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
}

.spotlight-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 0 0 2px rgba(255,223,0,0.4),
        0 30px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(255,223,0,0.25);
}

.spotlight-img {
    max-width: 240px;
    max-height: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

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

.spotlight-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    transition: color 0.3s ease;
}

.spotlight-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffdf00;
    margin: 0;
    opacity: 0.75;
}

/* ===== THUMBNAILS ===== */
.sponsors-thumbs {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.sponsor-thumb {
    width: 80px;
    height: 56px;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
}

.sponsor-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    transition: all 0.35s ease;
}

.sponsor-thumb:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,223,0,0.35);
    transform: translateY(-4px);
}

.sponsor-thumb:hover img {
    filter: none;
    opacity: 0.9;
}

.sponsor-thumb.active {
    background: white;
    border-color: #ffdf00;
    box-shadow: 0 0 20px rgba(255,223,0,0.3),
                0 8px 20px rgba(0,0,0,0.3);
    transform: scale(1.1);
}

.sponsor-thumb.active img {
    filter: none;
    opacity: 1;
}

/* ===== BARRA DE PROGRESSO ===== */
.sponsors-progress {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.sponsors-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffdf00, #009c3b);
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* ===== BTN SPONSOR ===== */
.btn-sponsor {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    border: 1.5px solid rgba(255,223,0,0.5);
    border-radius: 50px;
    color: #ffdf00;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    background: rgba(255,223,0,0.05);
    transition: all 0.3s ease;
}

.btn-sponsor::before {
    content: '✦';
    font-size: 0.7rem;
    opacity: 0.6;
}

.btn-sponsor:hover {
    background: #ffdf00;
    color: #002776;
    border-color: #ffdf00;
    box-shadow: 0 0 30px rgba(255,223,0,0.35);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .sponsors-carousel { padding: 80px 20px; }
    .sponsors-inner { gap: 40px; }
    .spotlight-card { padding: 24px 32px; }
    .spotlight-img { max-width: 180px; max-height: 80px; }
    .sponsor-thumb { width: 66px; height: 48px; }
    .sponsors-progress { width: 160px; }
}
/* ===== FOOTER UPGRADE ===== */
footer {
    background: linear-gradient(160deg, #010f2e 0%, #011a50 100%) !important;
    padding-top: 60px !important;
    position: relative;
    overflow: hidden;
}

/* Linha no topo igual aos outros blocos */
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffdf00, #009c3b, #ffdf00, transparent);
}

/* Estrelinhas de fundo */
footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 30%, rgba(255,223,0,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.1) 0%, transparent 100%),
        radial-gradient(1px 1px at 40% 80%, rgba(0,156,59,0.15) 0%, transparent 100%);
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

/* Logo */
footer h2 {
    font-size: 2rem !important;
    letter-spacing: 0.05em;
}

footer h2 span { color: #ffdf00; }

/* Divider dourado entre logo e ícones */
footer .container::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffdf00, #009c3b);
    border-radius: 3px;
    margin: 0 auto 28px;
}

/* Ícones sociais */
.social-icons a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
}

.social-icons a:hover {
    background: #ffdf00 !important;
    color: #002776 !important;
    border-color: #ffdf00 !important;
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(255,223,0,0.35) !important;
}

/* Linha separadora antes do copyright */
footer hr {
    border-color: rgba(255,255,255,0.08) !important;
    margin: 28px 0 20px !important;
}

footer .text-white-50 {
    font-size: 0.78rem !important;
    letter-spacing: 0.08em;
}
/* ===== HERO BRAND ===== */

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1;
}

.hero-brand-rio {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--yellow);
    letter-spacing: 0.06em;
    -webkit-text-stroke: 2px var(--blue);
    text-shadow: 4px 4px 0px rgba(0,39,118,0.5);
    line-height: 1;
}

.hero-brand-foot {
    font-family: 'Russo One', sans-serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 400;
    color: #5b9bd5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
    line-height: 1;
    border-left: 4px solid var(--green);
    padding-left: 16px;
}

@media (max-width: 768px) {
    .hero-brand-rio  { font-size: clamp(2.8rem, 12vw, 4rem); }
    .hero-brand-foot { font-size: clamp(2rem, 9vw, 3rem); }
}
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 7vw, 12rem);
    color: white;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 16px;
}