* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f3d2e;
    --primary-dark: #0a2c21;
    --accent: #f4a261;
    --accent-light: #ffb347;
    --light: #f8f9fa;
    --dark: #1e2a2e;
    --gray: #6c757d;
    --whatsapp: #25D366;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    zoom: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

/* HEADER */
header {
    background: rgb(28, 28, 28);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 50px;
    gap: 50px
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 1rem;
    
}

.logo span {
    font-size: 0.8rem;
    color:  var(--accent);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: 0.2s;
}

/* ===== HERO / BANNER ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0b2b21 0%, #1d4e3a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    background-image: url('https://images.unsplash.com/photo-1517649763962-0c623066013b?q=80&w=2070&auto=format');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero-logo h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 4px;
}

.hero-logo p {
    font-size: 1.2rem;
    font-weight: 300;
}

.hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 7px;
}

.btn-register {
        display: inline-flex;
        align-items: center;
        gap: 20px;
        background: #FF7B00;
        color: white;
        padding: 14px 22px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.0rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(255, 123, 0, 0.3);
        border: none;
        cursor: pointer;
        backdrop-filter: blur(2px);
        letter-spacing: 0.5px;
        margin-top: 1.5rem;
    }

    .btn-register i {
        font-size: 1.4rem;
    }

    .btn-register:hover {
        background: #E66A00;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 98, 0, 0.4);
    }

    @media (max-width: 768px) {
    .btn-register {
        margin-top: 1.0rem;
    }
}

/* ====== HISTÓRIA ====== */
.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.historia-text h3 {
    color: #c66b03;
    margin: 20px 0 10px;
}

.historia-imagens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.historia-imagens img {
    width: 250%;
    height: 1100px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.historia-imagens img:hover {
    transform: scale(1.03);
}

/* ===== EVENTOS ===== */
.eventos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.evento-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
    width: calc(33% - 22px);
    min-width: 280px;
    transition: 0.3s;
}

.data-title {
    display: inline-block;
    color: #fca400;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;  
}

.data-eventos {
    display: inline-block;
    color: #fca400;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

.evento-imagens img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.evento-card:hover {
    transform: translateY(-8px);
}

.evento-img1 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.evento-img2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.evento-img3 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.evento-info {
    padding: 20px;
}

.evento-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.evento-info p {
    margin: 8px 0;
    color: var(--gray);
}

.btn-inscricao {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 16px;
    transition: 0.2s;
}

.btn-inscricao.disabled {
    background: #aaa;
    cursor: not-allowed;
}

.btn-inscricao:hover:not(.disabled) {
    background: var(--primary);
}

/* ===== PATROCINADORES ===== */
.patrocinadores {
    background: #f0f4f2;
    padding: 80px 0;
    width: 100%;
}

.patrocinadores .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.title-line {
    margin: 0 auto 20px;
    width: 80px;
    height: 4px;
    background: #fca400;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.patrocinadores-slider {
    width: 100%;
    position: relative;
}

.patrocinadores-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
    width: 100%;
}

.patrocinadores-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.patro-card {
    background: white;
    padding: 30px 40px;
    border-radius: 28px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.patro-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 40px rgba(0,0,0,0.2);
}

.patro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #f7c76e, transparent);
    transition: left 0.6s ease;
}

.patro-card:hover::before {
    left: 100%;
}

.patro-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay i {
    font-size: 1.2rem;
    margin-top: 15px;
}

.patro-card img {
    max-width: 120px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.patro-card:hover img {
    transform: scale(1.1);
}

.patro-card h4 {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #333;
    transition: color 0.3s ease;
}

.patro-card:hover h4 {
    color: #fca400;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(207, 144, 8, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(241, 168, 9, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 191, 0, 0);
    }
}

.patro-card:hover {
    animation: pulse 1s ease;
}

@media (max-width: 768px) {
    .patro-card {
        padding: 20px 30px;
        min-width: 160px;
    }
    
    .patro-card img {
        max-width: 90px;
        height: 60px;
    }
    
    .patrocinadores-container {
        gap: 30px;
    }
    
    .card-overlay {
        font-size: 0.8rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .patro-card {
        padding: 15px 20px;
        min-width: 140px;
    }
    
    .patro-card img {
        max-width: 70px;
        height: 50px;
    }
    
    .patro-card h4 {
        font-size: 0.9rem;
    }
    
    .patrocinadores-container {
        gap: 20px;
    }
}

/* ===== PARCEIROS ===== */
.parceiros-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.parceiros-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s linear infinite;
    pointer-events: none;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #eaa608, #eaa608);
    margin: 0 auto;
    border-radius: 2px;
}

