/*
 * ALPHA FUTSAL - Design Clean & Minimalista
 * Preto + Dourado
 */

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --gold: #d4af37;
    --light-gold: #fbbf24;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #6b7280;
    --gray-900: #111827;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', '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;
}

/* ============================================
   NAVBAR - Clean & Minimal
   ============================================ */
.navbar {
    background: var(--white) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    padding: 1rem 0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    color: var(--primary-black) !important;
    transition: all 0.3s ease;
}

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

.nav-link {
    color: var(--gray-600) !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(--primary-black) !important;
    background: var(--gray-100) !important;
}

.navbar-toggler {
    border-color: var(--gray-300) !important;
}

.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: var(--primary-black) !important;
    border: 2px solid var(--primary-black) !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);
}

/* ============================================
   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 - Clean
   ============================================ */
.hero-section {
    background: var(--gray-50) !important;
    padding: 120px 0 !important;
    min-height: 85vh;
}

.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: 700 !important;
    color: var(--primary-black) !important;
    margin-bottom: 1rem !important;
    text-align: left !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-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 - Clean
   ============================================ */
.category-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

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

.category-icon i {
    font-size: 1.75rem;
    color: var(--gray-600);
}

.category-card:hover .category-icon {
    background: var(--gold);
}

.category-card:hover .category-icon i {
    color: var(--primary-black);
}

.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 - Clean
   ============================================ */
footer {
    background: var(--primary-black) !important;
    color: var(--white) !important;
    padding: 60px 0 20px !important;
    margin-top: 80px !important;
    border-top: 1px solid var(--gray-200) !important;
}

footer h5 {
    color: var(--white) !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !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 .social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-600);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

footer .social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

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

.footer-bottom {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-600);
    text-align: center;
    color: var(--gray-300);
    font-size: 0.875rem;
}

/* ============================================
   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), #fbbf24);
    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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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), #fbbf24);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 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), #fbbf24);
    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), #fbbf24);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 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(212, 175, 55, 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), #fbbf24);
    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), #fbbf24);
}

.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(--primary-black) 0%, var(--dark-gray) 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), #fbbf24);
    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), #fbbf24);
    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(212, 175, 55, 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(212, 175, 55, 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(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header-pattern {
    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=%22heraldic%22 patternUnits=%22userSpaceOnUse%22 width=%2220%22 height=%2220%22><path d=%22M10,0 L20,10 L10,20 L0,10 Z%22 fill=%22rgba(212,175,55,0.1)%22/></pattern></defs><rect width=%22100%22 height=%22100%22 fill=%22url(%23heraldic)%22/></svg>');
    opacity: 0.3;
}

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

/* Badge dourado com transparência */
.badge-gold {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

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

/* 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, #d4af37, 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 #d4af37;
}

/* Card de história */
.history-card-icon {
    color: #d4af37;
    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 #d4af37;
    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, #d4af37, #fbbf24);
}

.team-card-styled:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

/* 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, #d4af37, #fbbf24);
    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(212, 175, 55, 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: #d4af37;
    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 #d4af37;
    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: #d4af37;
}

.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, #d4af37, #fbbf24);
    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: #d4af37;
    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, #d4af37, #fbbf24);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.team-badge-black {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #d4af37;
    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(212,175,55,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: #d4af37 !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(212, 175, 55, 0.4);
    border-radius: 16px;
}

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

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

/* Card title dourado */
.card-title-gold {
    color: #d4af37;
    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, #d4af37, #fbbf24);
    border-radius: 2px;
}

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

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

/* 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(--light-color);
}

/* 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(212, 175, 55, 0.2);
    border-color: #d4af37;
}

/* 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;
}

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

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

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

/* CTA Section com gradiente dourado */
.cta-section-gold {
    background: linear-gradient(135deg, #d4af37 0%, #fbbf24 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: #d4af37;
    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 #d4af37;
    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(212, 175, 55, 0.3);
    padding: 15px;
    border: 2px solid #f0f0f0;
}

/* Badge preto para parceiro oficial */
.badge-partner-official {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #d4af37;
    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, #d4af37, #fbbf24);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

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

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

/* 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 - CLASSES
   ============================================ */

/* Hero section com gradiente preto */
.hero-section-black {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
}

/* Hero badge */
.hero-badge-gold {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    display: inline-block;
}

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

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

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

/* 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(212, 175, 55, 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, #d4af37, #fbbf24);
    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 #d4af37;
    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: #d4af37;
    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 #d4af37;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

/* Badge gradiente dourado */
.badge-gold-gradient {
    background: linear-gradient(135deg, #d4af37, #fbbf24);
    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: #d4af37;
    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(212, 175, 55, 0.3);
    padding: 20px;
}

/* Showcase title dourado */
.showcase-title-gold {
    color: #d4af37 !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(212, 175, 55, 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: #d4af37;
}

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

/* Botões de planos */
.btn-plan-gold {
    background: linear-gradient(135deg, #d4af37, #fbbf24);
    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 #d4af37;
    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, #d4af37, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 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 - ALINHAMENTO
   ============================================ */

/* Cards com altura 100% e largura completa */
.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;
}

/* Garantir que os cards tenham altura mínima igual */
@media (min-width: 992px) {
    .plan-card {
        min-height: 650px;
    }
}

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

/* ============================================
   CAROUSEL DE PARCEIROS
   ============================================ */
.carousel-control-icon-custom {
    background: linear-gradient(135deg, #d4af37, #fbbf24);
    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(212, 175, 55, 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, #fbbf24, #d4af37);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 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 #d4af37;
    background: transparent;
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
    background: linear-gradient(135deg, #d4af37, #fbbf24);
    transform: scale(1.3);
}

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

/* 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;
    }
}
