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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
    padding-top: 0px; /* Adiciona espaço no topo para o header fixo */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
}

h1 { font-size: 2.5rem; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Principal - DESATIVADO PARA USAR NOVA ESTRUTURA */
#main-header-disabled {
    background: #b6ff00;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

#main-header-disabled.scrolled {
    padding: 10px 0;
    background: rgba(182, 255, 0, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
#logo-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

#main-header-disabled.scrolled .logo img {
    height: 40px;
}

/* Botão Menu Mobile - SEMPRE ESCONDIDO NO DESKTOP */
#menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 4px;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
}

#menu-toggle span {
    width: 25px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

#menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

#menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Desktop */
#main-menu {
    display: flex;
    align-items: center;
}

.menu-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.menu-list a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Roboto', sans-serif;
}

.menu-list a:hover,
.menu-list a.active {
    background: #222;
    color: #b6ff00;
    transform: translateY(-2px);
    font-weight: 600;
}

/* Submenus Desktop */
.has-submenu {
    position: relative;
}

.submenu-trigger .arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    font-weight: 700;
}

.has-submenu:hover .arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 2px solid #b6ff00;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1100;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-weight: 400;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-size: 14px;
}

.submenu a:hover {
    background: #b6ff00;
    color: #222;
    padding-left: 25px;
    transform: none;
    font-weight: 500;
}

.submenu a::after {
    display: none;
}

.submenu li:last-child a {
    border-bottom: none;
}

/* Conteúdo Principal */
#main-content {
    margin-top: 100px;
    padding: 0;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

/* Conteúdo Principal quando não é banner */
#main-content.with-padding {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto; /* Remove a margem superior antiga */
}

/* Conteúdo com largura total - para páginas que precisam de 100% */
#main-content.with-padding.full-width {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Páginas específicas que devem ter largura total */
#main-content.with-padding:has(.proximos-eventos-page-wrapper),
#main-content.with-padding:has(.home-page-wrapper),
#main-content.with-padding:has(.event-page-full-width),
#main-content.with-padding:has(.full-width-page) {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Fallback para navegadores que não suportam :has() */
.proximos-eventos-page-wrapper,
.home-page-wrapper,
.event-page-full-width,
.full-width-page {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

#main-header-disabled + #main-content {
    margin-top: 80px;
}

/* Video Banner Clean - Sem overlay de conteúdo */
.video-banner-clean {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: -100px 0 0 0; /* Compensa altura do header */
    left: 50%;
    transform: translateX(-50%);
}

/* Video Banner - Mantido para outras páginas */
.video-banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: -100px 0 0 0; /* Compensa altura do header */
    left: 50%;
    transform: translateX(-50%);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-banner-clean .video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-banner-clean .video-container iframe,
.video-banner-clean .banner-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Desabilita interação */
}

.video-banner-clean .banner-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Desabilita interação */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.overlay-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.9), 1px 1px 3px rgba(0,0,0,1);
    color: #b6ff00;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9), 1px 1px 3px rgba(0,0,0,1);
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-primary {
    background: #b6ff00;
    color: #222;
    border-color: #b6ff00;
}