.image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    margin-top: 25px;
}

.image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.mapa-alagoas {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .mapa-alagoas {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,rgba(52,152,219,0.2), rgba(231,76,60,0.2));
    pointer-events: none;
}

.descricao-texto {
    text-align: center;
    margin-bottom: 50px;
}

.descricao-texto p {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 500;
    background: rgba(255,255,255,0.9);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.municipios-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.search-bar {
    margin-bottom: 25px;
}

.search-bar input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
    background: white;
}

.search-bar input:focus {
    border-color: #eaa608;
    box-shadow: 0 0 0 3px rgba(48, 48, 48, 0.1);
}

.stats-info {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.stat-badge {
    background: linear-gradient(135deg, #e09721 0%, #c09a34 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.municipios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding: 10px;
}

.municipios-grid::-webkit-scrollbar {
    width: 8px;
}

.municipios-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.municipios-grid::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.municipios-grid::-webkit-scrollbar-thumb:hover {
    background: #eaa608;
}

.municipio-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid #333;
}

.municipio-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
}

.municipio-nome {
    font-weight: 700;
    color: #333;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.municipio-nome::before {
    content: '📍';
    font-size: 1rem;
}

.equipes-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.equipe-tag {
    background: linear-gradient(135deg,#e09721 0%, #c09a34 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: transform 0.2s ease;
    display: inline-block;
}

.equipe-tag:hover {
    transform: scale(1.05);
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@media (max-width: 768px) {
    .parceiros-section {
        padding: 40px 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .descricao-texto p {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .municipios-grid {
        grid-template-columns: 1fr;
        max-height: 500px;
    }

    .stats-info {
        flex-direction: column;
        align-items: center;
    }
}

/*  ===== AVENTURAS ===== */
.aventuras-section {
    background-color: #2C2C2C;
    padding: 80px 0;
    position: relative;
    zoom: 90%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #f5f5f5;
    margin-bottom: 50px;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: #E0E0E0;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 50px;
    line-height: 1.5;
}

.aventuras-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #fca400;
    margin: 20px auto 0;
    border-radius: 2px;
}

.aventuras-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.aventura-card {
    display: flex;
    gap: 40px;
    background: #3A3A3A;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 35px;
}

.aventura-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.aventura-carrossel {
    flex: 1;
    min-width: 0;
    background: #333333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.carrossel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    background: #2C2C2C;
}

.carrossel-imagens {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carrossel-imagens img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
    aspect-ratio: 5/4;
    height: 750px;

}

.carrossel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fca400;
    color: #2C2C2C;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrossel-btn:hover {
    background: #fca400;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carrossel-indicadores {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.indicador {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicador.ativo {
    background: #fca400;
    width: 25px;
    border-radius: 5px;
}

.indicador:hover {
    background: #fca400;
    transform: scale(1.2);
}

.aventura-conteudo {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aventura-conteudo h3 {
    color: #fca400;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.aventura-conteudo p {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.data-aventura {
    display: inline-block;
    color: #fca400;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
    border-top: 1px solid #fca400;
    padding-top: 10px;
    align-self: flex-start;
}

.aventura-card.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .aventuras-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .aventura-card {
        flex-direction: column;
        gap: 0;
    }

    .aventura-card.reverse {
        flex-direction: column;
    }

    .aventura-conteudo {
        padding: 30px;
    }

    .aventura-conteudo h3 {
        font-size: 1.5rem;
    }

    .carrossel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .aventura-conteudo {
        padding: 20px;
    }

    .aventura-conteudo h3 {
        font-size: 1.3rem;
    }

    .aventura-conteudo p {
        font-size: 0.9rem;
    }

    .carrossel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
/* ===== COMUNIDADE ===== */
.comunidade {
    background: linear-gradient(120deg, #0f3d2e, #1b5e46);
    color: white;
    margin-top: 50px;
    padding: 40px 20px;
    height: 600px;
}

.comunidade-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.comunidade-texto {
    flex: 1;
}

.comunidade-texto i {
    color: var(--whatsapp);
    margin-bottom: 20px;
}

.comunidade-texto h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.beneficios {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.beneficios span i {
    margin-right: 8px;
}

.btn-comunidade {
    background: var(--whatsapp);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 60px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.comunidade-imagem {
    flex: 1;
    text-align: center;
}

.comunidade-imagem img {
    max-width: 100%;
    border-radius: 32px;
    box-shadow: 0 25px 30px -12px rgba(0,0,0,0.3);
}

/* ===== Strava ===== */
.strava-callout {
    background: linear-gradient(135deg, #FC4C02 0%, #FF6B2C 100%);
    border-radius: 20px;
    margin-bottom: 60px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(252, 76, 2, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 50px;
    padding: 40px 20px;
    height: 300px;
}

.strava-callout:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(252, 76, 2, 0.4);
}

.strava-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.strava-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.strava-icon i {
    font-size: 55px;
    color: white;
}

.strava-text {
    flex: 1;
}

.strava-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.strava-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.strava-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
}

.strava-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #FC4C02;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.strava-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.strava-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    gap: 15px;
}

.strava-btn:hover i {
    transform: rotate(360deg);
}

.strava-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.strava-btn:active {
    transform: scale(0.98);
}

.strava-decoration {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    position: relative;
}

.bike-animation {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
    animation: bikeMove 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

@keyframes bikeMove {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(20px) rotate(10deg);
    }
}

.strava-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 968px) {
    .strava-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .strava-stats {
        justify-content: center;
    }
    
    .strava-decoration {
        display: none;
    }
    
    .strava-callout {
        padding: 30px;
    }
    
    .strava-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .strava-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .strava-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .strava-icon {
        width: 70px;
        height: 70px;
    }
    
    .strava-icon i {
        font-size: 38px;
    }
}

.strava-btn.clicked {
    animation: btnClick 0.5s ease;
}

@keyframes btnClick {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
}

/* ===== YouTube ===== */
.youtube-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 35px 30px;
    border-radius: 28px;
    text-align: center;
    min-width: 280px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 0, 0.1);
}

.youtube-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.youtube-card:hover::before {
    left: 100%;
}

.youtube-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 40px rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
}

.youtube-icon-wrapper {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    animation: pulse-red 2s infinite;
}

.youtube-card:hover .youtube-icon-wrapper {
    transform: scale(1.1);
    animation: none;
}

.youtube-icon-wrapper i {
    font-size: 40px;
    color: white;
}

.youtube-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.youtube-card:hover h3 {
    transform: scale(1.05);
}

.youtube-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.youtube-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.youtube-card:hover .youtube-button {
    gap: 15px;
    padding: 12px 28px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.youtube-button i {
    transition: transform 0.3s ease;
}

.youtube-card:hover .youtube-button i {
    transform: translateX(5px);
}

.youtube-stats {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    transition: all 0.3s ease;
}

.youtube-card:hover .stat {
    transform: translateY(-3px);
    color: #ff0000;
}

.stat i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.youtube-card:hover .stat i {
    transform: scale(1.1);
    color: #ff0000;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@media (max-width: 768px) {
    .youtube-card {
        padding: 25px 20px;
        min-width: 260px;
    }
    
    .youtube-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .youtube-icon-wrapper i {
        font-size: 30px;
    }
    
    .youtube-card h3 {
        font-size: 1.3rem;
    }
    
    .youtube-card p {
        font-size: 0.9rem;
    }
    
    .youtube-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .youtube-card {
        padding: 20px 15px;
    }
    
    .youtube-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        font-size: 0.8rem;
    }
}

/* ===== LOJA ===== */
.loja-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow-x: hidden;
}

