:root {
    --color-black: #0a0a0a;
    --color-black-light: #141414;
    --color-white: #ffffff;
    --color-gold: #D4AF37;
    --color-gold-glow: rgba(212, 175, 55, 0.5);
    --color-burnt-yellow: #B8860B;
    --color-text-muted: #a0a0a0;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    /* App-like constraints */
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

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

.list-unstyled {
    list-style: none;
}

/* Utilities */
.container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.text-gold { color: var(--color-gold); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-full { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-burnt-yellow));
    color: var(--color-black);
    border: none;
    font-weight: 800;
}

.btn-glow {
    box-shadow: 0 0 20px var(--color-gold-glow);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--color-gold);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
}

/* Sections Base */
.section {
    padding: 80px 0;
    position: relative;
}

.dark-section { background-color: var(--color-black-light); }
.black-section { background-color: var(--color-black); }

.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

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

.section-desc {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Header Section */
.main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 70px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.ct-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.de-lutas {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--color-white);
}

.btn-header-gold {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Navigation Menu */
.main-nav {
    display: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--color-gold);
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    .main-nav {
        display: block;
    }
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Active */
.main-nav.active {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    flex-direction: column;
    border-bottom: 1px solid var(--color-gold);
    z-index: 999;
}

.main-nav.active ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 750px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 70px; /* Header space */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}

.darker-overlay {
    background: rgba(10,10,10,0.8);
}

.hero-content {
    z-index: 1;
    padding: 20px 40px 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text-block {
    text-align: left;
    max-width: 400px;
    z-index: 2;
}

.hero-main-title {
    font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    margin-bottom: 15px;
}

.light-text {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--color-white);
}

.bold-text {
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--color-white);
}

.italic-text {
    font-weight: 700;
    font-size: 3.5rem;
    font-style: italic;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero-features {
    margin-bottom: 30px;
}

.hero-features li {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    color: var(--color-white);
}

.hero-features i {
    color: var(--color-gold);
    width: 20px;
    text-align: center;
}

.btn-hero {
    font-size: 0.9rem;
    padding: 15px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.hero-btn-sub {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-logo-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.4;
}

.side-logo {
    width: 500px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

/* Running Wolf Animation */
.wolf-animation-container {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
}

.happy-wolf {
    display: inline-block;
    width: 65px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
    animation: runWolf 8s linear infinite;
}

@keyframes runWolf {
    0% { transform: translateX(-100px) translateY(0); }
    15% { transform: translateX(15vw) translateY(-30px); }
    30% { transform: translateX(30vw) translateY(0); }
    45% { transform: translateX(45vw) translateY(-30px); }
    60% { transform: translateX(60vw) translateY(0); }
    75% { transform: translateX(75vw) translateY(-30px); }
    100% { transform: translateX(110vw) translateY(0); }
}

.hero-bottom-bar {
    background: var(--color-black-light);
    padding: 20px;
    z-index: 2;
    border-top: 1px solid var(--glass-border);
}

.bottom-bar-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.bottom-results-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 5px;
}

.result-item:last-child {
    border-right: none;
}

.result-item i {
    font-size: 1.2rem;
    color: var(--color-white);
}

.result-item span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

/* About Carousel */
.about-carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 800px;
}

.about-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.9) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.about-slide {
    min-width: 100%;
    height: 100%;
}

.about-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.5;
}

.about-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.glass-card-small {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
}

.about-icon-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
}

.about-icon-item i {
    color: var(--color-gold);
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

/* Modalidades */
.modalidade-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mod-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.premium-border::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.mod-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #222; /* Placeholder bg */
}

/* Subtle placeholders for images if they don't exist yet */
.mod-image.jiu-jitsu { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('assests/images/jiujitsu.jpeg'); }
.mod-image.boxe { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('assests/images/boxe.jpeg'); }
.mod-image.muaythai { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('assests/images/muaythai.jpeg'); }
.mod-image.submission { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), url('assests/images/submission.jpeg'); }

