/*
 * Guararema Futsal E.C. — Escolinha de Futsal
 * Azul marinho + Dourado · visual acolhedor para crianças
 */

:root {
    --navy: #01142B;
    --navy-dark: #000912;
    --navy-light: #0d2f54;
    --navy-mid: #011a38;
    --gold: #B9932E;
    --gold-dark: #967825;
    --light-gold: #D4B45A;
    --gold-rgb: 185, 147, 46;
    --sky: #4dabf7;
    --grass: #2d9e4a;
    --grass-light: #40c057;
    --court-green: #1a7a35;
    --primary-black: var(--navy-dark);
    --secondary-black: var(--navy);
    --gray-50: #f4f7fc;
    --gray-100: #e8edf8;
    --gray-200: #d5deef;
    --gray-300: #b8c5dc;
    --gray-600: #5c6b82;
    --gray-900: #1e293b;
    --white: #ffffff;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 50px;
    --shadow-navy: 0 8px 30px rgba(1, 20, 43, 0.15);
    --shadow-gold: 0 8px 30px rgba(var(--gold-rgb), 0.35);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', 'Poppins', sans-serif !important;
    color: var(--gray-900) !important;
    line-height: 1.6 !important;
    background: var(--white) !important;
    font-size: 16px;
}

/* Typography Clean */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-black) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

h1 { font-size: 3.5rem !important; }
h2 { font-size: 2.5rem !important; }
h3 { font-size: 2rem !important; }
h4 { font-size: 1.5rem !important; }
h5 { font-size: 1.25rem !important; }
h6 { font-size: 1rem !important; }

p {
    color: var(--gray-600) !important;
    line-height: 1.7 !important;
    margin-bottom: 1rem !important;
}

/* ============================================
   TOP BAR + NAVBAR — Escolinha
   ============================================ */
.top-bar-escolinha {
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 0;
    letter-spacing: 0.02em;
}

.top-bar-escolinha i {
    color: var(--navy);
}

.navbar {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%) !important;
    border-bottom: 3px solid var(--gold) !important;
    padding: 0.75rem 0 !important;
    box-shadow: 0 4px 20px rgba(15, 31, 61, 0.25) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand-text .brand-name {
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.navbar-brand-text .brand-tagline {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.btn-matricular-nav {
    background: linear-gradient(135deg, var(--gold), var(--light-gold)) !important;
    color: var(--navy-dark) !important;
    border: none !important;
    padding: 10px 22px !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}

.btn-matricular-nav:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 35px rgba(var(--gold-rgb), 0.5);
    color: var(--navy-dark) !important;
}

.navbar-brand {
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    color: var(--white) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--gold) !important;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500 !important;
    margin: 0 4px !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--navy-dark) !important;
    background: var(--gold) !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.4) !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.dropdown-menu {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    padding: 0.5rem !important;
}

.dropdown-item {
    color: var(--gray-900) !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    margin: 2px 0 !important;
    padding: 8px 16px !important;
}

.dropdown-item:hover {
    background: var(--gray-100) !important;
    color: var(--primary-black) !important;
}

/* ============================================
   BUTTONS - Clean & Minimal
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%) !important;
    border: 2px solid var(--navy) !important;
    color: var(--white) !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--primary-black) !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--gray-300) !important;
    color: var(--gray-900) !important;
    background: transparent !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-outline-primary:hover {
    background: var(--primary-black) !important;
    border-color: var(--primary-black) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold) !important;
    border: 2px solid var(--gold) !important;
    color: var(--primary-black) !important;
    padding: 12px 32px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-gold:hover {
    background: var(--light-gold) !important;
    border-color: var(--light-gold) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-pill {
    border-radius: var(--radius-pill) !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
}

.btn-primary.btn-pill {
    box-shadow: var(--shadow-navy);
}

.btn-gold.btn-pill {
    box-shadow: var(--shadow-gold);
}

/* ============================================
   CARDS - Clean
   ============================================ */
.card {
    border: 1px solid var(--gray-200) !important;
    background: var(--white) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    transition: all 0.3s ease !important;
    border-radius: 12px !important;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    transform: translateY(-4px);
}

.card-header {
    background: var(--gray-50) !important;
    color: var(--primary-black) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    padding: 1.25rem !important;
    font-weight: 600 !important;
}

.card-body {
    padding: 2rem !important;
}

/* ============================================
   HERO SECTION — Escolinha de Futsal
   ============================================ */
.hero-section {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-mid) 100%) !important;
    padding: 90px 0 0 !important;
    min-height: 88vh;
    position: relative;
    overflow: hidden;
}

.escolinha-hero .hero-title {
    color: var(--white) !important;
    font-size: 3.6rem !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.escolinha-hero .hero-highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.escolinha-hero .hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
    opacity: 0.35;
    border-radius: 3px;
}

.escolinha-hero .hero-subtitle {
    color: rgba(255,255,255,0.88) !important;
    font-size: 1.2rem !important;
}

.escolinha-hero .hero-subtitle strong {
    color: var(--gold);
}

.escolinha-hero .hero-stats {
    border-top: 1px solid rgba(var(--gold-rgb), 0.25);
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    backdrop-filter: blur(8px);
}

.escolinha-hero .hero-stat-number {
    color: var(--gold);
    font-size: 2.2rem;
}

.escolinha-hero .hero-stat-number i {
    font-size: 1.8rem;
}

.escolinha-hero .hero-stat-label {
    color: rgba(255,255,255,0.75);
}

.escolinha-hero .hero-stat-divider {
    background: rgba(var(--gold-rgb), 0.3);
}

.escolinha-hero .btn-primary {
    background: var(--white) !important;
    color: var(--navy-dark) !important;
    border-color: var(--white) !important;
}

.escolinha-hero .btn-primary:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--navy-dark) !important;
}

.hero-glow {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(var(--gold-rgb),0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-court-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-court-floor {
    height: 28px;
    background: linear-gradient(180deg, var(--court-green) 0%, #156b2c 100%);
    position: relative;
    margin-top: 60px;
    border-top: 3px solid rgba(255,255,255,0.6);
}

.hero-court-floor::before,
.hero-court-floor::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: rgba(255,255,255,0.7);
}

.hero-court-floor::before {
    left: 0;
    right: 55%;
}

.hero-court-floor::after {
    left: 55%;
    right: 0;
}

.court-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50%;
}

.hero-mascot-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    border: 3px dashed rgba(var(--gold-rgb), 0.35);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--gold-rgb),0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.hero-badge .gold-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 800 !important;
    color: var(--primary-black) !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
}

.hero-subtitle {
    font-size: 1.25rem !important;
    color: var(--gray-600) !important;
    margin-bottom: 3rem !important;
    font-weight: 400 !important;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--gray-200);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    background: var(--gray-200);
}

.hero-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* ============================================
   SECTION TITLES - Clean
   ============================================ */
.section-title {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--navy-dark) !important;
    margin-bottom: 1rem !important;
}

.text-center .section-title {
    text-align: center !important;
}

.section-subtitle {
    font-size: 1.125rem !important;
    color: var(--gray-600) !important;
    margin-bottom: 3rem !important;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem 0 3rem 0;
}

/* ============================================
   STAT CARDS - Minimal
   ============================================ */