.loja-search {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

#lojaSearchInput {
    width: 100%;
    max-width: 400px;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    font-size: 1rem;
    transition: all 0.3s ease;
}

#lojaSearchInput:focus {
    outline: none;
    box-shadow: 0 8px 25px rgba(252, 164, 0, 0.2);
    transform: scale(1.02);
}

.cart-icon-btn {
    background: #0f3d2e;
    color: white;
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.cart-icon-btn:hover {
    background: #fca400;
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #fca400;
    color: #1e2a2e;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.produto-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    cursor: pointer;
    animation: fadeInUp 0.5s ease-out backwards;
    opacity: 0;
    transform: translateY(30px);
}

.produto-card:nth-child(1) { animation-delay: 0.05s; }
.produto-card:nth-child(2) { animation-delay: 0.1s; }
.produto-card:nth-child(3) { animation-delay: 0.15s; }
.produto-card:nth-child(4) { animation-delay: 0.2s; }
.produto-card:nth-child(5) { animation-delay: 0.25s; }
.produto-card:nth-child(6) { animation-delay: 0.3s; }

.produto-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}

/* ===== PRODUTOS ===== */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.produto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 20px;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.produto-imagem-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f7fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-imagem {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.produto-card:hover .produto-imagem {
    transform: scale(1.1);
}

.produto-card h3 {
    font-size: 1.2rem;
    margin: 15px 15px 10px;
    color: #1e293b;
}

.produto-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 5px 15px;
}