.btn-primary:hover {
    background: transparent;
    color: #b6ff00;
    border-color: #b6ff00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(182, 255, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #222;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Seta de Scroll - Apenas seta */
.scroll-arrow-only {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(182, 255, 0, 0.3);
    border: 2px solid rgba(182, 255, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #b6ff00;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.scroll-arrow-only:hover {
    background: rgba(182, 255, 0, 0.4);
    border-color: #b6ff00;
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 10px 30px rgba(182, 255, 0, 0.4);
}

.scroll-arrow-only svg {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.scroll-arrow-only:hover svg {
    opacity: 1;
}

/* Seta de Scroll - Original para outras páginas */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(182, 255, 0, 0.2);
    border: 2px solid rgba(182, 255, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #b6ff00;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: rgba(182, 255, 0, 0.3);
    border-color: #b6ff00;
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 10px 30px rgba(182, 255, 0, 0.3);
}

.scroll-arrow svg {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover svg {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Faixa de Informações do Evento */
.event-info-banner {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.event-info-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.event-main-info {
    padding-right: 20px;
}

.event-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #222 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-description {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.event-details {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.event-date-location {
    margin-bottom: 25px;
}

.date-info,
.location-info {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.date-info i,
.location-info i {
    color: #b6ff00;
    margin-right: 12px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.event-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-actions .btn-primary {
    background: #b6ff00;
    color: #222;
    border: 2px solid #b6ff00;
}

.event-actions .btn-primary:hover {
    background: #a3e600;
    border-color: #a3e600;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(182, 255, 0, 0.3);
}

.event-actions .btn-secondary {
    background: transparent;
    color: #222;
    border: 2px solid #ddd;
}

.event-actions .btn-secondary:hover {
    background: #222;
    color: white;
    border-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Home Content */
.home-content {
    padding: 80px 0;
    background: #fff;
}

.home-intro {
    text-align: center;
    margin-bottom: 60px;
}

.home-intro h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}

.home-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.home-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #222 0%, #333 100%);
    color: #fff;
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin: 60px 0 0 0;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(182, 255, 0, 0.1) 0%, rgba(182, 255, 0, 0.05) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    color: #b6ff00;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.page-header .subtitle {
    font-size: 1.3rem;
    color: #ccc;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.page-header .breadcrumb {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #999;
}

.page-header .breadcrumb a {
    color: #b6ff00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb a:hover {
    color: #fff;
}

.page-header .breadcrumb span {
    margin: 0 10px;
    color: #666;
}

/* Decoração do Header */
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #b6ff00 50%, transparent 100%);
}

/* Content Layout */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.content-text h2 {
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.content-text h3 {
    color: #333;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.content-text p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.values-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-left: 4px solid #b6ff00;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.values-list li:hover {
    transform: translateX(10px);
    background: #f0f0f0;
}

.values-list strong {
    color: #222;
    font-weight: 600;
}

/* Stats Cards */
.content-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #b6ff00 0%, #a8e600 100%);
    color: #222;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(182, 255, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(182, 255, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cidade Layout */
.cidade-content {
    padding: 60px 0;
}

.city-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.intro-text h2 {
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.city-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.city-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.city-section.reverse .section-image {
    order: 1;
}

.city-section.reverse .section-text {
    order: 2;
}

.section-text h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.section-text p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

.section-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Seção Full Width */
.city-full-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin: 80px 0;
    border-radius: 20px;
}

.full-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.full-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.full-text h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.seasons-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.season-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.season-item h4 {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.season-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Informações Turísticas */
.tourist-info {
    background: linear-gradient(135deg, #b6ff00 0%, #a8e600 100%);
    color: #222;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.tourist-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.tourist-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.tourist-info strong {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Categorias Styles */
.categorias-content {
    padding: 60px 0;
}

.categories-intro {
    text-align: center;
    margin-bottom: 60px;
}

.categories-intro h2 {
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.categories-intro p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-section {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border-left: 5px solid #b6ff00;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.category-icon {
    font-size: 3rem;
    background: #b6ff00;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-title h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.category-title p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Age Groups */
.age-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.age-group {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.age-group:hover {
    transform: translateY(-5px);
}

.age-group h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.gender-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gender-tag {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.gender-tag.masculino {
    background: #007bff;
    color: white;
}

.gender-tag.feminino {
    background: #e91e63;
    color: white;
}

/* Team Rules */
.team-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.rule-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.rule-card h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.rule-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rule-card li {
    padding: 8px 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #eee;
}

.rule-card li:last-child {
    border-bottom: none;
}

/* Pairs Info */
.pairs-info {
    display: grid;
    gap: 25px;
}

.pairs-rule {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.pairs-rule h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.pairs-rule p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.age-categories {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.age-categories h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.age-pairs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.age-pair-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #b6ff00;
}

.age-pair-card h5 {
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.age-pair-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.important-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 25px;
    border-radius: 15px;
}

.important-note h4 {
    color: #856404;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.important-note p {
    color: #856404;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.categories-cta {
    background: linear-gradient(135deg, #b6ff00 0%, #a8e600 100%);
    color: #222;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.categories-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.categories-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Seções Gerais */
section {
    padding: 40px 0;
}

section h2 {
    color: #222;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 700;
}

section h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

section p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    margin-top: 60px;
    padding: 60px 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    padding: 0 10px;
}

.footer-section h4 {
    color: #b6ff00;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Seção Logo */
.logo-footer img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Torna a logo branca */
}

.footer-description {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    max-width: 300px;
}

/* Seção Menu */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
    line-height: 1.3;
}

.footer-links a:hover {
    color: #b6ff00;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #b6ff00;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Seção Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: #333;
    color: #ccc;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #333;
}

.social-link:hover {
    background: #b6ff00;
    color: #222;
    border-color: #b6ff00;
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: #fff;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
}

.contact-info {
    color: #ccc;
    font-size: 15px;
    margin-top: 10px;
}

.contact-info p {
    margin: 12px 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info strong {
    color: #b6ff00;
    display: block;
    margin-bottom: 10px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 25px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 5px 0;
    font-size: 14px;
    color: #999;
}

.footer-credits {
    color: #b6ff00 !important;
    font-weight: 500;
}

/* Estilos do formulário de contato */
.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.contato-info ul {
    list-style: none;
    padding: 0;
}

.contato-info li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b6ff00;
    box-shadow: 0 0 0 3px rgba(182, 255, 0, 0.1);
}

.btn-enviar {
    background: #b6ff00;
    color: #222;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background: #222;
    color: #b6ff00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========== MOBILE APENAS ========== */
@media screen and (max-width: 768px) {
    /* Titulos menores */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    /* Mostrar botão hambúrguer */
    #menu-toggle {
        display: flex !important;
    }
    
    /* MENU MOBILE - SUPER DIRETO */
    .menu-list {
        display: none !important;
        position: fixed !important;
        top: 100px !important;
        left: 0 !important;
        width: 100vw !important;
        height: auto !important;
        background: #b6ff00 !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 9999 !important;
        list-style: none !important;
        gap: 0 !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3) !important;
    }
    
    /* MENU ABERTO */
    .menu-list.open {
        display: block !important;
    }
    
    /* LINKS MOBILE */
    .menu-list li {
        width: 100% !important;
        border-bottom: 1px solid rgba(0,0,0,0.1) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .menu-list li a {
        display: block !important;
        width: 100% !important;
        padding: 20px !important;
        color: #222 !important;
        text-decoration: none !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        border-radius: 0 !important;
        background: none !important;
        transform: none !important;
        transition: none !important;
    }
    
    .menu-list li a:hover {
        background: rgba(0,0,0,0.1) !important;
        transform: none !important;
    }
    
    /* SUBMENUS MOBILE */
    .submenu {
        display: none !important;
        background: rgba(0,0,0,0.1) !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        border: none !important;
        box-shadow: none !important;
        position: static !important;
    }
    
    .submenu.open {
        display: block !important;
    }
    
    .submenu li {
        width: 100% !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .submenu li a {
        display: block !important;
        padding: 15px 40px !important;
        color: #222 !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        text-decoration: none !important;
        background: none !important;
        border-radius: 0 !important;
        transform: none !important;
    }
    
    .submenu li a:hover {
        background: rgba(0,0,0,0.1) !important;
        padding-left: 45px !important;
    }
    
    /* Conteúdo mobile */
    #main-content {
        margin-top: 80px;
        padding: 20px 10px;
    }
    
    .contato-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer Mobile */
    footer {
        padding: 40px 0 0 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-section h4 {
        margin-bottom: 20px;
        font-size: 20px;
    }
    
    .footer-description {
        max-width: 100%;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .social-links {
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .social-link {
        width: 50px !important;
        height: 50px !important;
    }
    
    .footer-links a {
        font-size: 16px;
        padding: 6px 0;
        line-height: 1.4;
    }
    
    .footer-links a:hover {
        padding-left: 0 !important;
        color: #b6ff00;
    }
    
    .footer-links a::before {
        display: none !important;
    }
    
    .contact-info {
        font-size: 15px;
    }
    
    .contact-info p {
        margin: 10px 0;
    }
    
    .footer-bottom {
        padding: 30px 20px !important;
    }
    
    .footer-copyright p {
        font-size: 15px;
        margin: 8px 0;
    }
    
    /* Video Banner Mobile */
    .video-banner-clean {
        height: 70vh;
        margin-top: -80px;
    }

    .video-banner {
        height: 70vh;
        margin-top: -80px;
    }

    /* Event Info Banner Mobile */
    .event-info-banner {
        padding: 40px 0;
    }

    .event-info-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .event-main-info {
        padding-right: 0;
        text-align: center;
    }

    .event-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .event-description {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .event-details {
        padding: 25px 20px;
    }

    .event-actions .btn {
        padding: 14px 20px;
        font-size: 16px;
    }

    .scroll-arrow-only {
        width: 45px;
        height: 45px;
        bottom: 20px;
    }

    .scroll-arrow-only svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
        min-width: 200px;
    }
    
    /* Home Content Mobile */
    .home-content {
        padding: 50px 0;
    }
    
    .home-intro h2 {
        font-size: 2rem;
    }
    
    .home-intro p {
        font-size: 1.1rem;
    }
    
    .home-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Seta Mobile */
    .scroll-arrow {
        width: 45px !important;
        height: 45px !important;
        bottom: 20px !important;
    }
    
    .scroll-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 60px 0 40px 0;
        margin: 60px 0 0 0 !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem !important;
        margin-bottom: 15px;
    }
    
    .page-header .subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    /* Content Mobile */
    .content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .content-text h3 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Cidade Mobile */
    .city-intro {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .city-section {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .city-section.reverse .section-image,
    .city-section.reverse .section-text {
        order: unset !important;
    }
    
    .intro-image img,
    .section-image img {
        height: 250px !important;
    }
    
    .intro-text h2,
    .section-text h3,
    .full-text h3 {
        font-size: 1.8rem !important;
    }
    
    .city-full-section {
        padding: 40px 20px;
        margin: 50px 0;
    }
    
    .full-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .full-image img {
        height: 250px !important;
    }
    
    .seasons-list {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .season-item {
        padding: 15px;
    }
    
    .tourist-info {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .tourist-info h3 {
        font-size: 1.5rem;
    }
    
    /* Categorias Mobile */
    .categories-intro h2 {
        font-size: 2rem !important;
    }
    
    .category-section {
        padding: 25px 20px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .category-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 2rem !important;
    }
    
    .category-title h3 {
        font-size: 1.8rem !important;
    }
    
    .age-groups {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .age-group {
        padding: 20px;
    }
    
    .team-rules {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .rule-card {
        padding: 20px;
    }
    
    .age-pairs {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .categories-cta {
        padding: 30px 20px;
    }
    
    .categories-cta h3 {
        font-size: 2rem !important;
    }
}

/* ======================
   CORRIDAS PAGE STYLES
====================== */

/* Race Content */
.corridas-content {
    padding: 60px 0;
}

/* Race Intro */
.race-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.intro-content h2 {
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Distance Cards */
.race-distances {
    margin-bottom: 50px;
}

.race-distances h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.distance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.distance-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #b6ff00;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.distance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.distance-card.competitive {
    border-left-color: #007bff;
}

.distance-card.recreational {
    border-left-color: #28a745;
}

.distance-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

.distance-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    background: #f8f9fa;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    color: #333;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Qualification Section */
.qualification-section {
    margin-bottom: 50px;
}

.qualification-section h3,
.start-boxes-section h3,
.championships-section h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.qualification-section p,
.start-boxes-section p,
.championships-section p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

.qualification-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.qual-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.qual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.qual-card h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.qual-card ul {
    list-style: none;
    padding: 0;
}

.qual-card li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 15px;
}

.qual-card li:last-child {
    border-bottom: none;
}

.qual-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Start Boxes Section */
.start-boxes-section {
    margin-bottom: 50px;
}

.boxes-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.box-rule {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.box-rule:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.box-rule.warning {
    border-left-color: #dc3545;
    background: #fff5f5;
}

.box-rule h4 {
    color: #222;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.box-rule.warning h4 {
    color: #dc3545;
}

.box-rule p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Championships Section */
.championships-section {
    margin-bottom: 50px;
}

.championship-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-card h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.benefit-card.champion {
    border-left-color: #ffc107;
    background: #fffbf3;
}

.benefit-card.champion h4 {
    color: #856404;
}

/* Race CTA */
.race-cta {
    background: linear-gradient(135deg, #b6ff00 0%, #a8e600 100%);
    color: #222;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.race-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.race-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.race-cta .btn {
    background: #222;
    color: #b6ff00;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #222;
}

.race-cta .btn:hover {
    background: transparent;
    color: #222;
    border-color: #222;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Corridas */
@media (max-width: 768px) {
    .corridas-content {
        padding: 40px 0;
    }
    
    .race-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .intro-content h2 {
        font-size: 2rem !important;
    }
    
    .distance-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .distance-card {
        padding: 25px 20px;
    }
    
    .qualification-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qual-card {
        padding: 25px 20px;
    }
    
    .boxes-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .box-rule {
        padding: 25px 20px;
    }
    
    .championship-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .race-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .race-cta h3 {
        font-size: 2rem !important;
    }
    
    .race-cta p {
        font-size: 1rem;
    }
    
    .qualification-section h3,
    .start-boxes-section h3,
    .championships-section h3,
    .race-distances h3 {
        font-size: 1.8rem !important;
    }
}

/* ======================
   LOCAL EXPO PAGE STYLES - ISOLADO
====================== */

/* Expo Content - CSS Específico e Isolado */
section.expo-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 60px 0;
    margin: 0 auto;
    box-sizing: border-box;
    display: block !important;
}

section.expo-content .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box;
    display: block !important;
}

/* Garantir que o main-content da expo funcione */
#main-content:has(.expo-content) {
    width: 100% !important;
    max-width: 100% !important;
    margin: 100px auto 0 auto !important;
    padding: 0 !important;
    display: block !important;
}

/* Todas as seções da expo - Reset e isolamento */
.expo-content * {
    box-sizing: border-box;
}

.expo-content .expo-intro,
.expo-content .location-info,
.expo-content .expo-facilities,
.expo-content .post-race-section,
.expo-content .map-section,
.expo-content .schedule-section,
.expo-content .faq-section,
.expo-content .expo-cta {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Expo Intro */
.expo-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
    width: 100% !important;
}

.expo-intro .intro-content h2 {
    color: #222;
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.expo-intro .intro-content p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

.expo-intro .intro-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Location Info */
.location-info {
    margin-bottom: 50px;
    width: 100% !important;
}

.location-info h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100% !important;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #b6ff00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.location-card.start-finish {
    border-left-color: #007bff;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.location-card h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.location-card .highlight {
    color: #007bff;
    font-weight: 500;
    font-style: italic;
}

.venue-link {
    display: inline-block;
    color: #b6ff00;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.venue-link:hover {
    color: #a0e600;
}

/* Expo Facilities */
.expo-facilities {
    margin-bottom: 50px;
    width: 100% !important;
}

.expo-facilities h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100% !important;
}

.facility-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.facility-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.facility-card h4 {
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.facility-card p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

/* Post Race Section */
.post-race-section {
    margin-bottom: 50px;
}

.post-race-section h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.post-race-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.post-race-info h4 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.post-race-info p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.meal-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 15px;
    line-height: 1.4;
}

.feature-icon {
    font-size: 1.2rem;
}

.post-race-highlight {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #ffc107;
}

.post-race-highlight h5 {
    color: #856404;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.post-race-highlight p {
    color: #856404;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    margin-bottom: 50px;
}

.map-section h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 400px;
}

.map-container iframe {
    height: 400px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-item h5 {
    color: #222;
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Schedule Section */
.schedule-section {
    margin-bottom: 50px;
}

.schedule-section h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.schedule-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.schedule-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #b6ff00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.schedule-card h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.time-slot {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.time {
    font-weight: 600;
    color: #222;
    font-size: 1.1rem;
}

.activity {
    color: #555;
    font-size: 14px;
}

.schedule-note {
    margin-top: 15px;
    padding: 10px 15px;
    background: #e3f2fd;
    border-left: 3px solid #2196f3;
    border-radius: 5px;
    font-size: 13px;
    color: #1565c0;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 50px;
}

.faq-section h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.faq-item h5 {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Expo CTA */
.expo-cta {
    background: linear-gradient(135deg, #b6ff00 0%, #a8e600 100%);
    color: #222;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.expo-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.expo-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.expo-cta .btn {
    background: #222;
    color: #b6ff00;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #222;
}

.expo-cta .btn:hover {
    background: transparent;
    color: #222;
    border-color: #222;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Expo */
@media (max-width: 768px) {
    .expo-content {
        padding: 40px 0;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .expo-content .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        margin: 0 auto !important;
    }
    
    .expo-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .expo-intro .intro-content h2 {
        font-size: 2rem !important;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-card {
        padding: 25px 20px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .facility-card {
        padding: 25px 20px;
    }
    
    .post-race-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .schedule-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-card {
        padding: 25px 20px;
    }
    
    .expo-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .expo-cta h3 {
        font-size: 2rem !important;
    }
    
    .expo-cta p {
        font-size: 1rem;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .location-details {
        gap: 15px;
    }
    
    .detail-item {
        padding: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .schedule-note {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .location-info h3,
    .expo-facilities h3,
    .post-race-section h3,
    .schedule-section h3,
    .map-section h3,
    .faq-section h3 {
        font-size: 1.8rem !important;
    }
}

/* ==================== COMO CHEGAR PAGE ==================== */
.como-chegar-content {
    padding: 40px 0;
}

.travel-intro {
    text-align: center;
    margin-bottom: 50px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.travel-intro h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
}

.travel-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.highlight-icon {
    font-size: 2rem;
    line-height: 1;
}

.highlight-item h4 {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Seção de Aeroportos */
.airports-section {
    margin: 60px 0;
}

.airports-section h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.airport-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-left: 5px solid #b6ff00;
}

.airport-card.main-airport {
    border-left-color: #007bff;
}

.airport-card.regional-airport {
    border-left-color: #28a745;
}

.airport-info {
    padding: 30px;
}

.airport-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.airport-header h4 {
    color: #222;
    font-size: 1.5rem;
    margin: 0;
}

.airport-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.airport-badge.international {
    background: #007bff;
    color: white;
}

.airport-badge.regional {
    background: #28a745;
    color: white;
}

.airport-details {
    margin: 20px 0;
}

.airport-details p {
    margin: 8px 0;
    color: #555;
}

.terminals-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.terminals-info h5 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.terminal-item {
    margin: 10px 0;
    padding: 10px;
    background: white;
    border-radius: 5px;
    border-left: 3px solid #b6ff00;
    font-size: 0.9rem;
    color: #555;
}

.flight-options {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.flight-options h5 {
    color: #222;
    margin-bottom: 15px;
}

.flight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
    padding: 10px;
    background: white;
    border-radius: 5px;
    border-left: 3px solid #28a745;
}

.airline {
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    min-width: 45px;
    text-align: center;
}

.airline.gol {
    background: #ff8c00;
}

.airline.azul {
    background: #0066cc;
}

.airport-map {
    background: #f8f9fa;
    padding: 20px;
}

.airport-map iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-caption {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 10px 0 0 0;
    font-style: italic;
}

/* Transporte Terrestre */
.ground-transport {
    margin: 60px 0;
}

.ground-transport h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.transport-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.transport-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
}

.transport-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.transport-card h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.transport-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.transport-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

/* Rotas Principais */
.main-routes {
    margin: 60px 0;
}

.main-routes h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.route-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #b6ff00;
}

.route-card h4 {
    color: #222;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.route-steps {
    margin: 20px 0;
}

.step {
    padding: 10px 15px;
    margin: 8px 0;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #b6ff00;
    color: #555;
}

.route-time {
    color: #007bff;
    font-weight: 600;
    text-align: center;
    margin: 15px 0 0 0;
    padding: 10px;
    background: #f0f8ff;
    border-radius: 5px;
}

/* Dicas Importantes */
.travel-tips {
    margin: 60px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.travel-tips h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tip-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-top: 3px solid #b6ff00;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
}

.tip-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.tip-card h5 {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Final */
.travel-cta {
    text-align: center;
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
}

.travel-cta h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.travel-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.travel-cta .btn {
    background: #222;
    color: #b6ff00;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #222;
    transition: all 0.3s ease;
}

.travel-cta .btn:hover {
    background: transparent;
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .travel-intro h2 {
        font-size: 2rem;
    }
    
    .travel-intro {
        padding: 30px 20px;
    }
    
    .location-highlight {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item {
        padding: 15px;
    }
    
    .airport-info {
        padding: 20px;
    }
    
    .airport-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .airport-header h4 {
        font-size: 1.3rem;
    }
    
    .transport-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .transport-card {
        padding: 25px 20px;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .route-card {
        padding: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tip-card {
        padding: 20px;
    }
    
    .travel-tips {
        padding: 30px 20px;
    }
    
    .travel-cta {
        padding: 40px 20px;
    }
    
    .travel-cta h3 {
        font-size: 1.8rem;
    }
    
    .airports-section h3,
    .ground-transport h3,
    .main-routes h3,
    .travel-tips h3 {
        font-size: 1.6rem;
    }
}

/* ==================== ROTAS TURISTICAS PAGE ==================== */
.rotas-turisticas-content {
    padding: 40px 0;
}

.routes-intro {
    text-align: center;
    margin-bottom: 50px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.routes-intro h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
}

.routes-intro p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Seções de Rotas */
.main-routes-section,
.cultural-routes-section {
    margin: 60px 0;
}

.main-routes-section h3,
.cultural-routes-section h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

/* Cards de Rotas */
.route-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    min-height: 300px;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.route-card.featured {
    border: 3px solid #b6ff00;
    position: relative;
}

.route-card.cultural {
    border-left: 5px solid #b6ff00;
}

.route-image {
    position: relative;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card:hover .route-image img {
    transform: scale(1.05);
}

.route-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #b6ff00;
    color: #222;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.route-badge.cultural {
    background: #b6ff00;
    color: #222;
}

.route-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route-content h4 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
}

.route-description {
    margin: 20px 0;
}

.route-description p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.route-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid #b6ff00;
    font-size: 0.9rem;
    color: #555;
}

.highlight-icon {
    font-size: 1.2rem;
}

/* Tours de Bento */
.city-tours-section {
    margin: 60px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.city-tours-section h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.tour-image {
    height: 200px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-content {
    padding: 25px;
}

.tour-content h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #b6ff00;
    padding-bottom: 8px;
    display: inline-block;
}

.tour-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.tour-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #555;
    border-left: 3px solid #b6ff00;
}

.feature-icon {
    font-size: 1rem;
}

/* Dicas de Planejamento */
.planning-tips {
    margin: 60px 0;
}

.planning-tips h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tip-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    text-align: center;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-3px);
}

.tip-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.tip-card h5 {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA */
.routes-cta {
    text-align: center;
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
}

.routes-cta h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.routes-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.routes-cta .btn {
    background: #222;
    color: #b6ff00;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #222;
    transition: all 0.3s ease;
}

.routes-cta .btn:hover {
    background: transparent;
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .rotas-turisticas-content {
        padding: 30px 0;
    }
    
    .routes-intro {
        padding: 30px 20px;
    }
    
    .routes-intro h2 {
        font-size: 2rem;
    }
    
    .route-card {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }
    
    .route-image {
        height: 200px;
    }
    
    .route-content {
        padding: 25px 20px;
    }
    
    .route-content h4 {
        font-size: 1.3rem;
    }
    
    .route-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-card {
        margin-bottom: 20px;
    }
    
    .tour-content {
        padding: 20px;
    }
    
    .city-tours-section {
        padding: 30px 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tip-card {
        padding: 20px;
    }
    
    .routes-cta {
        padding: 40px 20px;
    }
    
    .routes-cta h3 {
        font-size: 1.8rem;
    }
    
    .main-routes-section h3,
    .cultural-routes-section h3,
    .city-tours-section h3,
    .planning-tips h3 {
        font-size: 1.6rem;
    }
}

/* ==================== ONDE FICAR PAGE ==================== */
.onde-ficar-content {
    padding: 40px 0;
}

.accommodation-intro {
    text-align: center;
    margin-bottom: 50px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.accommodation-intro h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
}

.accommodation-intro p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.intro-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #b6ff00;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.intro-highlights .highlight-icon {
    font-size: 2rem;
    line-height: 1;
}

.intro-highlights .highlight-item h4 {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.intro-highlights .highlight-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Seções de Hotéis */
.nearby-hotels,
.specialized-hotels {
    margin: 60px 0;
}

.nearby-hotels h3,
.specialized-hotels h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

/* Cards de Hotéis */
.hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
    min-height: 280px;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.hotel-card.premium {
    border: 3px solid #ffd700;
    position: relative;
}

.hotel-card.boutique {
    border-left: 5px solid #9c27b0;
}

.hotel-card.spa {
    border-left: 5px solid #4caf50;
}

.hotel-card.adventure {
    border-left: 5px solid #ff5722;
}

.hotel-image {
    position: relative;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.distance-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #b6ff00;
    color: #222;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.distance-badge.closest {
    background: #ffd700;
    color: #222;
    font-weight: 700;
}

.hotel-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-content h4 {
    color: #222;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.hotel-brand {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hotel-description {
    color: #555;
    line-height: 1.6;
    margin: 15px 0 20px 0;
    font-size: 0.95rem;
}

.hotel-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px;
    margin: 20px 0;
}

.hotel-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #555;
    border-left: 3px solid #b6ff00;
}

.hotel-features .feature-icon {
    font-size: 1rem;
}

.hotel-actions {
    margin-top: 20px;
}

.hotel-actions .btn {
    background: #b6ff00;
    color: #222;
    padding: 12px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #b6ff00;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
}

.hotel-actions .btn:hover {
    background: #222;
    color: #b6ff00;
    transform: translateY(-2px);
}

/* Dicas de Reserva */
.booking-tips {
    margin: 60px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.booking-tips h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.booking-tips .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.booking-tips .tip-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    text-align: center;
    transition: transform 0.3s ease;
}

.booking-tips .tip-card:hover {
    transform: translateY(-3px);
}

.booking-tips .tip-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.booking-tips .tip-card h5 {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.booking-tips .tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* CTA */
.accommodation-cta {
    text-align: center;
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
}

.accommodation-cta h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.accommodation-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.accommodation-cta .btn {
    background: #222;
    color: #b6ff00;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #222;
    transition: all 0.3s ease;
}

.accommodation-cta .btn:hover {
    background: transparent;
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .onde-ficar-content {
        padding: 30px 0;
    }
    
    .accommodation-intro {
        padding: 30px 20px;
    }
    
    .accommodation-intro h2 {
        font-size: 2rem;
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .intro-highlights .highlight-item {
        padding: 15px;
    }
    
    .hotel-card {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }
    
    .hotel-image {
        height: 200px;
    }
    
    .hotel-content {
        padding: 25px 20px;
    }
    
    .hotel-content h4 {
        font-size: 1.3rem;
    }
    
    .hotel-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .booking-tips {
        padding: 30px 20px;
    }
    
    .booking-tips .tips-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-tips .tip-card {
        padding: 20px;
    }
    
    .accommodation-cta {
        padding: 40px 20px;
    }
    
    .accommodation-cta h3 {
        font-size: 1.8rem;
    }
    
    .nearby-hotels h3,
    .specialized-hotels h3,
    .booking-tips h3 {
        font-size: 1.6rem;
    }
}

/* ==================== VOLUNTARIO PAGE ==================== */
.voluntario-content {
    padding: 40px 0;
}

.volunteer-intro {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.intro-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 10px;
    border-top: 3px solid #b6ff00;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-width: 0;
}

.stat-number {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.stat-text {
    color: #222;
    font-weight: 600;
    font-size: 0.9rem;
}

.intro-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Seções principais */
.athletes-section,
.help-section,
.volunteer-profile,
.volunteer-shirt,
.signup-section {
    margin: 60px 0;
}

.athletes-section h3,
.help-section h3,
.volunteer-profile h3,
.volunteer-shirt h3,
.signup-section h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

/* Seção de Atletas */
.athletes-content p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.athlete-challenges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.challenge-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-3px);
}

.challenge-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.challenge-card h4 {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.challenge-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Seção de Ajuda */
.help-intro p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.volunteer-roles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.role-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.role-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.role-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.role-card h4 {
    color: #222;
    margin-bottom: 8px;
    font-size: 1rem;
}

.role-card p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Perfil do Voluntário */
.profile-content p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.profile-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.profile-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #b6ff00;
}

.profile-icon {
    font-size: 1.5rem;
}

.profile-item span:last-child {
    color: #555;
    font-weight: 500;
}

/* Camiseta do Voluntário */
.shirt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.shirt-info h4,
.shirt-benefits h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.shirt-info p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.shirt-rules {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #ffc107;
}

.rule-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid #b6ff00;
}

.benefit-icon {
    font-size: 1.2rem;
}

/* Como se Inscrever */
.signup-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid #b6ff00;
    transition: transform 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #b6ff00;
    color: #222;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-card h4 {
    color: #222;
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.volunteer-cta {
    text-align: center;
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
}

.volunteer-cta h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.volunteer-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.volunteer-cta .btn {
    background: #222;
    color: #b6ff00;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #222;
    transition: all 0.3s ease;
}

.volunteer-cta .btn:hover {
    background: transparent;
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .voluntario-content {
        padding: 30px 0;
    }
    
    .volunteer-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }
    
    .stat-item {
        flex: none;
        padding: 20px 15px;
    }
    
    .intro-image img {
        height: 250px;
    }
    
    .athlete-challenges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .volunteer-roles {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .role-card {
        padding: 15px;
    }
    
    .profile-items {
        grid-template-columns: 1fr;
    }
    
    .shirt-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px 20px;
    }
    
    .signup-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-card {
        padding: 25px 20px;
    }
    
    .volunteer-cta {
        padding: 40px 20px;
    }
    
    .volunteer-cta h3 {
        font-size: 1.8rem;
    }
    
    .athletes-section h3,
    .help-section h3,
    .volunteer-profile h3,
         .volunteer-shirt h3,
     .signup-section h3 {
         font-size: 1.6rem;
     }
 }

/* ==================== REGULAMENTO PAGE ==================== */
.regulamento-content {
    padding: 40px 0;
}

.regulation-intro {
    margin-bottom: 50px;
}

.regulation-intro h2 {
    font-size: 2.5rem;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 15px;
}

.presentation-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.presentation-section h3 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 25px;
    border-left: 4px solid #b6ff00;
    padding-left: 15px;
}

.presentation-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sustainability-focus {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #28a745;
}

.sustainability-focus h4 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sustainability-focus ul {
    margin: 15px 0;
    padding-left: 20px;
}

.sustainability-focus li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.event-highlight {
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 25px;
}

.event-highlight p {
    color: #222;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

/* Artigos do Regulamento */
.regulation-articles {
    margin: 50px 0;
}

.regulation-article {
    background: white;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.regulation-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.regulation-article h3 {
    background: #f8f9fa;
    padding: 20px 30px;
    margin: 0;
    font-size: 1.4rem;
    color: #222;
    border-bottom: 1px solid #e9ecef;
}

.article-content {
    padding: 30px;
}

.article-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.article-content ul,
.article-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.article-content li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.article-content ol li {
    margin-bottom: 12px;
}

.article-content ul ul {
    margin: 8px 0;
    padding-left: 20px;
}

.article-content strong {
    color: #222;
    font-weight: 600;
}

.warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    color: #856404;
    font-weight: 500;
    margin: 15px 0;
}

.ceremony-info {
    background: #e8f5e8;
    border: 1px solid #c3e6c3;
    border-left: 4px solid #28a745;
    padding: 15px;
    border-radius: 5px;
    color: #155724;
    font-weight: 500;
    margin: 15px 0;
}

/* Categorias */
.categories-grid {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.category-group h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.category-group ul {
    columns: 2;
    column-gap: 30px;
    margin: 0;
}

.category-group li {
    break-inside: avoid;
    margin-bottom: 5px;
    padding: 5px 0;
}

/* CTA Final */
.regulation-cta {
    text-align: center;
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    padding: 40px;
    border-radius: 15px;
    margin: 50px 0;
}

.regulation-cta h3 {
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.regulation-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.regulation-cta .btn {
    background: #222;
    color: #b6ff00;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #222;
    transition: all 0.3s ease;
}

.regulation-cta .btn:hover {
    background: transparent;
    color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .regulamento-content {
        padding: 30px 0;
    }
    
    .regulation-intro h2 {
        font-size: 2rem;
    }
    
    .presentation-section {
        padding: 25px 20px;
    }
    
    .presentation-section h3 {
        font-size: 1.5rem;
    }
    
    .presentation-content p {
        font-size: 1rem;
    }
    
    .sustainability-focus {
        padding: 20px 15px;
    }
    
    .regulation-article h3 {
        padding: 15px 20px;
        font-size: 1.2rem;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content p {
        font-size: 0.95rem;
    }
    
    .category-group ul {
        columns: 1;
    }
    
    .regulation-cta {
        padding: 30px 20px;
    }
    
    .regulation-cta h3 {
        font-size: 1.5rem;
    }
    
         .regulation-cta p {
         font-size: 1rem;
     }
 }

/* ==================== CONTATO PAGE ==================== */
.contato-content {
    padding: 40px 0;
}

/* Introdução */
.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Seções principais */
.contact-info-section,
.office-hours-section,
.contact-form-section,
.quick-faq {
    margin: 60px 0;
}

.contact-info-section h3,
.office-hours-section h3,
.contact-form-section h3,
.quick-faq h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

/* Cards de Contato */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.contact-card h4 {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #2e7d32;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-desc {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Horários de Atendimento */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.hours-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-3px);
}

.hours-card.emergency {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
}

.hours-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.hours-card h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.hours-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-card li {
    color: #555;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px solid #f1f1f1;
}

.hours-card li:last-child {
    border-bottom: none;
}

/* Formulário de Contato */
.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-intro h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.form-intro p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.form-tips {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #17a2b8;
}

.form-tips h5 {
    color: #17a2b8;
    margin-bottom: 12px;
    font-size: 1rem;
}

.form-tips ul {
    margin: 0;
    padding-left: 20px;
}

.form-tips li {
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Formulário */
.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #222;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b6ff00;
    box-shadow: 0 0 0 3px rgba(182, 255, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-privacy {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #555;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #b6ff00;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-submit {
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    color: #222;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(182, 255, 0, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-accordion-section {
    margin: 80px 0;
    text-align: center;
}

.faq-accordion {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-accordion-item {
    margin-bottom: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #b6ff00;
}

.faq-header:hover {
    background: #f8f9fa;
}

.faq-header.active {
    background: #f0f8ff;
    border-left-color: #2e7d32;
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-title span:last-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}

.faq-toggle {
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-header.active .faq-toggle {
    transform: rotate(180deg);
    color: #2e7d32;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content.active {
    max-height: 500px;
}

.faq-answer {
    padding: 0 30px 30px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Final */
.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    padding: 50px;
    border-radius: 15px;
    margin: 60px 0;
}

.contact-cta h3 {
    color: #222;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1faa52;
    transform: translateY(-2px);
}

.btn-email {
    background: #222;
    color: #b6ff00;
    border: 2px solid #222;
}

.btn-email:hover {
    background: transparent;
    color: #222;
    transform: translateY(-2px);
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-content {
        padding: 30px 0;
    }
    
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .faq-accordion {
        margin: 30px auto 0;
    }
    
    .faq-header {
        padding: 20px 25px;
    }
    
    .faq-title span:last-child {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 25px 25px;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .contact-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
         .contact-info-section h3,
     .office-hours-section h3,
     .contact-form-section h3,
     .quick-faq h3 {
         font-size: 1.6rem;
     }
 }

/* ==================== ENHANCED HOME PAGE ==================== */

/* Event Date in Hero */
.event-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background: rgba(182, 255, 0, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.date-text {
    color: #b6ff00;
    font-size: 1.8rem;
    font-weight: 700;
}

.location-text {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.date-label {
    font-size: 1.5rem;
}

/* Event Countdown */
.event-countdown {
    text-align: center;
    margin: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.event-countdown h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 40px;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 15px;
    display: inline-block;
}

.countdown-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.countdown-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.countdown-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Enhanced Features */
.home-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: #222;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: #1b5e20;
    text-decoration: underline;
}

/* Challenge Section - Nova Abordagem */
.challenge-section {
    margin: 80px 0;
    text-align: center;
}

.challenge-section h2 {
    font-size: 2.3rem;
    color: #222;
    margin-bottom: 15px;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
}

.challenge-intro {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.5;
}

.challenge-comparison {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 40px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.route-option {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.route-option:hover {
    transform: scale(1.05);
}

.route-option.long {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
}

.route-option.short {
    background: linear-gradient(135deg, #28a745, #2ecc71);
    color: white;
}

.route-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.route-option h3 {
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.route-km {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.vs-divider {
    background: #b6ff00;
    color: #222;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(182, 255, 0, 0.3);
}

.comparison-table {
    margin-bottom: 40px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: #f8f9fa;
}

.comparison-row:last-child {
    border-bottom: none;
}

.row-label {
    font-weight: 600;
    color: #555;
    text-align: left;
    font-size: 1rem;
}

.row-value {
    text-align: center;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 10px;
    margin: 0 10px;
}

.row-value.long {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.row-value.short {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.challenge-benefits {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.challenge-benefits h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefits-grid span {
    background: white;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.challenge-cta {
    margin-top: 40px;
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.3rem;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #b6ff00, #28a745);
    margin: 0 auto;
    border-radius: 2px;
}

/* Routes Grid Layout */
.routes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.route-card {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.route-top-bar {
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #b6ff00, #7CB342);
}

.long-route .route-top-bar {
    background: linear-gradient(90deg, #FF7043, #FF5722);
}

.medium-route .route-top-bar {
    background: linear-gradient(90deg, #26C6DA, #00BCD4);
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.route-card .route-icon {
    font-size: 3.5rem;
    margin: 20px 0 15px;
    display: block;
}

.route-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
    padding: 0 20px;
    text-align: center;
}

.route-distance {
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0 20px;
    color: #2c3e50;
}

.route-specs {
    background: #f8f9fa;
    margin: 0;
    padding: 20px 30px 25px;
    border-radius: 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.95rem;
}

.spec-value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.95rem;
}

.routes-benefits {
    text-align: center;
    margin: 50px 0 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.routes-benefits h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list span {
    background: white;
    padding: 14px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    border-left: 3px solid #b6ff00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefits-list span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Quick Links Section */
.quick-links-section {
    margin: 80px 0;
    text-align: center;
}

.quick-links-section h2 {
    font-size: 2.3rem;
    color: #222;
    margin-bottom: 15px;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.quick-link-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.accommodation .card-top-bar {
    background: linear-gradient(90deg, #e67e22, #f39c12);
}

.regulation .card-top-bar {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.volunteer .card-top-bar {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    text-decoration: none;
    color: #222;
}

.link-icon {
    font-size: 3rem;
    margin: 15px 0 20px;
    display: block;
}

.quick-link-card h4 {
    color: #222;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.quick-link-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Section Styling */
.accommodation-section,
.transport-section,
.expo-section,
.volunteer-section,
.essential-info,
.tourism-section,
.quick-contact,
.final-cta {
    margin: 80px 0;
    text-align: center;
}

.accommodation-section h2,
.transport-section h2,
.expo-section h2,
.volunteer-section h2,
.essential-info h2,
.tourism-section h2,
.quick-contact h2,
.final-cta h2 {
    font-size: 2.3rem;
    color: #222;
    margin-bottom: 20px;
    border-bottom: 3px solid #b6ff00;
    padding-bottom: 10px;
    display: inline-block;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hotel-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top: 4px solid #b6ff00;
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.hotel-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hotel-badge.closest {
    background: #28a745;
    color: white;
}

.hotel-badge.premium {
    background: #6f42c1;
    color: white;
}

.hotel-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.hotel-card h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.3;
    text-align: center;
}

.hotel-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.hotel-distance {
    color: #2e7d32;
    font-weight: 600;
    font-size: 1rem;
}

.hotel-time {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.hotel-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
    flex-grow: 1;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.feature-tag {
    background: #f8f9fa;
    color: #555;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Transport Grid */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.transport-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
}

.transport-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.transport-card h4 {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.transport-distance {
    color: #2e7d32;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.transport-card p {
    color: #666;
    margin: 0;
}

/* Expo Section */
.expo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.expo-info h3 {
    color: #222;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: left;
}

.expo-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.expo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.expo-icon {
    font-size: 1.5rem;
}

/* Volunteer Section */
.volunteer-content {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.volunteer-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.volunteer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.volunteer-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 1.5rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.info-card h4 {
    color: #222;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-card p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-detail {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.info-link {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
}

.info-link:hover {
    text-decoration: underline;
}

/* Tourism Grid */
.tourism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.tourism-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.tourism-card:hover {
    transform: translateY(-5px);
}

.tourism-card h4 {
    color: #222;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.tourism-card p {
    color: #666;
    margin: 0;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #b6ff00;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    color: #222;
}

.contact-icon {
    font-size: 1.5rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #b6ff00, #8fcc00);
    padding: 60px;
    border-radius: 20px;
    margin: 80px 0;
}

.final-cta h2 {
    color: #222;
    font-size: 2.8rem;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.final-cta p {
    color: #555;
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
    border-radius: 10px;
}

.btn-icon {
    font-size: 1.3rem;
}

/* Button Styles */
.btn-outline {
    background: transparent;
    color: #222;
    border: 2px solid #222;
}

.btn-outline:hover {
    background: #222;
    color: #b6ff00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-overlay {
        padding: 20px 15px;
    }
    
    .overlay-content {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 25px;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .event-date {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
        margin: 20px 0 30px 0;
    }
    
    .date-text {
        font-size: 1.3rem;
    }
    
    .location-text {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 16px 20px;
        font-size: 1rem;
    }
}

/* Para smartphones pequenos */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    
    .event-date {
        padding: 15px;
        margin: 15px 0 25px 0;
        gap: 10px;
    }
    
    .date-text {
        font-size: 1.1rem;
    }
    
    .location-text {
        font-size: 0.85rem;
    }
    
    .date-label {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        max-width: 260px;
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
        max-width: 100%;
    }

    .quick-link-card {
        padding: 30px 20px;
    }

    .link-icon {
        font-size: 2.8rem;
        margin: 20px 0 15px;
    }

    .quick-link-card h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .quick-link-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
        max-width: 100%;
    }
    
    .route-card .route-icon {
        font-size: 3rem;
        margin: 18px 0 12px;
    }
    
    .route-card h3 {
        font-size: 1.3rem;
        margin: 0;
        padding: 0 15px;
        text-align: center;
    }
    
    .route-distance {
        font-size: 2.5rem;
        margin: 12px 0 18px;
    }
    
    .route-specs {
        padding: 18px 20px 20px;
    }
    
    .spec-row {
        padding: 8px 0;
    }
    
    .spec-label,
    .spec-value {
        font-size: 0.9rem;
    }
    
    .routes-benefits {
        padding: 25px 20px;
        margin: 40px 0 25px;
    }
    
    .routes-benefits h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .benefits-list span {
        padding: 12px 8px;
        font-size: 0.8rem;
        line-height: 1.3;
    }
     
    .home-features {
        grid-template-columns: 1fr;
    }
    
    .event-countdown {
        padding: 30px 20px;
    }
    
    .countdown-info {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .challenge-comparison {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .vs-divider {
        order: 1;
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .route-option {
        padding: 15px;
    }
    
    .route-icon {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .route-option h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .route-km {
        font-size: 2rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px 10px;
        text-align: center;
    }
    
    .row-label {
        text-align: center;
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .row-value {
        margin: 5px 0;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .challenge-benefits {
        padding: 20px 15px;
    }
    
    .challenge-benefits h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefits-grid span {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .expo-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .expo-details {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .final-cta {
        padding: 40px 20px;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .accommodation-section h2,
    .transport-section h2,
    .expo-section h2,
    .volunteer-section h2,
    .essential-info h2,
    .tourism-section h2,
    .quick-contact h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }
    
    .hotel-card {
        padding: 25px;
        min-height: auto;
    }
    
    .hotel-badge {
        top: -8px;
        right: 15px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .hotel-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .hotel-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .hotel-details {
        margin-bottom: 12px;
    }
    
    .hotel-card p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
} 

/* =================================
   ESTILOS DO NOVO CABEÇALHO - v3
   ================================= */
body > .header--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem; /* Aumentado de 1rem para 1.5rem */
    width: 100%;
    background-color: #b6ff00; /* Cor de fundo principal */
    border-bottom: 1px solid #a0d900; /* Tom mais escuro para a borda */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.header--wrap .logo img {
    max-height: 55px; /* Aumentado de 45px para 55px */
    display: block;
}

.header--wrap .nav--wrap {
    display: none; 
    align-items: center;
    gap: 1.5rem;
}

.header--wrap .nav--wrap__infos-gerais {
    border-right: 1px solid rgba(0, 0, 0, 0.2); /* Borda mais escura */
    padding-right: 1.5rem;
}

.header--wrap .nav--wrap__telefone {
    font-weight: 500;
    color: #222; /* Texto escuro para contraste */
    text-decoration: none;
}
.header--wrap .nav--wrap__telefone:hover {
    color: #000;
}

.header--wrap .event-context-title {
    font-weight: 700;
    color: #222;
    font-size: 1.1rem;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding-right: 1.5rem;
}

.header--wrap .nav--wrap__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header--wrap .menu-lista {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.header--wrap .menu-link {
    text-decoration: none;
    color: #222; /* Texto escuro para contraste */
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.header--wrap .menu-link:hover,
.header--wrap .menu-link.active {
    color: #000;
    border-bottom-color: #222; /* Borda escura para indicar atividade */
}

.header--wrap .nav-buttons .btn-primary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: #b6ff00;
    color: #222;
    border: 2px solid #b6ff00;
}

.header--wrap .nav-buttons .btn-primary:hover {
    background: transparent;
    color: #222;
}

.header--wrap .nav--wrap__menu-mobile {
    display: block;
}

@media (min-width: 992px) {
    .header--wrap .nav--wrap {
        display: flex;
    }
    .header--wrap .nav--wrap__menu-mobile {
        display: none;
    }
} 

/* --- Estilos para o Menu Mobile Ativo --- */
@media (max-width: 991px) {
    .header--wrap .nav--wrap {
        /* Quando ativado pelo JS, o menu vira um bloco vertical */
        position: absolute;
        top: 100%; /* Começa logo abaixo do header */
        left: 0;
        right: 0;
        background: #f1f1f1;
        flex-direction: column;
        align-items: stretch; /* Itens ocupam toda a largura */
        padding: 1rem 0;
        border-top: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .header--wrap .nav--wrap__infos-gerais,
    .header--wrap .event-context-title {
        padding: 0 2rem 1rem 2rem;
        border-right: none;
        border-bottom: 1px solid #ddd;
        margin-bottom: 1rem;
    }

    .header--wrap .nav--wrap__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .header--wrap .menu-lista {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .header--wrap .menu-link {
        padding: 1rem 2rem;
        border: none !important;
        width: 100%;
    }

    .header--wrap .menu-link:hover,
    .header--wrap .menu-link.active {
        background: #e0e0e0;
    }
}

/* ===================================================================
   Mobile Menu Override Styles
   =================================================================== */
@media (max-width: 991px) {
    /* Oculta o wrapper de navegação desktop e o telefone */
    .header--wrap .nav--wrap__infos-gerais,
    .header--wrap .nav--wrap__menu {
        display: none;
    }

    /* Mostra o botão do menu mobile */
    .header--wrap .nav--wrap__menu-mobile {
        display: block;
        z-index: 1002; /* Garante que o botão fique acima de outros elementos */
        position: relative;
    }

    /* Container do menu overlay */
    .header--wrap .nav--wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(8px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    /* Estado aberto do menu */
    .header--wrap.nav-open .nav--wrap {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .header--wrap.nav-open .nav--wrap__menu {
        display: block;
        width: 100%;
    }
    
    /* Botão de Inscrição no Menu Mobile Overlay */
    .header--wrap.nav-open .registration-btn-wrapper {
        display: block;
        width: 100%;
        text-align: center;
        margin: 20px 0;
    }
    
    .header--wrap.nav-open .registration-btn {
        display: inline-flex;
        width: auto;
        min-width: 220px;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1.2rem;
    }

    /* Lista de links */
    .header--wrap .menu-lista {
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    /* Estilo dos links */
    .header--wrap .menu-link {
        display: block;
        padding: 16px 20px;
        font-size: 20px;
        font-weight: 500;
        color: #333;
        border-bottom: 1px solid #e0e0e0;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    .header--wrap .menu-lista li:first-child .menu-link {
        border-top: 1px solid #e0e0e0;
    }

    .header--wrap .menu-link:hover {
        background-color: #f5f5f5;
        color: #000;
    }

    /* Link ativo */
    .header--wrap .menu-link.active {
        background-color: #eee;
        font-weight: 700;
        color: #000;
    }

    /* Botão Hamburger */
    .menu-toggle {
        background: transparent;
        border: none;
        padding: 15px;
        cursor: pointer;
    }

    .menu-toggle-icon {
        display: block;
        position: relative;
        width: 26px;
        height: 2px;
        background-color: #333;
        transition: all 0.15s ease-in-out;
    }
    .menu-toggle-icon::before,
    .menu-toggle-icon::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease-in-out;
    }
    .menu-toggle-icon::before {
        transform: translateY(-8px);
    }
    .menu-toggle-icon::after {
        transform: translateY(8px);
    }

    /* Animação do botão para "X" */
    .header--wrap.nav-open .menu-toggle-icon {
        background-color: transparent; /* Barra do meio some */
    }
    .header--wrap.nav-open .menu-toggle-icon::before {
        transform: translateY(0) rotate(45deg);
    }
    .header--wrap.nav-open .menu-toggle-icon::after {
        transform: translateY(0) rotate(-45deg);
    }
}

/* --- MENU CORRIDA (EVENTO) --- */
.menu-corrida-wrap {
    display: inline-block;
    position: relative;
    margin-right: 32px;
    vertical-align: middle;
}
.menu-corrida {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-corrida-item {
    position: relative;
}
.menu-corrida-link {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #222;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    padding: 10px 18px;
    cursor: pointer;
    text-decoration: none;
    transition: color .2s;
}
.menu-corrida-link:hover,
.menu-corrida-link:focus {
    color: #7ab800;
}
.submenu-arrow {
    margin-left: 6px;
    font-size: 0.9em;
}
.submenu-corrida {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    border-radius: 0 0 10px 10px;
    z-index: 100;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}
.menu-corrida-item:hover > .submenu-corrida,
.menu-corrida-item:focus-within > .submenu-corrida {
    display: block;
}
.submenu-corrida li {
    width: 100%;
}
.submenu-corrida a {
    display: block;
    padding: 12px 24px;
    color: #222;
    text-decoration: none;
    font-size: 1rem;
    transition: background .2s, color .2s;
    border: none;
    background: none;
}
.submenu-corrida a:hover,
.submenu-corrida a:focus {
    background: #b6ff00;
    color: #222;
}

/* Remove bullets do menu principal */
.menu-corrida, .submenu-corrida {
    list-style: none;
}

/* Botão de Inscrição em Destaque */
.registration-btn-wrapper {
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}

.registration-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #222;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.registration-btn i {
    font-size: 1.1em;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.registration-btn:hover {
    background: linear-gradient(135deg, #b6ff00 0%, #9ce600 100%);
    color: #222;
    border-color: #b6ff00;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(182, 255, 0, 0.3);
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.registration-btn:hover i {
    transform: scale(1.15) rotate(5deg);
}

.registration-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Efeito de pulso sutil para chamar atenção */
.registration-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(182, 255, 0, 0.1);
    border-radius: 25px;
    opacity: 0;
    animation: pulse-registration 3s infinite;
}

@keyframes pulse-registration {
    0%, 70%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    35% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Estilos para o link Centro de Ajuda */


/* Responsivo: Mobile */
@media (max-width: 900px) {
    .menu-corrida-wrap {
        width: 100%;
        margin: 0 0 12px 0;
        display: block;
    }
    .menu-corrida-link {
        width: 100%;
        padding: 14px 18px;
        font-size: 1.15rem;
    }
    .submenu-corrida {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0 0 10px 10px;
        background: #fff;
        padding: 0;
    }
    .submenu-corrida a {
        padding: 16px 18px;
        font-size: 1.08rem;
    }
    
    /* Botão de Inscrição Mobile */
    .registration-btn-wrapper {
        display: block;
        width: 100%;
        margin: 15px 0;
        text-align: center;
    }
    
    .registration-btn {
        display: inline-flex;
        width: auto;
        min-width: 200px;
        justify-content: center;
        padding: 14px 25px;
        font-size: 1.1rem;
    }
    

}

@media (max-width: 600px) {
    .menu-corrida-link {
        font-size: 1rem;
        padding: 12px 10px;
    }
    .submenu-corrida a {
        font-size: 0.98rem;
        padding: 14px 10px;
    }
    
    /* Botão de Inscrição Extra Small */
    .registration-btn-wrapper {
        margin: 12px 0;
    }
    
    .registration-btn {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .registration-btn i {
        font-size: 1em;
    }
}

/* === RESPONSIVIDADE ADICIONAL PARA EVENT INFO BANNER === */
@media (max-width: 480px) {
    /* Video Banner Extra Small */
    .video-banner-clean {
        height: 60vh !important;
        margin-top: -80px;
    }

    /* Event Info Banner Extra Small */
    .event-info-banner {
        padding: 30px 0 !important;
    }

    .event-info-content {
        padding: 0 15px !important;
        gap: 25px !important;
    }

    .event-title {
        font-size: 2rem !important;
        margin-bottom: 12px !important;
        line-height: 1.1 !important;
    }

    .event-description {
        font-size: 1rem !important;
    }

    .event-details {
        padding: 20px 15px !important;
        border-radius: 12px;
    }

    .date-info,
    .location-info {
        font-size: 1rem !important;
        margin-bottom: 10px;
    }

    .date-info i,
    .location-info i {
        font-size: 1.1rem;
    }

    .event-actions .btn {
        padding: 12px 18px !important;
        font-size: 15px !important;
    }

    .scroll-arrow-only {
        width: 40px !important;
        height: 40px !important;
        bottom: 15px !important;
    }

    .scroll-arrow-only svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Responsividade para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .event-info-content {
        gap: 35px;
        padding: 0 30px;
    }

    .event-title {
        font-size: 3rem;
    }

    .event-description {
        font-size: 1.2rem;
    }

    .event-details {
        padding: 28px 25px;
    }
}

/* --- FIM MENU CORRIDA --- */