/* ============================================
   STAT CARDS — Escolinha
   ============================================ */
.stats-section-escolinha {
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
    padding-bottom: 80px !important;
}

.stat-card-escolinha {
    border: none !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-navy) !important;
    text-align: center;
    padding: 2rem 1.5rem !important;
    position: relative;
    overflow: hidden;
}

.stat-card-escolinha::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--navy-light));
}

.stat-card-escolinha .stat-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-navy);
}

.stat-card-escolinha .stat-icon i {
    font-size: 1.75rem;
    color: var(--gold);
}

.stat-card-escolinha .stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.stat-card-escolinha .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

.stat-card-champion::before {
    background: linear-gradient(90deg, var(--gold), var(--light-gold)) !important;
}

.stat-card-champion .stat-icon {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
}

.stat-card-champion .stat-icon i {
    color: var(--navy-dark);
}

.stat-card-champion .stat-number {
    color: var(--gold-dark);
}

.stat-card-escolinha:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(15, 31, 61, 0.18) !important;
}

.stat-card-clean {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.stat-card-clean:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.stat-card-clean .stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.stat-card-clean .stat-icon i {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.stat-card-clean .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card-clean .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ============================================
   CATEGORY CARDS — Escolinha
   ============================================ */
.category-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    transition: all 0.35s ease;
    height: 100%;
}

.category-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}

.category-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-navy);
}

.category-icon i {
    font-size: 1.6rem;
    color: var(--gold);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    transform: scale(1.08);
}

.category-card:hover .category-icon i {
    color: var(--navy-dark);
}

.category-title {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--primary-black) !important;
    margin-bottom: 0.5rem !important;
}