.preco {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fca400;
    margin: 15px 15px 10px;
}

.card-acoes {
    padding: 0 15px;
}

.add-carrinho {
    width: 100%;
    background: #1e293b;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-carrinho:hover {
    background: #fca400;
    transform: scale(1.02);
}

.modal-imagem {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-imagem.active {
    opacity: 1;
    visibility: visible;
}

.modal-imagem img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.modal-fechar {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 100000;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.modal-fechar:hover {
    transform: scale(1.1);
    color: #fca400;
}

.produto-imagem {
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-fechar {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }
    
    .modal-imagem img {
        max-width: 95%;
        max-height: 85%;
    }
}

@media (max-width: 768px) {
    .produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .produto-card:hover .produto-imagem {
        transform: scale(1.05);
    }
    
    .modal-fechar {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }
}

.produto-card:hover .produto-img {
    transform: rotate(3deg) scale(1.08);
    background: linear-gradient(135deg, #0f3d2e20, #fca40020);
}

.produto-card h3 {
    font-size: 1.3rem;
    color: #1e2a2e;
    margin-bottom: 10px;
}

.produto-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.preco {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fca400;
    margin: 15px 0;
}

.card-acoes {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.like-produto {
    background: #ffe4e1;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    color: #b91c1c;
}

.like-produto:hover {
    background: #ffc2bd;
    transform: scale(1.1);
}

.like-produto.liked {
    background: #ff6b6b;
    color: white;
    animation: pulse 0.3s ease;
}

.add-carrinho {
    background: #0f3d2e;
    color: white;
    border: none;
    padding: 0 50px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
}

.add-carrinho:hover {
    background: #fca400;
    transform: scale(1.02);
}

.add-carrinho:active {
    transform: scale(0.96);
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.cart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #0f3d2e;
    color: white;
}

.cart-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.cart-close {
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.2s;
}

.cart-close:hover {
    transform: scale(1.1);
    color: #fca400;
}

.cart-items {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #1e2a2e;
}

.cart-item-price {
    font-size: 0.85rem;
    color: #fca400;
    font-weight: 600;
}

.cart-item-remove {
    background: #ffe4e1;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    color: #b91c1c;
    transition: 0.2s;
}

.cart-item-remove:hover {
    background: #ffb7b0;
    transform: scale(1.05);
}

.cart-total {
    padding: 20px;
    text-align: right;
    font-size: 1.3rem;
    border-top: 2px solid #eee;
    background: #f8f9fa;
}

.checkout-btn {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 30px auto 20px;
    background: #fca400;
    color: #1e2a2e;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(252, 164, 0, 0.3);
}

.checkout-btn:hover {
    background: #e69500;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(252, 164, 0, 0.4);
}

.checkout-btn:active {
    transform: translateY(1px);
}

.checkout-btn,
.checkout-btn:link,
.checkout-btn:visited,
.checkout-btn:hover,
.checkout-btn:active {
    text-decoration: none;
    outline: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .produto-card {
        padding: 20px 15px;
    }
    
    .preco {
        font-size: 1.3rem;
    }
}

/* ====== FOTOS ===== */
.fotos-descricao {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-galeria {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fca400;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 20px;
}

.btn-galeria:hover:not(.disabled) {
    background: var(--primary);
}

.fotos-grid-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.fotos-grid-preview img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.3s;
}

.fotos-grid-preview img:hover {
    transform: scale(1.05);
}  

/* ===== CONTATO ===== */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.contato-item i {
    font-size: 2rem;
    color: var(--primary);
}

.mapa iframe {
    border-radius: 24px;
}

footer {
    background: rgb(28, 28, 28);
    color: #ccc;
    text-align: center;
    padding: 28px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
}

.social-icons a:hover {
    color: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .historia-grid, .evento-card {
        grid-template-columns: 1fr;
    }
    .evento-card {
        width: 100%;
    }
    .contato-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 25px;
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger {
        display: flex;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}