.mod-info {
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.mod-info h3 {
    font-size: 1.1rem;
    margin: 0;
}

.btn-link {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Estatísticas */
.stats-section {
    padding: 40px 0;
    background: var(--color-black-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 0;
}

.stat-number-wrapper {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 2px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.stat-plus {
    font-size: 1.4rem;
    margin-right: 3px;
}

.stat-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Kids Section */
.kids-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.kids-top-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

.kids-text-col {
    flex: 1;
    min-width: 0;
    max-width: 55%;
    text-align: left;
    position: relative;
    z-index: 2;
}

.kids-image-col {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.kids-side-image {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
    filter: brightness(1.1) contrast(1.1);
    animation: rgbGlow 4s linear infinite;
    transform: scale(3.0) translate(30%, -5%);
    transform-origin: center right;
}

@keyframes rgbGlow {
    0% { filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px #ff0000) drop-shadow(0 0 30px #ff0000); }
    15% { filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px #ff7f00) drop-shadow(0 0 30px #ff7f00); }
    30% { filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px #ffff00) drop-shadow(0 0 30px #ffff00); }
    45% { filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px #00ff00) drop-shadow(0 0 30px #00ff00); }
    60% { filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px #00ffff) drop-shadow(0 0 30px #00ffff); }
    75% { filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px #0000ff) drop-shadow(0 0 30px #0000ff); }
    90% { filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px #8b00ff) drop-shadow(0 0 30px #8b00ff); }
    100% { filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px #ff0000) drop-shadow(0 0 30px #ff0000); }
}

.kids-subtitle {
    font-family: 'Outfit', sans-serif;
    color: #ff1493;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.kids-main-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ff8c00, #ffd700, #32cd32, #00bfff, #ff0000, #ff8c00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: textGradient 4s linear infinite, cartoonBounce 2s infinite;
}

@keyframes textGradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes cartoonBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    20% { transform: scale(1.05) rotate(2deg); }
    40% { transform: scale(0.95) rotate(-2deg); }
    60% { transform: scale(1.05) rotate(2deg); }
    80% { transform: scale(0.95) rotate(-2deg); }
}

.kids-desc {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    display: inline-block;
    animation: descFloat 3s ease-in-out infinite;
}

@keyframes descFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-2px) rotate(1deg); }
    66% { transform: translateY(1px) rotate(-1deg); }
}

.kids-btn {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    animation: btnPulse 1.5s infinite;
}

@keyframes btnPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.kids-btn:hover {
    background-color: #eee;
    animation: none;
    transform: translateY(-2px);
}

.kids-grid {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 5px;
    margin-top: 20px;
}

.kids-card {
    flex: 1;
    min-width: 0;
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.kids-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.kids-card i {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.kids-card span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: #ccc;
    line-height: 1.2;
}

.kids-icon-orange { color: #ff8c00; }
.kids-icon-blue { color: #00bfff; }
.kids-icon-green { color: #32cd32; }
.kids-icon-purple { color: #8a2be2; }
.kids-icon-yellow { color: #ffd700; }
.kids-icon-pink { color: #ff1493; }

@media (max-width: 768px) {
    .kids-container {
        flex-direction: column;
    }
    .kids-main-title {
        font-size: 2.5rem;
    }
}

/* Gallery */
.carousel-container {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 5px;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Horários */
/* Schedule Premium */
.schedule-premium-section {
    background-color: #0A0A0A;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.schedule-grunge-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 8%),
        linear-gradient(-45deg, rgba(255,255,255,0.03) 0%, transparent 8%);
    pointer-events: none;
    z-index: 0;
}

.schedule-premium-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.schedule-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.schedule-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: transparent;
}

.schedule-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.65);
}

.schedule-title-wrapper {
    display: flex;
    flex-direction: column;
}

.schedule-title-main {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: #fff;
    line-height: 0.9;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px rgba(255,255,255,0.2);
    margin: 0;
    text-transform: uppercase;
}

.schedule-title-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
    margin: 0;
    letter-spacing: 1px;
}

/* Grid */
.schedule-grid-wrapper {
    background-color: #fff;
    border: 6px solid #000;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.schedule-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-col-header {
    background-color: #000;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.schedule-class-card {
    background-color: #0A0A0A;
    color: #fff;
    border-radius: 8px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #1C1C1C;
    cursor: pointer;
    transition: all 0.3s ease;
}

.schedule-class-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.schedule-class-card .class-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
}

.schedule-class-card .class-time {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 500;
}

/* Footer */
.schedule-footer {
    margin-top: 40px;
    text-align: center;
    color: #fff;
}

.schedule-icons {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.schedule-icons .divider {
    color: #1C1C1C;
    margin: 0 15px;
}

.schedule-slogan {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #aaa;
    letter-spacing: 4px;
}

.schedule-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
    letter-spacing: 1px;
}

.schedule-btn:hover {
    background-color: #1C1C1C;
    color: #fff;
    border-color: #1C1C1C;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .schedule-title-main { font-size: 3.5rem; }
    .schedule-title-sub { font-size: 2rem; }
    
    .schedule-grid-wrapper {
        padding: 15px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .schedule-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .schedule-col-header {
        grid-column: 1 / -1;
        margin-bottom: 5px;
    }

    .schedule-class-card {
        padding: 10px 5px;
    }

    .schedule-class-card .class-name {
        font-size: 0.85rem;
    }

    .schedule-class-card .class-time {
        font-size: 0.75rem;
    }
    
    .schedule-icons {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .schedule-slogan {
        font-size: 0.7rem;
    }
}

/* Planos */
.plans-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}

.plan-card {
    flex: 1;
    min-width: 0;
    padding: 20px 10px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.plan-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.plan-card .price span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.plan-card p {
    font-size: 0.8rem;
    margin-bottom: 15px;
    color: #ddd;
}

.plan-card .btn {
    padding: 8px 5px;
    font-size: 0.75rem;
    width: 100%;
}

.plan-featured {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Loja */
.store-catalog {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.product-card {
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
}

.product-img-box {
    width: 100%;
    height: 300px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.product-sizes {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.size-option {
    border: 1px solid #333;
    color: #aaa;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option:hover,
.size-option.active {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.product-colors {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-dot:hover,
.color-dot.active {
    transform: scale(1.2);
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.product-info .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .store-catalog {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .product-card {
        width: 100%;
    }
    
    .product-img-box {
        height: 160px;
        padding: 10px;
    }
    
    .product-info {
        padding: 12px 8px;
    }
    
    .product-info h3 {
        font-size: 0.85rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .product-sizes {
        gap: 4px;
        margin-bottom: 10px;
    }
    
    .size-option {
        padding: 2px 5px;
        font-size: 0.65rem;
    }
    
    .product-colors {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .color-dot {
        width: 16px;
        height: 16px;
    }
    
    .product-info .btn {
        padding: 8px 5px;
        font-size: 0.8rem;
    }
}

/* Calculadora de Tamanhos */
.size-calculator-box {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.calculator-inner {
    max-width: 800px;
    width: 100%;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--color-gold);
}
.calculator-inner h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}
.calc-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 25px;
    text-align: left;
}
.calc-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #ccc;
}
.calc-group input, .calc-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}
.calc-result {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px dashed var(--color-gold);
}
.calc-result.hidden {
    display: none;
}
.calc-result h4 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.gold-text {
    color: var(--color-gold);
    font-size: 2.2rem;
}

/* Tabela de Tamanhos */
.size-guide-container {
    margin-top: 50px;
    background-color: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.size-guide-container h3 {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
}

.size-guide-table th,
.size-guide-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95rem;
    text-align: center;
}

.size-guide-table th {
    background-color: #1a1a1a;
    font-weight: 800;
    color: var(--color-gold);
    text-transform: uppercase;
}

.size-guide-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .size-guide-container {
        padding: 15px 5px;
    }
    .size-guide-table th,
    .size-guide-table td {
        padding: 8px 2px;
        font-size: 0.65rem;
    }
    .size-guide-container h3 {
        font-size: 1.1rem;
    }
}

/* Depoimentos */
.testimonial-carousel {
    width: 100%;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 20px 0;
    -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar {
    height: 6px;
}

.testimonial-track::-webkit-scrollbar-thumb {
    background-color: var(--color-gold);
    border-radius: 10px;
}

.testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.stars {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: var(--color-gold);
}

/* Localização */
.placeholder-map {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* Final CTA */
.final-cta {
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    background: url('assests/images/submission.jpg') center/cover;
}

.logo-wall {
    margin-bottom: 20px;
}

.wall-logo {
    width: 120px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));
}

.final-title {
    font-size: 2.2rem;
}

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

/* Floating CTA */
.fab-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.fab-cta:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #fff;
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Footer */
.main-footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #ccc;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--color-gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col p i {
    color: var(--color-gold);
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

.footer-col a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #888;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
