    /* =========================================
   GAEEL - Styles
   ========================================= */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --blue-dark: #001F3F;
    --blue-medium: #003366;
    --blue-darker: #000D1A;
    --yellow: #FFD700;
    --yellow-light: #FFE44D;
    --yellow-dark: #D4AF37;
    
    /* Grayscale */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    
    /* Other */
    --green: #10b981;
    --success: #22c55e;
    --warning: #f59e0b;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-darker);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

/* Accessibility helpers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 1001;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-24 {
    margin-bottom: 1.5rem;
}

.mt-48 {
    margin-top: 3rem;
}

.mt-64 {
    margin-top: 4rem;
}

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--blue-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    overflow-x: auto; /* prevent overflow on very small screens */
}

.navbar-logo img {
    height: 4rem;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap; /* allow wrapping when space is tight */
    transition: max-height 0.3s;
}

.nav-link {
    color: #D4AF37;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--blue-dark);
}

.nav-link.active,
.nav-link:focus {
    color: var(--yellow);
    outline: 2px solid var(--yellow);
}

.navbar-cta {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    border-radius: 0.5rem;
    color: var(--yellow) !important;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    right: -100%;
}


.mobile-menu-btn i,
.mobile-menu-btn svg {
    color: var(--yellow) !important;
}

/* lucide icons generate svg; force stroke/fill yellow */
.mobile-menu-btn svg,
.mobile-menu-btn svg * {
    stroke: var(--yellow) !important;
    fill: var(--yellow) !important;
}

.mobile-menu-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--yellow);
}

.mobile-menu {
    background: var(--white);
    border-top: 1px solid #ffffff;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem;
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #ffffff;
}

/* desktop navigation only visible on wider viewports */
.navbar-menu.desktop-menu,
.navbar-cta.desktop-menu {
    display: none;
}

/* switch to desktop layout at tablet/desktop breakpoint */
@media (min-width: 768px) {
    .navbar-menu.desktop-menu,
    .navbar-cta.desktop-menu {
        display: flex;
    }
    .mobile-menu-btn {
        display: none !important;
    }
    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .navbar-menu.desktop-menu {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex !important;
    }
}

/* Tab buttons for club area */
.tab-btn {
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid #ffffff;
    background: var(--white);
    border-radius: 0.375rem;
    transition: background 0.3s, border-color 0.3s;
}
.tab-btn.active, .tab-btn:hover {
    background: var(--yellow-light);
    border-color: var(--yellow);
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.btn:focus {
    outline: 2px dashed var(--yellow);
    outline-offset: 2px;
}

.btn-primary {
    background:#FFD700;
    color: #001f3f;
}

.btn-primary:hover {
    background: var(--blue-darker);
}

.btn-secondary {
    background: #d9d9d9;
    color: #001f3f;
}

.btn-secondary:hover {
    background: #c0c0c0;
}

.btn-primary[disabled],
.btn-secondary[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--blue-dark);
}

.btn-yellow:hover {
    background: var(--yellow-light);
}

.btn-outline {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-outline:hover {
    background: var(--gray-200);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* =========================================
   SPONSORS CAROUSEL
   ========================================= */

.sponsors-carousel {
    background: var(--white);
    padding: 1rem 0;
    margin-top: 5rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.sponsors-track {
    display: flex;
    gap: 3rem;
    animation: scroll-sponsors 30s linear infinite;
    width: fit-content;
}

.sponsor-item {
    flex-shrink: 0;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.sponsor-item img {
    max-height: 3.5rem;
    max-width: 200px;
    width: auto;
    transition: transform 0.3s ease;
}

.sponsor-item:hover img {
    transform: scale(1.05);
}

@keyframes scroll-sponsors {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   HERO SECTION
   ========================================= */

/* loja */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-img {
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}
.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.3;
    min-height: 40px;
    margin: 0.5rem 0;
}
.product-price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}
.product-orignal-price {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-decoration: line-through;
}
.product-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--blue-dark);
}
.product-price sup {
    font-size: 0.7em;
}
.product-discount {
    background: var(--green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    font-weight: 700;
}
.product-installment {
    font-size: 0.9rem;
    color: var(--green);
    font-weight: 600;
    margin: 0.25rem 0;
}
.product-shipping {
    font-size: 0.9rem;
    color: var(--green);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.shipping-icon {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1rem;
}
.product-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Search Bar */
.search-bar-container {
    width: 100%;
    margin-bottom: 2rem;
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--gray-900);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-input::placeholder {
    color: var(--gray-500);
}

.search-input:focus {
    outline: none;
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
}

/* modal / popup */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* chatbot widget */
.chatbot {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2200;
    font-family: var(--font-family);
}
.chatbot-toggle {
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}
.chatbot-icon {
    font-size: 1.5rem;
    color: var(--blue-dark);
}
.chatbot-window {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 280px;
    max-width: 90vw;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.chatbot-header {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-weight: 700;
}
.chatbot-body {
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.chatbot-option {
    background: var(--yellow);
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: left;
}
.chatbot-option:hover {
    background: var(--yellow-light);
}
.chatbot-response {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-900);
}
.hidden {
    display: none !important;
}
.modal.hidden {
    display: none;
}
.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 90%;
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
}
.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--gray-700);
    cursor: pointer;
}
.modal-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(24, 76, 128, 0.95), 
        rgba(0, 31, 63, 0.85), 
        rgba(0, 31, 63, 0.75));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,    
        transparent 100px,
        rgba(255, 215, 0, 0.3) 80px,
        rgba(255, 215, 0, 0.3) 82px
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
    text-align: center;
}

.hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* =========================================
   SECTIONS
   ========================================= */

.section {
    padding: 5rem 0;
}

.bg-white {
    background: var(--white);
}

.bg-gray {
    background: var(--gray-50);
}

.bg-gradient {
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.bg-gradient-white {
    background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    border-radius: 10rem;
}

.section-badge,
.section-badge-dark {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-badge {
    background: rgba(255, 215, 0, 0.2);
    color: var(--blue-dark);
}

.section-badge-dark {
    background: rgba(255, 215, 0, 0.2);
    color: var(--blue-dark);
}


.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
}

.rounded-image {
    border-radius: 1rem;
    box-shadow: 0 30px 25px -5px rgba(0, 0, 0, 0.1);
}

/* CEO Info Styles */
.ceo-info {
    text-align: center;
    margin-top: 1.5rem;
}

.ceo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 0.5rem;
}

.ceo-credentials {
    font-size: 1rem;
    font-weight: 600;
    color: var(--yellow-dark);
    margin: 0;
}

.about-content {
    padding: 0;
}

.text-large {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.75;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: rgba(0, 31, 63, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        position: relative;
    }

    .about-content {
        padding-top: 4rem;
    }

    .about-content .section-badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 0;
    }
}

/* =========================================
   CARDS GRID
   ========================================= */

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   CHAMPIONSHIP CARDS
   ========================================= */
.cards-grid-camp{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

   @media (min-width: 1024px) {
    .cards-grid-camp {
        grid-template-columns: repeat(2, 1fr);
    }
}
.championship-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.championship-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.championship-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.championship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.championship-card:hover .championship-image img {
    transform: scale(1.05);
}

.championship-image .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.championship-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 43, 129, 0.5), transparent);
}