.category-age {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.category-description {
    font-size: 0.938rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ============================================
   FOOTER — Escolinha
   ============================================ */
footer {
    background: linear-gradient(160deg, #000912 0%, #01142B 60%, #011a38 100%) !important;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%) !important;
    color: var(--white) !important;
    padding: 2.5rem 0 1.25rem !important;
    margin-top: 0 !important;
    border-top: 4px solid #B9932E !important;
    border-top: 4px solid var(--gold) !important;
    position: relative;
    clear: both;
    overflow: hidden;
}

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

.footer-brand h5,
footer h5 {
    color: var(--gold) !important;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-right: 15px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.footer-brand-name {
    color: var(--gold) !important;
    font-weight: 800 !important;
}

.footer-brand-tagline {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.footer-desc {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(185, 147, 46, 0.45);
    border: 1px solid rgba(var(--gold-rgb), 0.45);
    border-radius: 50%;
    background: transparent !important;
    color: var(--gold) !important;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

footer .social-links a:hover {
    background: var(--gold) !important;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

footer .social-links a:hover i {
    color: var(--navy-dark) !important;
}

.footer-col-title {
    color: var(--gold) !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    font-size: 1rem !important;
}

footer a {
    color: var(--gray-300) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-size: 0.938rem !important;
}

footer a:hover {
    color: var(--gold) !important;
}

.footer-contact-list strong {
    display: block;
    color: var(--gold) !important;
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
}

.footer-contact-list span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.5rem !important;
}

.footer-achievement {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
}

.footer-achievement i {
    color: var(--gold);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
}

.footer-credit i,
.footer-credit a {
    color: var(--gold) !important;
}

.footer-credit a {
    text-decoration: none !important;
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--light-gold) !important;
}

/* ============================================
   FORMS - Clean
   ============================================ */
.form-control,
.form-select {
    border: 1px solid var(--gray-300) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
    background: var(--white) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-black) !important;
    box-shadow: 0 0 0 3px rgba(10,10,10,0.1) !important;
}

.form-label {
    color: var(--gray-900) !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.875rem !important;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-gold {
    color: var(--gold) !important;
}

.bg-gray-50 {
    background: var(--gray-50) !important;
}

.bg-gray-100 {
    background: var(--gray-100) !important;
}

.border-gold {
    border-color: var(--gold) !important;
}

/* Gold accent */
.gold-accent {
    color: var(--gold) !important;
    font-weight: 700 !important;
}

/* Clean badge */
.badge-clean {
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    background: var(--gray-100);
    color: var(--gray-900);
}

.badge-gold {
    background: var(--gold);
    color: var(--primary-black);
}

/* Section spacing */
.section-py {
    padding: 80px 0;
}

/* ============================================
   ANIMATIONS - Subtle
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.125rem !important;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        border: none;
        padding: 1.5rem 0;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .card-body {
        padding: 1.5rem !important;
    }
    
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 1.75rem !important; }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .btn-primary,
    .btn-outline-primary,
    .btn-gold {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   SCROLLBAR - Clean
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: var(--gold);
    color: var(--primary-black);
}

::-moz-selection {
    background: var(--gold);
    color: var(--primary-black);
}

/* ============================================
   BACK TO TOP BUTTON - Clean
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(var(--gold-rgb), 0.4);
    border: 2px solid transparent;
}

.back-to-top:hover {
    background: var(--primary-black);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(var(--gold-rgb), 0.6);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    font-size: 1.2rem;
    font-weight: 900;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
}

/* ============================================
   MVV CARDS (MISSÃO, VISÃO, VALORES)
   ============================================ */
.mvv-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.mvv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(var(--gold-rgb), 0.4);
    position: relative;
}

.mvv-icon i {
    color: var(--primary-black);
    font-size: 3rem;
}

.mvv-card h4 {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mvv-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.mvv-badge {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.icon-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.values-list .value-item {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.values-list .value-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ============================================
   STATS / ESTATÍSTICAS
   ============================================ */
.stat-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.3);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

/* ============================================
   PLANOS DE PATROCÍNIO
   ============================================ */
.plan-card {
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.plan-card-gold {
    border: 3px solid var(--gold);
    box-shadow: 0 15px 50px rgba(var(--gold-rgb), 0.3);
    transform: scale(1.05);
}

.plan-card-gold:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-card-prata {
    border: 3px solid #c0c0c0;
    box-shadow: 0 10px 35px rgba(192, 192, 192, 0.2);
}

.plan-card-bronze {
    border: 3px solid #cd7f32;
    box-shadow: 0 10px 35px rgba(205, 127, 50, 0.2);
}

.plan-badge-recommended {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--primary-black);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
    pointer-events: none;
}

.plan-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.plan-icon-gold {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
}

.plan-icon-gold i {
    color: var(--primary-black);
}

.plan-icon-prata {
    background: linear-gradient(135deg, #c0c0c0, #d3d3d3);
}

.plan-icon-prata i {
    color: var(--primary-black);
}

.plan-icon-bronze {
    background: linear-gradient(135deg, #cd7f32, #d4a574);
}

.plan-icon-bronze i {
    color: white;
}

.plan-title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
}

.plan-title-gold {
    color: var(--gold);
}

.plan-title-prata {
    color: #808080;
}

.plan-title-bronze {
    color: #cd7f32;
}

.plan-subtitle {
    color: var(--gray-600);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.plan-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.plan-benefits li {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.plan-benefits i {
    margin-right: 0.5rem;
}

.plan-benefits-gold i {
    color: var(--gold);
}

.plan-benefits-prata i {
    color: #c0c0c0;
}

.plan-benefits-bronze i {
    color: #cd7f32;
}

/* ============================================
   GALERIA
   ============================================ */
.gallery-filters-sticky {
    background: #fafafa;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gallery-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 350px;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.gallery-card-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    color: white;
}

.gallery-card-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.gallery-card-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

.gallery-card-content i {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* ============================================
   SECTIONS E CONTAINERS
   ============================================ */
.section-dark {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.section-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-py {
    padding: 80px 0;
}

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

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.bg-dark-80 {
    background: rgba(10, 10, 10, 0.8);
}

.bg-dark-95 {
    background: rgba(10, 10, 10, 0.95);
}

.bg-white-95 {
    background: rgba(255, 255, 255, 0.95);
}

/* ============================================
   ALERTS E BADGES
   ============================================ */
.alert-danger-gradient {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 20px;
}

.alert-warning-gradient {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--gold);
    color: var(--primary-black);
    border-radius: 16px;
}

.badge-gold {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.badge-dark {
    background: linear-gradient(135deg, var(--primary-black), var(--dark-gray));
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* ============================================
   DIVIDERS
   ============================================ */
.divider-gold {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    border-radius: 2px;
    margin: 1rem auto;
}

.divider-gold-transparent {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
    margin: 1rem auto;
}

/* ============================================
   CONTACT ICONS
   ============================================ */
.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--gold-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--gold);
    font-size: 1rem;
}

/* ============================================
   CARDS GERAIS
   ============================================ */
.card-clean {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.card-dark {
    background: rgba(10, 10, 10, 0.9);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
    .mvv-card,
    .plan-card {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .plan-card-gold {
        transform: scale(1);
    }
    
    .plan-card-gold:hover {
        transform: translateY(-10px);
    }
}


/* ============================================
   PÁGINA SOBRE - HEADER E COMPONENTES
   ============================================ */

/* Header com gradiente e padrão heráldico */
.page-header-about {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%) !important;
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mvv-card {
    background: rgba(15, 31, 61, 0.92) !important;
    border: 2px solid rgba(var(--gold-rgb), 0.25) !important;
}

.mvv-icon {
    background: linear-gradient(135deg, var(--gold), var(--light-gold)) !important;
}

.page-header-pattern {
    display: none;
}

/* Brilho suave nos heroes internos — sem quadriculado */
.contato-hero::after,
.comissao-hero::after,
.gallery-hero::after,
.patrocinadores-hero::after,
.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% -10%, rgba(185, 147, 46, 0.12), transparent 65%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Badge dourado com transparência */
.badge-gold {
    background: rgba(var(--gold-rgb), 0.2);
    color: var(--light-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: 1px solid rgba(var(--gold-rgb), 0.45);
}

/* Ícone dourado */
.icon-gold {
    color: #B9932E;
}

/* Lead text grande */
.lead-xl {
    font-size: 1.4rem;
}

/* Texto com peso médio e cor suave */
.text-weight-medium {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Divisor dourado com gradiente */
.divider-gold {
    background: linear-gradient(90deg, transparent, #B9932E, transparent);
    height: 2px;
    width: 200px;
    margin: 20px 0;
}

/* Seção com gradiente suave */
.section-gradient-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Content wrapper elevado */
.content-wrapper-elevated {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-left: 5px solid #B9932E;
}

/* Card de história */
.history-card-icon {
    color: #B9932E;
    font-size: 1.5rem;
}

.history-card-title {
    color: #0a0a0a;
    font-weight: 700;
}

.history-card-text {
    color: #64748b;
    margin-bottom: 0;
}

/* Logo com backdrop blur */
.logo-backdrop {
    height: 120px;
    width: auto;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    backdrop-filter: blur(5px);
}

/* Textos com espaçamento */
.text-spaced {
    line-height: 1.8;
}

/* Card com borda dourada */
.card-gold-border {
    border: 2px solid var(--gold);
    border-radius: 16px;
    overflow: hidden;
}

/* Card body com gradiente suave */
.card-body-gradient-light {
    background: linear-gradient(135deg, #fafafa, #ffffff);
}

/* Lista com espaçamento duplo */
.list-spaced {
    line-height: 2;
}

/* Ícone de contato circular */
.contact-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

/* Stats card elevado com borda dourada superior */
.stats-card-elevated {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 5px solid #B9932E;
    position: relative;
    overflow: hidden;
}

/* ============================================
   EQUIPE TÉCNICA - TEAM CARDS
   ============================================ */

/* Texto branco com espaçamento */
.text-white-spaced {
    line-height: 1.6;
}

/* Lead text cinza grande */
.lead-gray-xl {
    color: #64748b;
    font-size: 1.2rem;
}

/* Lead text branco com transparência */
.lead-white-90 {
    font-size: 1.2rem;
}

/* Team card com efeitos */
.team-card-styled {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #f5f5f5;
}

.team-card-styled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #B9932E, var(--light-gold));
}

.team-card-styled:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(var(--gold-rgb), 0.2);
    border-color: #B9932E;
}

/* Team photo circular */
.team-photo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid #f5f5f5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    background: linear-gradient(135deg, #fafafa, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Status indicator */
.status-indicator-active {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background: #22c55e;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}

/* Team name title */
.team-name {
    color: #0a0a0a;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Team role badge */
.team-badge {
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(var(--gold-rgb), 0.3);
}

/* Team description text */
.team-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Team stat number */
.team-stat-number {
    color: #B9932E;
    font-weight: 800;
    font-size: 1.2rem;
}

/* Team stat label */
.team-stat-label {
    color: #64748b;
}

/* Ajustes para corresponder aos estilos existentes */
.team-card-existing {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 5px solid #B9932E;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-photo-existing {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.3);
    position: relative;
}

.team-icon-gold {
    color: #B9932E;
}

.team-icon-black {
    color: #0a0a0a;
}

.status-indicator-existing {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid white;
}

.team-name-existing {
    color: #0a0a0a;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-badge-existing {
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.team-description-existing {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-stat-value {
    color: #B9932E;
    font-weight: 800;
    font-size: 1.2rem;
}

.team-stat-label-sm {
    color: #64748b;
}

/* Variantes dos team cards */
.team-card-black-border {
    border-top: 5px solid #0a0a0a;
}

.team-photo-gold-bg {
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    box-shadow: 0 15px 35px rgba(var(--gold-rgb), 0.4);
}

.team-badge-black {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #B9932E;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Padrão SVG de fundo com pontos dourados */
.pattern-dots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><defs><pattern id=%22dots%22 patternUnits=%22userSpaceOnUse%22 width=%2220%22 height=%2220%22><circle cx=%2210%22 cy=%2210%22 r=%221%22 fill=%22rgba(var(--gold-rgb),0.1)%22/></pattern></defs><rect width=%22100%22 height=%22100%22 fill=%22url(%23dots)%22/></svg>');
    opacity: 0.3;
}

/* ============================================
   INDEX.PHP - MISSÃO SOCIAL E DEPOIMENTOS
   ============================================ */

/* Título dourado */
.title-gold {
    color: #B9932E !important;
}

/* Lead text branco com opacidade */
.lead-white-transparent {
    color: rgba(255, 255, 255, 0.9);
}

/* Lead text cinza */
.lead-gray {
    color: #64748b;
}

/* Card com glassmorphism */
.card-glass {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(var(--gold-rgb), 0.4);
    border-radius: 16px;
}

/* Ícone box com gradiente dourado */
.icon-box-gold {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.3);
    transition: all 0.4s ease;
}

.icon-box-gold:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(var(--gold-rgb), 0.5);
}

/* Card title dourado */
.card-title-gold {
    color: #B9932E;
    font-weight: 700;
}

/* Card text branco transparente */
.card-text-white-transparent {
    color: rgba(255, 255, 255, 0.85);
}

/* Seção com fundo branco */
.section-white {
    background: white;
}

/* Divisor dourado com gradiente */
.divider-gold-gradient {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #B9932E, var(--light-gold));
    border-radius: 2px;
}

/* Testimonial card com borda dourada */
.testimonial-card-gold {
    border-left: 4px solid #B9932E;
}

/* Quote icon dourado */
.quote-icon-gold {
    color: #B9932E;
}

/* Texto itálico cinza */
.text-gray-italic {
    color: #64748b;
    font-style: italic;
}

/* Avatar circular com gradiente preto */
.avatar-circle-black {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nome de pessoa */
.person-name {
    color: #0a0a0a;
}

/* Subtítulo cinza pequeno */
.subtitle-gray-sm {
    color: #64748b;
}

/* Seção com fundo claro (light) */
.section-light-bg {
    background: var(--gray-50);
    position: relative;
}

.section-light-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="1.5" fill="rgba(26,45,90,0.04)"/></svg>');
    pointer-events: none;
}

/* Partner card */
.partner-card-styled {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.partner-card-styled:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(var(--gold-rgb), 0.2);
    border-color: #B9932E;
}

/* Icon container circular */
.icon-container-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fafafa, #ffffff);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 20px;
}

/* Logo responsivo */
.logo-responsive {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Partner title */
.partner-title {
    color: #0a0a0a;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.3rem;
    margin-top: 42px;
}

/* Partner subtitle */
.partner-subtitle {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Badge destaque */
.badge-highlight {
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(var(--gold-rgb), 0.3);
}

/* Button small destaque */
.btn-sm-outline {
    font-size: 0.85rem;
}

/* CTA Section com gradiente dourado */
.cta-section-gold {
    background: linear-gradient(135deg, #B9932E 0%, var(--light-gold) 100%);
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Pattern overlay circles */
.pattern-circles-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><circle cx=%2250%22 cy=%2250%22 r=%2240%22 fill=%22rgba(30,58,138,0.05)%22/></svg>');
    opacity: 0.3;
}

/* CTA title grande */
.cta-title {
    font-size: 2.5rem;
}

/* CTA lead text */
.cta-lead {
    font-size: 1.25rem;
}

/* Button CTA primary */
.btn-cta-primary {
    background: #0a0a0a;
    color: #B9932E;
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
}

/* Button CTA secondary */
.btn-cta-secondary {
    border: 3px solid #0a0a0a;
    color: #0a0a0a;
    background: transparent;
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 10px;
}

/* Partner card específico com borda dourada no topo */
.partner-card-gold-top {
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    border-top: 4px solid #B9932E;
    transition: all 0.4s ease;
    height: 100%;
}

/* Icon container para logo de parceiro */
.icon-container-partner {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(var(--gold-rgb), 0.3);
    padding: 15px;
    border: 2px solid #f0f0f0;
}

/* Badge preto para parceiro oficial */
.badge-partner-official {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #B9932E;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Icon box gold maior (110px) */
.icon-box-gold-lg {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(var(--gold-rgb), 0.4);
}

/* ============================================
   CONTATO.PHP - CLASSES
   ============================================ */

/* Card com borda dourada no topo */
.card-gold-top {
    border-top: 4px solid #B9932E;
}

/* Seção com fundo dourado */
.section-gold-bg {
    background: var(--gold);
    color: #0a0a0a;
}

/* Card com fundo branco transparente */
.card-white-transparent {
    background: rgba(255,255,255,0.9);
    border: none;
}

/* ============================================
   GALERIA.PHP — Hero e filtros
   ============================================ */
.gallery-hero {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--gold);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
}

.gallery-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(var(--gold-rgb), 0.15);
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    color: var(--light-gold);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.gallery-hero-title {
    color: var(--white) !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.gallery-hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem !important;
    max-width: 560px;
    margin: 0 auto 1.5rem !important;
    line-height: 1.7 !important;
}

.gallery-hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.gallery-hero-stats span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-hero-stats span i {
    color: var(--gold);
}

.gallery-filters-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-navy);
}

.gallery-filter-btn {
    border-radius: var(--radius-pill) !important;
    font-weight: 700 !important;
    padding: 8px 18px !important;
    border: 2px solid var(--gray-200) !important;
    color: var(--navy) !important;
    background: var(--white) !important;
    transition: all 0.25s ease !important;
}

.gallery-filter-btn:hover {
    border-color: var(--gold) !important;
    color: var(--gold-dark) !important;
    background: rgba(var(--gold-rgb), 0.08) !important;
}

.gallery-filter-btn-active {
    background: linear-gradient(135deg, var(--navy), var(--navy-light)) !important;
    border-color: var(--navy) !important;
    color: var(--white) !important;
}

.gallery-filter-btn-active:hover {
    background: linear-gradient(135deg, var(--gold), var(--light-gold)) !important;
    border-color: var(--gold) !important;
    color: var(--navy-dark) !important;
}

/* Hero section com gradiente preto (legado) */
.hero-section-black {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 80px 0;
}

/* Hero badge */
.hero-badge-gold {
    background: rgba(var(--gold-rgb), 0.15);
    color: var(--light-gold);
    display: inline-block;
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    font-weight: 700;
}

/* Hero title branco */
.hero-title-white {
    color: var(--white) !important;
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Hero subtitle transparente */
.hero-subtitle-transparent {
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery filters sticky */
.gallery-filters-sticky-section {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 60px 0 50px;
    }

    .gallery-hero-title {
        font-size: 2rem !important;
    }

    .gallery-hero-stats {
        gap: 0.75rem;
    }

    .gallery-hero-stats span {
        font-size: 0.78rem;
        padding: 6px 12px;
    }
}

/* Gallery card elevado */
.gallery-card-elevated {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.gallery-card-elevated:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(var(--gold-rgb), 0.2);
}

/* Gallery card image container */
.gallery-card-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e5e5e5);
}

/* Gallery card content overlay */
.gallery-card-overlay {
    color: white;
    padding: 30px;
}

/* Gallery icon large */
.gallery-icon-lg {
    font-size: 4rem;
    margin-bottom: 20px;
}

/* Gallery title */
.gallery-card-title-white {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Gallery description */
.gallery-card-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-card-desc-dimmed {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Gallery card específico para galeria */
.gallery-card-styled {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 350px;
    position: relative;
}

/* Gallery card content full */
.gallery-card-content-full {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery card content black */
.gallery-card-content-black {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery card outros gradientes */
.gallery-card-content-purple {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-content-green {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10b981, #34d399);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-content-orange {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Info card amarelo com borda dourada */
.info-card-yellow {
    border: 2px solid #B9932E;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

/* Icon circle dourado */
.icon-circle-gold {
    width: 70px;
    height: 70px;
    background: #B9932E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Info card title */
.info-card-title {
    color: #0a0a0a;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Info card text */
.info-card-text {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Mais gradientes para gallery cards */
.gallery-card-content-red {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f43f5e, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradientes blue e purple para gallery cards */
.gallery-card-content-blue {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card-content-purple-dark {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PATROCINADORES.PHP - GREEN DIGITAL
   ============================================ */

/* Card com borda dourada grossa */
.card-gold-border-thick {
    border: 3px solid #B9932E;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(var(--gold-rgb), 0.2);
}

/* Badge gradiente dourado */
.badge-gold-gradient {
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-right: 12px;
}

/* Partner main title */
.partner-main-title {
    color: #0a0a0a;
    font-weight: 800;
    font-size: 2rem;
}

/* Partner description text */
.partner-desc-text {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Service box cinza */
.service-box {
    background: #fafafa;
    border-radius: 8px;
}

/* Service box icon */
.service-box-icon {
    color: #B9932E;
    font-size: 1.5rem;
}

/* Service box label */
.service-box-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

/* Showcase box preto */
.showcase-box-black {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Logo container branco */
.logo-container-white {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(var(--gold-rgb), 0.3);
    padding: 20px;
}

/* Showcase title dourado */
.showcase-title-gold {
    color: #B9932E !important;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Showcase description */
.showcase-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Icon circle dourado transparente */
.icon-circle-gold-transparent {
    width: 50px;
    height: 50px;
    background: rgba(var(--gold-rgb), 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

/* Small text transparente */
.small-text-transparent {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

/* Texto dourado */
.text-gold {
    color: #B9932E;
}

/* Divisor dourado centralizado */
.divider-gold-center {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #B9932E, var(--light-gold));
    margin: 1.5rem auto;
}

/* Botões de planos */
.btn-plan-gold {
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    border: none;
    color: #0a0a0a;
}

.btn-plan-silver {
    border-color: #c0c0c0;
    color: #808080;
}

.btn-plan-bronze {
    border-color: #cd7f32;
    color: #cd7f32;
}

/* Card benefícios azul escuro */
.card-benefits-navy {
    border-top: 4px solid #B9932E;
    background: linear-gradient(135deg, var(--navy-blue), var(--dark-navy));
    color: white;
}

/* Card benefício translúcido */
.card-benefit-translucent {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,215,0,0.3);
}

/* Icon box gradiente dourado */
.icon-box-gold-gradient {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.4);
}

/* Icon box 80px com var gold */
.icon-box-gold-80 {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255,215,0,0.3);
}

/* ============================================
   PLANOS DE PATROCÍNIO
   ============================================ */
.patrocinio-planos-header {
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.patrocinio-planos-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(185, 147, 46, 0.12);
    border: 1px solid rgba(185, 147, 46, 0.35);
    border-radius: var(--radius-pill);
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.patrocinio-planos-title {
    color: var(--navy-dark) !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.75rem !important;
}

.patrocinio-planos-subtitle {
    color: var(--gray-600) !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.25rem !important;
}

.patrocinio-planos-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.patrocinio-plan {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-navy);
    padding: 2rem 1.75rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patrocinio-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 31, 61, 0.12);
}

.patrocinio-plan--gold {
    border-top: 4px solid var(--gold);
    box-shadow: 0 12px 35px rgba(185, 147, 46, 0.15);
}

.patrocinio-plan--prata {
    border-top: 4px solid #8a96a8;
}

.patrocinio-plan--bronze {
    border-top: 4px solid #b87333;
}

.patrocinio-plan-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy-dark);
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.patrocinio-plan-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
}

.patrocinio-plan--gold .patrocinio-plan-icon {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy-dark);
    box-shadow: 0 8px 20px rgba(185, 147, 46, 0.3);
}

.patrocinio-plan--prata .patrocinio-plan-icon {
    background: linear-gradient(135deg, #8a96a8, #c5cdd8);
    color: var(--white);
}

.patrocinio-plan--bronze .patrocinio-plan-icon {
    background: linear-gradient(135deg, #b87333, #d4a574);
    color: var(--white);
}

.patrocinio-plan-name {
    color: var(--navy-dark) !important;
    font-size: 1.6rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem !important;
}

.patrocinio-plan-tagline {
    color: var(--gray-600) !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    margin-bottom: 1.25rem !important;
}

.patrocinio-plan-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    text-align: left;
    flex-grow: 1;
}

.patrocinio-plan-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.patrocinio-plan-benefits li:last-child {
    border-bottom: none;
}

.patrocinio-plan-benefits li i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.75rem;
}

.patrocinio-plan--gold .patrocinio-plan-benefits li i {
    color: var(--gold);
}

.patrocinio-plan--prata .patrocinio-plan-benefits li i {
    color: #8a96a8;
}

.patrocinio-plan--bronze .patrocinio-plan-benefits li i {
    color: #b87333;
}

.patrocinio-plan-note {
    color: var(--gray-600) !important;
    font-size: 0.8rem !important;
    font-style: italic;
    margin-bottom: 1rem !important;
}

.patrocinio-plan-btn {
    margin-top: auto;
    font-weight: 700 !important;
    padding: 12px 20px !important;
}

.patrocinio-plan-btn--prata:hover {
    border-color: #8a96a8 !important;
    color: #5c6675 !important;
}

.patrocinio-plan-btn--bronze:hover {
    border-color: #b87333 !important;
    color: #b87333 !important;
}

/* Legado — cards antigos (index carousel) */
.plan-card {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Card body com flexbox para empurrar botão para baixo */
.plan-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

/* Conteúdo do plano (ícone, título, lista) */
.plan-card .plan-icon,
.plan-card .plan-title,
.plan-card .plan-subtitle {
    flex-shrink: 0;
}

/* Lista de benefícios ocupa espaço disponível */
.plan-benefits {
    flex-grow: 1;
    margin-bottom: 0;
    padding-bottom: 1.5rem;
}

/* Botão sempre no final do card */
.plan-card .btn {
    margin-top: auto;
    flex-shrink: 0;
}

/* ============================================
   CAROUSEL DE PARCEIROS
   ============================================ */
.carousel-control-icon-custom {
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    border: none;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(var(--gold-rgb), 0.4);
}

.carousel-control-icon-custom i {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: bold;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
    width: 60px;
}

.carousel-control-prev:hover .carousel-control-icon-custom,
.carousel-control-next:hover .carousel-control-icon-custom {
    background: linear-gradient(135deg, var(--light-gold), #B9932E);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.6);
}

.carousel-control-prev:hover .carousel-control-icon-custom i,
.carousel-control-next:hover .carousel-control-icon-custom i {
    color: #ffffff;
}

.carousel-indicators-custom {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #B9932E;
    background: transparent;
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
    background: linear-gradient(135deg, #B9932E, var(--light-gold));
    transform: scale(1.3);
}

.carousel-indicators-custom button:hover {
    background: #B9932E;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
    }
    
    .carousel-control-icon-custom {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-icon-custom i {
        font-size: 1.1rem;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   GUARAREMA FUTSAL — ESCOLINHA (v2)
   ============================================ */
.gf-brand {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.gf-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="3" fill="rgba(var(--gold-rgb),0.12)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.gf-gold {
    color: var(--gold) !important;
    font-weight: 800 !important;
}

.gf-badge {
    background: linear-gradient(135deg, var(--gold), var(--light-gold)) !important;
    color: var(--navy-dark) !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
}

.hero-badge-escolinha {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(var(--gold-rgb), 0.15);
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-badge-escolinha .badge-star {
    color: var(--light-gold);
    font-size: 0.75rem;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-mascot {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.35));
    animation: mascotFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

.hero-logo-small {
    max-width: 110px;
    position: absolute;
    top: -5px;
    right: 8%;
    opacity: 0.95;
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.3));
    z-index: 3;
    animation: mascotFloat 4s ease-in-out infinite 0.5s;
}

.category-card-active {
    border: 3px solid var(--gold) !important;
    background: linear-gradient(180deg, #fffdf0 0%, white 100%) !important;
    position: relative;
    box-shadow: var(--shadow-gold) !important;
}

.category-card-active::after {
    content: '🏆 Campeões 2026';
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy-dark);
    font-size: 0.68rem;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(var(--gold-rgb), 0.4);
}

.category-card-coming {
    opacity: 0.7;
    border-style: dashed !important;
    border-color: var(--gray-300) !important;
}

.champion-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-navy);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.champion-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold), var(--gold));
}

.champion-banner h3 {
    color: var(--gold) !important;
    font-weight: 900 !important;
    font-size: 1.6rem !important;
}

.champion-banner p {
    color: rgba(255,255,255,0.9) !important;
}

.escolinha-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--grass), var(--grass-light));
    color: white;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 15px rgba(45, 158, 74, 0.35);
}

.section-escolinha {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 50%, var(--gray-50) 100%);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    border-radius: 2px;
    margin: 1rem auto 2rem;
}

.cta-section-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%) !important;
    color: var(--navy-dark) !important;
}

.btn-cta-primary {
    background: var(--navy-dark) !important;
    color: var(--gold) !important;
    border-radius: var(--radius-pill) !important;
}

.btn-cta-secondary {
    border-radius: var(--radius-pill) !important;
    border-color: var(--navy-dark) !important;
    color: var(--navy-dark) !important;
}

.icon-box-gold-lg {
    background: linear-gradient(135deg, var(--gold), var(--light-gold)) !important;
    box-shadow: var(--shadow-gold) !important;
}

.card-title-gold {
    color: var(--gold) !important;
}

.title-gold {
    color: var(--gold) !important;
}

.icon-gold {
    color: var(--gold) !important;
}

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

.divider-gold-gradient {
    background: linear-gradient(90deg, var(--gold), var(--light-gold)) !important;
}

.badge-gold-gradient {
    background: linear-gradient(135deg, var(--gold), var(--light-gold)) !important;
    color: var(--navy-dark) !important;
}

.partner-card-gold-top {
    border-top: 4px solid var(--gold) !important;
    border-radius: var(--radius-md) !important;
    transition: all 0.35s ease;
}

.partner-card-gold-top:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold) !important;
}

@media (max-width: 992px) {
    .escolinha-hero .hero-title {
        font-size: 2.8rem !important;
    }

    .hero-mascot-ring {
        width: 260px;
        height: 260px;
    }

    .stats-section-escolinha {
        margin-top: -20px;
    }
}

@media (max-width: 768px) {
    .escolinha-hero .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-section {
        padding: 70px 0 0 !important;
        min-height: auto;
    }

    .hero-court-floor {
        margin-top: 40px;
    }

    .hero-mascot-ring {
        width: 220px;
        height: 220px;
    }

    .top-bar-escolinha {
        font-size: 0.72rem;
    }
}

/* ============================================
   MASCOTE ANIMADO — Capivara (imagem + CSS)
   ============================================ */
.mascot-scene {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 2;
}

.mascot-scene--hero {
    width: 100%;
    max-width: 560px;
    min-height: 520px;
}

.mascot-scene--compact {
    max-width: 300px;
    min-height: 340px;
    margin-bottom: 1.5rem;
}

.mascot-aura {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.28) 0%, rgba(var(--gold-rgb), 0.08) 45%, transparent 70%);
    border-radius: 50%;
    animation: mascotAuraPulse 3.2s ease-in-out infinite;
    pointer-events: none;
}

.mascot-orbit {
    position: absolute;
    top: 48%;
    left: 50%;
    border: 2px dashed rgba(var(--gold-rgb), 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.mascot-orbit--1 {
    width: 92%;
    height: 88%;
    transform: translate(-50%, -50%);
    animation: mascotOrbitSpin 20s linear infinite;
}

.mascot-orbit--2 {
    width: 76%;
    height: 72%;
    transform: translate(-50%, -50%);
    animation: mascotOrbitSpin 14s linear infinite reverse;
    border-color: rgba(255, 255, 255, 0.14);
}

.mascot-stage {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mascot-ground-shadow {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 18px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    animation: mascotGroundShadow 3s ease-in-out infinite;
    z-index: 0;
}

.mascot-body-wrap {
    position: relative;
    z-index: 2;
    animation: mascotHeroFloat 3s ease-in-out infinite;
    transform-origin: center bottom;
}

.mascot-scene--compact .mascot-body-wrap {
    animation-name: mascotCompactFloat;
    animation-duration: 3.4s;
}

.mascot-img {
    width: 100%;
    height: auto;
    max-width: 520px;
    display: block;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45));
    user-select: none;
    -webkit-user-drag: none;
}

.mascot-scene--compact .mascot-img {
    max-width: 280px;
}

.mascot-shine {
    position: absolute;
    inset: 5% 10%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.18) 48%,
        rgba(255, 255, 255, 0.28) 50%,
        rgba(255, 255, 255, 0.18) 52%,
        transparent 60%
    );
    transform: translateX(-120%);
    animation: mascotShineSweep 5s ease-in-out infinite;
    pointer-events: none;
    border-radius: 40%;
    z-index: 3;
    mix-blend-mode: soft-light;
}

.mascot-spark {
    position: absolute;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0;
    pointer-events: none;
    z-index: 4;
    text-shadow: 0 0 14px rgba(var(--gold-rgb), 0.7);
}

.mascot-spark--1 {
    top: 10%;
    right: 6%;
    animation: mascotSparkle 3.5s ease-in-out infinite;
}

.mascot-spark--2 {
    bottom: 20%;
    left: 4%;
    font-size: 1.5rem;
    animation: mascotSparkle 3.5s ease-in-out infinite 1.2s;
}

.mascot-spark--3 {
    top: 30%;
    left: 0;
    animation: mascotSparkle 3.5s ease-in-out infinite 2.4s;
}

@media (max-width: 768px) {
    .mascot-scene--hero {
        max-width: 380px;
        min-height: 420px;
    }

    .mascot-img {
        max-width: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mascot-body-wrap,
    .mascot-ground-shadow,
    .mascot-aura,
    .mascot-orbit,
    .mascot-shine,
    .mascot-spark {
        animation: none !important;
    }
}

@keyframes mascotAuraPulse {
    0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes mascotOrbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes mascotHeroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-10px) rotate(0.6deg) scale(1.01); }
    50% { transform: translateY(-20px) rotate(0deg) scale(1.02); }
    75% { transform: translateY(-10px) rotate(-0.6deg) scale(1.01); }
}

@keyframes mascotCompactFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes mascotGroundShadow {
    0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scaleX(0.75); opacity: 0.28; }
}

@keyframes mascotShineSweep {
    0%, 100% { transform: translateX(-120%); opacity: 0; }
    40% { opacity: 1; }
    60% { transform: translateX(120%); opacity: 0; }
}

@keyframes mascotSparkle {
    0%, 100% { opacity: 0; transform: scale(0.4) translateY(0); }
    50% { opacity: 1; transform: scale(1.15) translateY(-10px); }
}

/* ============================================
   PÁGINA SOBRE — Layout melhorado
   ============================================ */
.about-hero {
    padding: 90px 0 80px !important;
    border-bottom: 4px solid var(--gold);
}

.about-hero .hero-court-lines {
    opacity: 0.5;
}

.about-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    background: rgba(var(--gold-rgb), 0.15);
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    color: var(--light-gold);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.about-hero-title {
    color: var(--white) !important;
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.about-hero-title i {
    color: var(--gold);
}

.about-hero-motto {
    color: var(--gold) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.35rem !important;
    letter-spacing: 0.02em;
}

.about-hero-motto-latin {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.about-hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    border-radius: 2px;
}

.about-section-history {
    background: var(--gray-50);
    margin-top: -30px;
    position: relative;
    z-index: 2;
    padding-top: 3.5rem !important;
}

.about-section-escolinha {
    background: var(--white);
}

.about-section-eyebrow {
    display: inline-block;
    background: rgba(var(--gold-rgb), 0.12);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.about-section-eyebrow-light {
    background: rgba(var(--gold-rgb), 0.2);
    color: var(--light-gold);
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-navy);
    padding: 2.25rem;
    border: 1px solid var(--gray-200);
}

.about-card-history {
    border-top: 4px solid var(--gold);
}

.about-card-highlight {
    border-top: 4px solid var(--navy);
    padding-bottom: 2rem;
    overflow: hidden;
}

.about-card-title {
    color: var(--navy-dark) !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.75rem !important;
}

.about-card-intro {
    color: var(--gray-600) !important;
    margin-bottom: 2rem !important;
    font-size: 1.05rem;
}

.about-highlight-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    margin: -2.25rem -2.25rem 1.5rem;
    padding: 1.75rem 2rem;
    border-bottom: 3px solid var(--gold);
}

.about-highlight-logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.about-timeline {
    position: relative;
    padding-left: 0.5rem;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 28px;
    bottom: 28px;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gray-200));
    border-radius: 2px;
}

.about-timeline-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

.about-timeline-item-last {
    margin-bottom: 0;
}

.about-timeline-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    box-shadow: var(--shadow-navy);
    position: relative;
    z-index: 1;
}

.about-timeline-icon-champion {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy-dark);
}

.about-timeline-content h5 {
    color: var(--navy-dark) !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.35rem !important;
}

.about-timeline-content p {
    color: var(--gray-600) !important;
    margin-bottom: 0 !important;
    line-height: 1.65;
    font-size: 0.95rem;
}

.about-stats-row {
    padding: 0 0.5rem;
}

.about-stat-box {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 1rem 0.5rem;
    border: 1px solid var(--gray-200);
    transition: transform 0.3s ease;
}

.about-stat-box:hover {
    transform: translateY(-4px);
}

.about-stat-box-gold {
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.12), rgba(var(--gold-rgb), 0.05));
    border-color: rgba(var(--gold-rgb), 0.35);
}

.about-stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--navy-dark);
    line-height: 1.2;
}

.about-stat-box-gold .about-stat-number {
    color: var(--gold-dark);
}

.about-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0.25rem;
}

.about-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    border-radius: 2px;
}

.about-text-lead {
    color: var(--navy-dark) !important;
    font-size: 1.15rem !important;
    line-height: 1.75 !important;
    margin-bottom: 1rem !important;
}

.about-text-body {
    color: var(--gray-600) !important;
    line-height: 1.8 !important;
}

.about-offer-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-navy);
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.about-offer-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid var(--gold);
}

.about-offer-header i {
    font-size: 1.8rem;
    color: var(--gold);
}

.about-offer-header h3 {
    color: var(--white) !important;
    font-weight: 800 !important;
    margin: 0 !important;
    font-size: 1.4rem !important;
}

.about-offer-list {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.about-offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-offer-list li:last-child {
    margin-bottom: 0;
}

.about-offer-list li i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.about-section-mvv .section-title {
    text-align: center !important;
}

/* MVV — Missão, Visão e Valores (Sobre) */
.about-section-mvv {
    position: relative;
    overflow: hidden;
}

.about-mvv-title {
    color: var(--gold) !important;
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.5rem !important;
    text-align: center;
}

.about-mvv-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem !important;
    margin-bottom: 1.25rem !important;
}

.about-mvv-row {
    align-items: stretch;
}

.about-mvv-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(var(--gold-rgb), 0.22);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(6px);
}

.about-mvv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--gold-rgb), 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.about-mvv-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(var(--gold-rgb), 0.25);
}

