
:root {
    --primary-color: #FFD700; 
    --primary-glow: rgba(255, 215, 0, 0.6);
    --bg-color: #0a0a0a;
    --card-bg: #151515;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --font-heading: 'Oxanium', sans-serif;
    --font-body: 'Oxanium', sans-serif;
    --transition-speed: 0.3s;
    --primary-yellow: #FFD700;
   --dark-bg: #050505;
    --card-bg: #111;
    --text-gray: #a0a0a0;
    --transition-speed: 0.6s;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); 
}

.highlight2:hover{
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    transition: text-shadow 0.3s ease;
}




h2:hover .highlight, h1:hover .highlight{
    text-shadow: 0 0 20px var(--primary-color);
    transition: text-shadow 0.3s ease;
}


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('./assets/hero2.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--bg-color));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Sections General */
.content-section {
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2; 
}


.content-section.reversed .container {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.text-block h2::after {
    content: '';
    display: block;
    width: 0px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
    transition: width 0.3s ease;
}

.text-block:hover h2::after {
    width: 500px; 
}

.text-block p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: justify;
}

.image-block {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder-wrapper {
    position: relative;
    width: 100%;
    border: 2px solid var(--primary-color);
    padding: 10px;
    background: rgba(255, 215, 0, 0.05);
    transition: all var(--transition-speed);
}

.image-placeholder-wrapper:hover {
    transform: scale(1.03) rotate(1deg); 
    box-shadow: 0 0 30px var(--primary-glow);
    border-color: #fff;
}

.image-placeholder-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter var(--transition-speed);
}

.image-placeholder-wrapper:hover img {
    filter: grayscale(0%);
}


#logotipo {
    background-color: #0e0e0e;
}

#logotipo .text-block {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#logotipo .image-placeholder-wrapper {
    box-shadow: none;
    border: none;
    padding: 0;
    max-width: 400px;
    border-radius: 50%; 
    overflow: hidden;
    background: transparent;
}
#logotipo .image-placeholder-wrapper:hover {
     box-shadow: 0 0 50px var(--primary-glow); 
     transform: scale(1.1);
}


#missao {
    background: linear-gradient(180deg, var(--bg-color) 0%, #111 50%, var(--bg-color) 100%);
}

.bg-scroll-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(-5deg); 
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    opacity: 0.05; 
}

.bg-scroll-text {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    white-space: nowrap;
    color: var(--primary-color);
    animation: bg-scroll 40s linear infinite;
}

@keyframes bg-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


#competicoes {
    background-color: #121212;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 2rem 0; 
    padding: 8rem 2rem;
}




.content-section.vertical .container {
    flex-direction: column;
    text-align: center;
}

.text-block.full-width {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.text-block.full-width h2::after {
    margin: 0.5rem auto 0 auto;
}

.gallery-block {
    display: flex;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}

.gallery-item {
    flex: 1;
    max-width: 500px;
}

.caption {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}


footer {
    background-color: #000;
    padding-bottom: 2rem;
    border-top: 4px solid var(--primary-color);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-color);
    color: #000;
    padding: 0.5rem 0;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    padding-right: 2rem;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    transition: all var(--transition-speed);
}

.instagram-btn:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-color);
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}


.fade-in-up, .slide-in-left, .slide-in-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up { transform: translateY(50px); }
.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }

.visible {
    opacity: 1;
}

.bg-grid {
            background-image: linear-gradient(rgba(255, 193, 7, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 193, 7, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
}

.ancora{
    --tw-text-opacity: 1;
    color: rgb(255 193 7 / var(--tw-text-opacity, 1));
    font-size: 2rem ;
    text-decoration: none;
}
.ancora::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  margin-left: 170px;
  max-width: 310px;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ancora:hover::after {
  transform: scaleX(1);
}


@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .container { flex-direction: column !important; gap: 2rem; }
    .text-block h2 { text-align: center; }
    .text-block h2::after { margin: 0.5rem auto; }
    .gallery-block { flex-direction: column; }
    .ticker-item { font-size: 1rem; }
    
    
    #competicoes { clip-path: none; padding: 4rem 2rem; }
    .bg-scroll-text { font-size: 4rem; } 
    #logotipo .text-block { padding: 1.5rem; }


}
.header {
            text-align: center;
            margin-bottom: 40px;
            z-index: 10;
        }

        .header h1 {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 8px;
        }

        .header h1 span {
            color: var(--primary-yellow);
        }

        .header p {
            color: var(--text-gray);
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1200px;
        }

        .carousel-stage {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
            transform: translateX(250px) scale(0.8);
        }

        .slide {
            position: absolute;
            width: 500px;
            height: 350px;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 2px solid transparent;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: filter var(--transition-speed);
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }

        .slide.active .slide-content {
            transform: translateY(0);
        }

        .slide-content h3 {
            color: var(--primary-yellow);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .slide-content p {
            font-size: 0.85rem;
            color: #ddd;
        }


        .slide.active {
            transform: translate3d(0, 0, 150px) scale(1.1);
            z-index: 5;
            opacity: 1;
            filter: blur(0);
            border-color: var(--primary-yellow);
        }

        .slide.prev {
            transform: translate3d(-400px, 0, 0) scale(0.8);
            z-index: 3;
            opacity: 0.4;
            filter: blur(8px);
        }

        .slide.next {
            transform: translate3d(400px, 0, 0) scale(0.8);
            z-index: 3;
            opacity: 0.4;
            filter: blur(8px);
        }

        .slide.hidden {
            transform: translate3d(0, 0, -200px) scale(0.5);
            z-index: 1;
            opacity: 0;
            pointer-events: none;
        }


        .controls {
            margin-top: 450px;
            display: flex;
            gap: 20px;
            z-index: 10;
        }

        .btn {
            background: transparent;
            border: 2px solid var(--primary-yellow);
            color: var(--primary-yellow);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: var(--primary-yellow);
            color: black;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }

        .indicators {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 4px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .dot.active {
            background: var(--primary-yellow);
            width: 30px;
        }

        @media (max-width: 768px) {
            .slide {
                width: 280px;
                height: 200px;
            }
            .slide.prev { transform: translate3d(-120px, 0, 0) scale(0.7); }
            .slide.next { transform: translate3d(120px, 0, 0) scale(0.7); }

            .carousel-container{
                transform: translateX(-220px);
            }

            .controls{
                margin-top: 390px;
                transform: scale(0.9);
            }

            .container-competicoes{
                flex-direction: column-reverse !important;
            }
        }