.championship-trophy {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.card-content {
    padding: 1.5rem;
}

.category-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-dark);
    background: rgba(255, 215, 0, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Badges */
.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-success {
    background: var(--success);
    color: var(--white);
}

.badge-warning {
    background: var(--warning);
    color: var(--white);
}
/* ==========================================
   CARROSSEL DE PATROCINADORES
========================================== */

.sponsors-carousel {
    margin-top: 80px;
    text-align: center;
}

.carousel-header {
    margin-bottom: 40px;
}

.carousel-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.carousel-subtitle {
    font-size: 16px;
    color: #64748b;
}

/* Wrapper escondendo overflow */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Track animado */
.carousel-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

/* Item individual */
.carousel-item {
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.carousel-item img {
    max-width: 150px;
    transition: 0.3s ease;
}

.carousel-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Pausa ao passar o mouse */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Animação */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .carousel-item {
        width: 160px;
    }

    .carousel-item img {
        max-width: 110px;
    }
}
/* =========================================
   COURSE CARDS
   ========================================= */

.course-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.course-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.course-header {
    background: linear-gradient(to right, var(--blue-dark), var(--blue-medium));
    padding: 1.5rem;
    color: var(--white);
    position: relative;
}

.badge-presencial {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--yellow);
    color: var(--blue-dark);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.course-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.course-instructor {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.course-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    text-align: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.level-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.course-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 0.5rem;
}

.course-location span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* CTA Box */
.cta-box {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(to right, var(--blue-dark), var(--blue-medium));
    border-radius: 1rem;
    padding: 3rem;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   SPONSORSHIP
   ========================================= */

.stats-banner {
    background: linear-gradient(to right, var(--blue-dark), var(--blue-medium));
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 4rem;
    color: var(--white);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 0;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .stats-banner {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Sponsor Cards */
.sponsor-card {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.sponsor-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.sponsor-card.featured {
    border: 4px solid var(--yellow);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--yellow);
    color: var(--blue-dark);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-bottom-left-radius: 0.5rem;
}

.sponsor-header {
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

.sponsor-header.bronze {
    background: linear-gradient(to right, #c2410c, #fb923c);
}

.sponsor-header.silver {
    background: linear-gradient(to right, #6b7280, #d1d5db);
}

.sponsor-header.gold {
    background: linear-gradient(to right, #ca8a04, #fbbf24);
}

.sponsor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    margin: 0 auto 1rem;
}

.sponsor-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sponsor-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-item span {
    color: var(--gray-700);
}

/* Custom Package Box */
.custom-package-box {
    margin-top: 3rem;
    margin-block-end:4rem ;
    background:linear-gradient(to right, var(--blue-dark), var(--blue-medium));
    border-radius: 2rem;
    box-shadow: 0 10px 10px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;

}

.custom-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.custom-text {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.custom-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .custom-buttons {
        flex-direction: row;
    }
}

/* =========================================
   CLUB AREA
   ========================================= */

.club-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    

}

@media (min-width: 1024px) {
    .club-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Form Container */
.club-form-container {
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 0 50px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.form-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.tab-btn {
    padding: 1rem;
    font-weight: 700;
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: var(--gray-700);
}

.tab-btn.active {
    color: var(--blue-dark);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--blue-dark);
    box-shadow: 0 0 0 3px rgba(0, 31, 63, 0.1);
    cursor: pointer;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox {
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    cursor: pointer;
}

/* Form note */
.form-note {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.form-note-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--blue-dark);
    margin: 0;
    font-weight: 500;
}

/* Benefits Sidebar */
.club-benefits {
    position: sticky;
    top: 6rem;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.club-benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, var(--blue-dark), var(--blue-medium));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit-title {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.benefit-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Support Box */
.support-box {
    background: linear-gradient(to right, var(--blue-dark), var(--blue-medium));
    border-radius: 1rem;
    padding: 2rem;
    color: var(--white);
}

.support-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-text {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
    background: var(--blue-dark);
    color: var(--white);
}

.footer-content {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 4rem;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.contact-link:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--yellow);
    color: var(--blue-dark);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--yellow);
}

/* dropdown within footer for regulamentos */
.footer-dropdown {
    width: 100%;
}
.footer-dropdown summary {
    list-style: none;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    padding: 0;
}
.footer-dropdown summary::-webkit-details-marker {
    display: none;
}
.footer-dropdown[open] summary {
    color: var(--yellow);
}
.footer-dropdown .reg-list {
    list-style: none;
    margin-top: 0.5rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-dropdown .reg-list .footer-link {
    font-size: 0.875rem;
}
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Newsletter */
.newsletter-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.newsletter-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-left: 0px;
}

.newsletter-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 28rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .newsletter-content {
        align-items: flex-start;
    }
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--yellow);
}

@media (min-width: 768px) {
    .newsletter-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .newsletter-form {
        width: auto;
    }
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: var(--yellow);
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* =========================================
   ICONS
   ========================================= */

.icon-16 {
    width: 1rem;
    height: 1rem;
}

.icon-20 {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-24 {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.icon-32 {
    width: 2rem;
    height: 2rem;
}

.icon-64 {
    width: 4rem;
    height: 4rem;
}

.text-blue {
    color: var(--blue-dark);
}

.text-yellow {
    color: var(--yellow);
}

.text-green {
    color: var(--green);
}

/* =========================================
   LINKS
   ========================================= */

.link-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.link-primary:hover {
    color: var(--blue-darker);
}

.link-primary.small {
    font-size: 0.875rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1023px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* =========================================
   LECTURES
   ========================================= */

.lecture-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.lecture-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.25rem);
}

.lecture-header {
    background: linear-gradient(to right, var(--blue-dark), var(--blue-medium));
    padding: 1.5rem;
    color: var(--white);
    position: relative;
}

.lecture-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.lecture-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.lecture-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.lecture-speaker {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.lecture-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.lecture-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 0.5rem;
}

.lecture-location span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.lecture-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* =========================================
   MODAL
   ========================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 1rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay:not(.hidden) .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    background: var(--blue-dark);
    color: var(--white);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 0;
    height: 600px;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        height: 70vh;
    }
    
    .modal-large .modal-body {
        height: 70vh;
    }
}

/* Modal large for external forms */
.modal-large {
    max-width: 1000px;
    width: 95%;
}

.modal-large .modal-body {
    height: 700px;
}