.about-mvv-card-title {
    color: var(--white) !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    letter-spacing: 0.02em;
}

.about-mvv-card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.about-mvv-card-body p {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.98rem !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    max-width: 280px;
}

.about-mvv-values {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 260px;
    text-align: left;
}

.about-mvv-values li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-mvv-values li:last-child {
    border-bottom: none;
}

.about-mvv-values li i {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.2);
    color: var(--gold);
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-mvv-tag {
    display: inline-block;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    background: rgba(var(--gold-rgb), 0.15);
    border: 1px solid rgba(var(--gold-rgb), 0.4);
    color: var(--light-gold);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: auto;
}

@media (max-width: 991px) {
    .about-mvv-card {
        margin-bottom: 0;
    }

    .about-mvv-title {
        font-size: 2rem !important;
    }
}

/* ============================================
   COMISSÃO TÉCNICA
   ============================================ */
.comissao-hero {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--gold);
}

.comissao-hero-content {
    position: relative;
    z-index: 2;
}

.comissao-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(var(--gold-rgb), 0.15);
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    color: var(--light-gold);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.comissao-hero-title {
    color: var(--white) !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.75rem !important;
}

.comissao-hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem !important;
    max-width: 520px;
    margin: 0 auto 1.25rem !important;
}

.comissao-section {
    background: var(--gray-50);
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.comissao-grid--single .col-lg-4 {
    max-width: 400px;
}

.comissao-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-navy);
    padding: 2rem 1.75rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comissao-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 31, 61, 0.15);
}

.comissao-card-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 25px rgba(var(--gold-rgb), 0.3);
    margin-bottom: 1.25rem;
    background: var(--gray-100);
}

.comissao-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comissao-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--gold);
    font-size: 3rem;
}

.comissao-card-name {
    color: var(--navy-dark) !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.35rem !important;
}

.comissao-card-role {
    color: var(--gray-600) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.comissao-card-role i {
    color: var(--gold);
    margin-right: 4px;
}

.comissao-card-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    background: var(--navy-dark);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.comissao-card-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.comissao-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--navy) !important;
    text-decoration: none !important;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: all 0.25s ease;
    word-break: break-all;
}

.comissao-contact-link:hover {
    background: rgba(var(--gold-rgb), 0.12);
    border-color: var(--gold);
    color: var(--gold-dark) !important;
}

.comissao-contact-link i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.comissao-card-since {
    color: var(--gray-600) !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    margin: 0 !important;
}

.comissao-card-since i {
    color: var(--gold);
    margin-right: 4px;
}

.comissao-card-notes {
    color: var(--gray-600) !important;
    font-size: 0.88rem !important;
    line-height: 1.6;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    width: 100%;
}

.comissao-empty-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
}

.comissao-empty h3 {
    color: var(--navy-dark) !important;
    font-weight: 800 !important;
}

.comissao-empty p {
    color: var(--gray-600) !important;
}

/* ============================================
   PATROCINADORES — Hero e destaque
   ============================================ */
.patrocinadores-hero {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--gold);
}

.patrocinadores-hero-content {
    position: relative;
    z-index: 2;
}

.patrocinadores-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(var(--gold-rgb), 0.15);
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    color: var(--light-gold);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.patrocinadores-hero-title {
    color: var(--white) !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.75rem !important;
}

.patrocinadores-hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem !important;
    max-width: 520px;
    margin: 0 auto 1.25rem !important;
}

.patrocinadores-section {
    background: var(--gray-50);
    margin-top: -20px;
    position: relative;
    z-index: 2;
}

.patrocinador-destaque {
    background: var(--white);
    border-radius: var(--radius-md);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-navy);
    overflow: hidden;
    margin-bottom: 3rem;
}

.patrocinador-destaque-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.patrocinador-destaque-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy-dark);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.patrocinador-destaque-title {
    color: var(--navy-dark) !important;
    font-size: 1.75rem !important;
    font-weight: 900 !important;
    margin-bottom: 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.patrocinador-destaque-title i {
    color: var(--gold);
    font-size: 1.4rem;
}

.patrocinador-destaque-desc {
    color: var(--gray-600) !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.5rem !important;
}

.patrocinador-destaque-desc strong {
    color: var(--navy-dark);
}

.patrocinador-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.patrocinador-service {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
}

.patrocinador-service:hover {
    border-color: var(--gold);
    background: rgba(var(--gold-rgb), 0.08);
}

.patrocinador-service i {
    color: var(--gold);
    font-size: 1.25rem;
}

.patrocinador-service span {
    color: var(--navy-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.patrocinador-destaque-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.patrocinador-destaque-actions .btn {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}

.patrocinador-destaque-showcase {
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 100%;
}

.patrocinador-showcase-inner {
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.patrocinador-showcase-logo {
    width: 130px;
    height: 130px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(var(--gold-rgb), 0.25);
}

.patrocinador-showcase-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.patrocinador-showcase-tagline {
    color: var(--gold) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
}

.patrocinador-showcase-stat {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem !important;
    margin-bottom: 1.25rem !important;
}

.patrocinador-showcase-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.patrocinador-showcase-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 6px 12px;
    background: rgba(var(--gold-rgb), 0.15);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    border-radius: var(--radius-pill);
    color: var(--light-gold);
    font-size: 0.75rem;
    font-weight: 700;
}

.patrocinador-showcase-tags span i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ============================================
   CONTATO
   ============================================ */
.contato-hero {
    background: linear-gradient(145deg, #000912 0%, #01142B 50%, #011a38 100%);
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #B9932E;
    border-bottom: 4px solid var(--gold);
    z-index: 1;
}

.contato-hero-content {
    position: relative;
    z-index: 2;
}

.contato-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(var(--gold-rgb), 0.15);
    border: 2px solid var(--gold);
    border-radius: var(--radius-pill);
    color: var(--light-gold);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.contato-hero-title {
    color: var(--white) !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    margin-bottom: 0.75rem !important;
}

.contato-hero-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem !important;
    max-width: 520px;
    margin: 0 auto 1.25rem !important;
}

.contato-section {
    background: #e8edf5;
    background: var(--gray-50);
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    position: relative;
    z-index: 2;
}

.contato-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-navy);
    padding: 2rem 2.25rem;
}

.contato-form-title {
    color: var(--navy-dark) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.35rem !important;
}

.contato-form-subtitle {
    color: var(--gray-600) !important;
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
}

.contato-form-card .form-label {
    color: var(--navy-dark) !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
}

.contato-form-card .form-control,
.contato-form-card .form-select {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contato-form-card .form-control:focus,
.contato-form-card .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.15);
}

.contato-precadastro {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.contato-precadastro h5 {
    color: var(--navy-dark) !important;
    font-weight: 800 !important;
}

.contato-info-panel {
    background: linear-gradient(160deg, #000912 0%, #01142B 100%);
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
    border-radius: var(--radius-md);
    border-top: 4px solid #B9932E;
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-navy);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.contato-info-title {
    color: var(--gold) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.25rem !important;
}

.contato-info-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
}

.contato-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.15);
    border: 1px solid rgba(var(--gold-rgb), 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-info-icon i {
    color: var(--gold);
    font-size: 0.95rem;
}

.contato-info-item strong {
    display: block;
    color: var(--light-gold);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
}

.contato-info-item p {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

.contato-info-item a {
    color: var(--white) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.contato-info-item a:hover {
    color: var(--gold) !important;
}

.contato-info-social {
    margin: 1.25rem 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contato-info-social strong {
    display: block;
    color: var(--light-gold);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.contato-social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.contato-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(var(--gold-rgb), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold) !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.contato-social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark) !important;
    transform: translateY(-2px);
}

.contato-whatsapp-btn {
    margin-top: auto;
    padding-top: 1rem;
    font-weight: 700 !important;
}

.contato-quick-grid {
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

.contato-quick-card {
    background: #ffffff;
    border: 1px solid #dde3ee;
    border-top: 3px solid #B9932E;
    border-top: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 16px rgba(15, 31, 61, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contato-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 31, 61, 0.12);
}

.contato-quick-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B9932E, #D4B45A);
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: #000912;
    color: var(--navy-dark);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.contato-quick-card h5 {
    color: #000912 !important;
    color: var(--navy-dark) !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
}

.contato-quick-card p {
    color: #5a6478 !important;
    color: var(--gray-600) !important;
    font-size: 0.88rem !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .comissao-hero-title {
        font-size: 2rem !important;
    }

    .comissao-card {
        padding: 1.5rem;
    }

    .patrocinadores-hero-title {
        font-size: 2rem !important;
    }

    .patrocinador-destaque-content {
        padding: 1.75rem;
    }

    .patrocinador-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .patrocinador-destaque-showcase {
        padding: 1.75rem;
    }

    .patrocinio-planos-title {
        font-size: 1.75rem !important;
    }

    .patrocinio-plan {
        padding: 1.5rem;
    }

    .contato-hero-title {
        font-size: 2rem !important;
    }

    .contato-form-card {
        padding: 1.5rem;
    }

    .contato-info-panel {
        margin-bottom: 0;
    }

    .about-hero-title {
        font-size: 2.2rem !important;
    }

    .about-hero-motto {
        font-size: 1.2rem !important;
    }

    .about-card {
        padding: 1.5rem;
    }

    .about-highlight-header {
        margin: -1.5rem -1.5rem 1.25rem;
        padding: 1.25rem;
    }

    .about-highlight-logo {
        height: 70px;
    }
}
