/* Variáveis Globais */
:root {
    --dark-color: #101619;
    --primary-orange: rgba(184, 76, 0, 0.85); /* Laranja ainda mais fechado e aconchegante */
    --primary-green: #66cc99; /* Alterado para verde mais suave */
    --card-bg: rgba(16, 16, 25, 0.7);
    --card-border: rgba(184, 76, 0, 0.15);
    --card-border-hover: rgba(184, 76, 0, 0.3);
    --text-light: rgba(255, 255, 255, 0.85);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, rgba(184, 76, 0, 0.85) 0%, rgba(207, 104, 27, 0.85) 100%);
    --gradient-dark: linear-gradient(135deg, #1E1E1E 0%, #2A2A2A 100%);
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(16, 16, 25, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand img {
    height: 85px;
    transition: var(--transition);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 8px 12px !important;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-nav {
        gap: 0;
        padding: 10px 0;
    }
    
    .nav-link {
        padding: 10px 15px !important;
    }
}

.navbar.scrolled {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    color: #7fff00 !important; /* Verde neon mais sutil */
    font-weight: 700;
    text-shadow: 0 0 5px rgba(127, 255, 0, 0.5); /* Brilho sutil */
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    padding: 1.5rem 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #7fff00 !important; /* Verde neon mais sutil */
    text-shadow: 0 0 5px rgba(127, 255, 0, 0.3); /* Brilho sutil */
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #9fff3d !important; /* Verde neon mais claro no hover */
    text-shadow: 0 0 8px rgba(127, 255, 0, 0.6); /* Brilho mais intenso no hover */
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange); /* Alterado para laranja mais suave */
    box-shadow: 0 0 5px rgba(184, 76, 0, 0.5);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar.scrolled .nav-link {
    color: var(--primary-orange); /* Alterado para laranja mais suave */
}

/* Ajuste do Toggle Button para tema escuro */
.navbar-toggler {
    border-color: rgba(57, 255, 20, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(57, 255, 20, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

/* Seções */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);
    scroll-margin-top: 120px; /* Aumentado para garantir mais espaço */
}

/* Primeira seção precisa de padding extra no topo por causa do menu fixo */
section:first-of-type {
    padding-top: 10rem; /* Aumentado para garantir mais espaço */
}

/* Reduz o espaço entre seções adjacentes mas mantém espaço para o menu fixo */
section + section {
    padding-top: 6rem; /* Aumentado para garantir mais espaço */
}

.eventos-section {
    background-color: var(--dark-color);
    padding: 6rem 0;
}

.eventos-section .section-title {
    color: #ffffff !important;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange); /* Alterado para laranja mais suave */
}

/* Cards */
.atracao-card {
    background: var(--dark-color);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.atracao-img {
    position: relative;
    width: 100%;
    padding-top: 75%; /* Proporção 4:3 */
    overflow: hidden;
}

.atracao-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.atracao-card:hover .atracao-img img {
    transform: scale(1.1);
}

.atracao-content {
    padding: 1.5rem;
}

.atracao-content h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.atracao-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Eventos na Home */
.eventos-section {
    padding: 6rem 0;
    background-color: var(--dark-color);
}

.eventos-section .evento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.eventos-section .evento-img {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* Proporção 3:2 */
    overflow: hidden;
}

.eventos-section .evento-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eventos-section .evento-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.eventos-section .evento-content h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.eventos-section .evento-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.eventos-section .evento-content .btn {
    margin-top: auto;
    width: 100%;
    padding: 0.75rem;
}

.eventos-section .evento-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .eventos-section {
        padding: 4rem 0;
    }
    
    .eventos-section .evento-content {
        padding: 1.25rem;
    }
    
    .eventos-section .evento-content h3 {
        font-size: 1.1rem;
    }
}

/* Números Section */
.numeros-section {
    background: var(--dark-color);
}

.numero-card {
    background: var(--dark-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.numero {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange); /* Alterado para laranja mais suave */
    margin-bottom: 0.5rem;
}

.descricao {
    color: #fff;
    font-size: 1.1rem;
}

/* Preços */
.preco-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.preco-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-orange); /* Alterado para laranja mais suave */
    color: #000;
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-weight: 600;
}

.preco-header {
    margin-bottom: 2rem;
}

.preco-valor {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-orange); /* Alterado para laranja mais suave */
    margin: 1rem 0;
}

.preco-periodo {
    color: #fff;
    font-size: 1.1rem;
}

.preco-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preco-lista li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: left;
}

.preco-lista li:last-child {
    border-bottom: none;
}

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

/* Estilos base para todas as listas de preço */
.preco-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preco-lista li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: left;
}

.preco-lista li:last-child {
    border-bottom: none;
}

/* Card Individual */
.preco-individual li {
    font-size: 14px;
    line-height: 1.3;
}

/* Card PCD */
.preco-pcd li {
    font-size: 14px;
    line-height: 1.3;
}

/* Card Aniversário */
.preco-aniversario li {
    font-size: 14px;
    line-height: 1.3;
}

/* Card Meias */
.preco-meias li {
    font-size: 14px;
    line-height: 1.3;
}

/* Galeria */
.galeria-section {
    padding: 8rem 0 6rem;
    background-color: var(--dark-color);
}

.galeria-filtros {
    margin-bottom: 2rem;
}

.galeria-filtros button {
    margin: 0 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary-orange); /* Alterado para laranja mais suave */
    transition: all 0.3s ease;
}

.galeria-filtros button:hover,
.galeria-filtros button.active {
    background-color: var(--primary-orange); /* Alterado para laranja mais suave */
    color: #000;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0;
}

.galeria-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .galeria-filtros button {
        margin: 0.25rem;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/pattern.png');
    opacity: 0.1;
}

/* Botões */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(184, 76, 0, 0.4);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-orange); /* Alterado para laranja mais suave */
}

/* Botões Custom */
.btn-custom {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(184, 76, 0, 0.2);
}

.btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 76, 0, 0.3);
    color: white !important;
}

/* Sobre Section */
.sobre-section .btn-custom {
    background: var(--gradient-primary);
    color: white !important;
}

.sobre-section .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 76, 0, 0.3);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: #fff;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-orange); /* Alterado para laranja mais suave */
}

.footer .social-links {
    display: flex;
    gap: 1rem;
}

.footer .social-links a {
    font-size: 1.8rem;
    transition: var(--transition);
}

.footer .social-links a:hover {
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-brand img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .preco-card.featured {
        transform: none;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

/* Efeitos de Scroll */
[data-aos] {
    opacity: 0;
    transition: var(--transition);
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Eventos Page */
.eventos-page-section {
    padding: 8rem 0 6rem;
    background-color: var(--dark-color);
    min-height: 100vh;
}

.eventos-page-section .section-title {
    color: #fff;
    margin-bottom: 3rem;
}

.evento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.evento-img {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
}

.evento-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evento-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.evento-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.evento-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.evento-content ul {
    list-style: none;
    padding-left: 2.5rem; /* Aumentado para dar mais espaço */
    margin-bottom: 1.5rem;
}

.evento-content ul li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.5rem; /* Adicionado padding à esquerda do texto */
}

.evento-content ul li:before {
    content: "•";
    color: var(--primary-orange); /* Alterado para laranja mais suave */
    font-weight: bold;
    position: absolute;
    left: -2.5rem; /* Ajustado para 1cm (aproximadamente 2.5rem) */
    width: 2rem; /* Largura fixa para o marcador */
    text-align: center; /* Centraliza o marcador */
}

.evento-content .btn {
    width: 100%;
    padding: 0.75rem;
    font-weight: 500;
    margin-top: auto;
}

@media (max-width: 768px) {
    .eventos-page-section {
        padding-top: 6rem;
    }
    
    .evento-content {
        padding: 1.5rem;
    }
    
    .evento-content h3 {
        font-size: 1.25rem;
    }
}

/* Lista com checks */
.check-list {
    list-style: none;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.check-list li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

.check-list li i {
    color: var(--primary-orange); /* Alterado para laranja mais suave */
    position: absolute;
    left: -2.5rem;
    width: 2rem;
    text-align: center;
    font-size: 1rem;
}

/* Horários e Preços */
.horarios-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.horario-card {
    background: rgba(16, 16, 25, 0.7);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(184, 76, 0, 0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.horario-card:hover {
    border-color: rgba(184, 76, 0, 0.5);
    background: rgba(16, 16, 25, 0.9);
    transform: translateY(-5px);
}

.horario-card h3 {
    color: #FF8C00;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.horario-card h3 i {
    color: #39FF14;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-item .periodo {
    color: #fff;
    font-weight: 500;
}

.horario-item .hora {
    color: #39FF14;
    font-weight: 600;
}

/* Cards de Preço */
.preco-card {
    background: rgba(16, 16, 25, 0.7);
    border: 1px solid rgba(184, 76, 0, 0.2);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preco-card:hover {
    border-color: rgba(184, 76, 0, 0.5);
    background: rgba(16, 16, 25, 0.9);
    transform: translateY(-5px);
}

.preco-card.featured {
    border: 2px solid #39FF14;
}

.preco-card.featured::before {
    content: 'Mais Popular';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #39FF14;
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
}

.preco-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preco-header h3 {
    color: #FF8C00;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.preco-valor {
    font-size: 2.5rem;
    color: #39FF14;
    font-weight: 700;
    margin-bottom: 5px;
}

.preco-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.preco-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.preco-lista li {
    color: #fff;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preco-lista li::before {
    content: '✓';
    color: #39FF14;
    font-weight: bold;
}

.preco-card .btn {
    width: 100%;
    background: transparent;
    border: 1px solid #FF8C00;
    color: #FF8C00;
    padding: 12px;
    transition: all 0.3s ease;
}

.preco-card .btn:hover {
    background: linear-gradient(45deg, #FF8C00, #39FF14);
    border-color: transparent;
    color: #000;
}

.preco-card.featured .btn {
    background: linear-gradient(45deg, #FF8C00, #39FF14);
    border-color: transparent;
    color: #000;
}

.preco-card.featured .btn:hover {
    transform: scale(1.05);
}

/* Cards de Informação */
.info-card {
    background: rgba(16, 16, 25, 0.7);
    border: 1px solid rgba(184, 76, 0, 0.2);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    margin-top: 30px;
}

.info-card h4 {
    color: #FF8C00;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h4 i {
    color: #39FF14;
}

.info-card ul li {
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.info-card ul li i.fas.fa-check {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--primary-orange);
    font-size: 14px;
}

/* Horários e Preços na Home */
.home-horarios-section {
    padding: 6rem 0;
    background: var(--dark-color);
    position: relative;
}

.home-horarios-section h3 {
    color: var(--primary-orange); /* Alterado para laranja mais suave */
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.home-horarios-section h3 i {
    font-size: 1.25rem;
}

.horario-card, .preco-card {
    background: var(--dark-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.horario-card:hover, .preco-card:hover {
    transform: translateY(-5px);
}

.horario-card ul, .preco-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.horario-card li, .preco-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.horario-card li:last-child, .preco-card li:last-child {
    border-bottom: none;
}

.horario-card .dias {
    color: #ffffff;
    font-weight: 500;
}

.horario-card .horario {
    color: var(--primary-orange); /* Alterado para laranja mais suave */
    font-weight: 700;
}

.preco-card .tipo {
    color: #fff;
    font-weight: 500;
}

.preco-card .valor {
    color: var(--primary-orange); /* Alterado para laranja mais suave */
    font-weight: 700;
    font-size: 1.2rem;
}

.preco-card small {
    display: block;
    width: 100%;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.preco-card li.destaque {
    background: rgba(255,255,255,0.05);
    margin: 0 -2rem;
    padding: 1rem 2rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .horario-card, .preco-card {
        padding: 1.5rem;
    }

    .horario-card li, .preco-card li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .preco-card li.destaque {
        margin: 0 -1.5rem;
        padding: 1rem 1.5rem;
    }
}

/* Estilos da Página de Contato */
.contato-section {
    padding: 120px 0;
    background: var(--dark-color);
}

.contato-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contato-section .row {
    margin: 0 -15px;
}

.contato-section .col-md-6 {
    padding: 0 15px;
}

.contato-info {
    background: transparent;
    height: 100%;
}

.contato-section {
    padding: 120px 0;
    background: var(--dark-color);
}

.info-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.info-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
}

.info-card h3 {
    color: #39FF14;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 8px;
}

.info-card p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.info-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
}

.info-card .btn {
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mapa-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .info-card {
        margin-bottom: 15px;
    }
    
    .mapa-container {
        margin-top: 20px;
    }
}

/* Contato */
.contato-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.contato-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: stretch;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-contato {
    background: rgba(16, 16, 25, 0.7);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(184, 76, 0, 0.2);
    transition: all 0.3s ease;
}

.card-contato:hover {
    border-color: rgba(184, 76, 0, 0.5);
    background: rgba(16, 16, 25, 0.9);
}

.card-contato h3 {
    color: #FF8C00;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-contato h3 i {
    color: #39FF14;
}

.card-contato p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.card-contato small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
}

.btn-contato {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid #FF8C00;
    color: #FF8C00;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: linear-gradient(45deg, #FF8C00, #39FF14);
    border-color: transparent;
    color: #000;
    transform: translateY(-2px);
}

.btn-contato i {
    color: #39FF14;
}

.btn-contato:hover i {
    color: #000;
}

.botoes-sociais {
    display: flex;
    gap: 10px;
}

.mapa {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(184, 76, 0, 0.2);
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .mapa {
        height: 350px;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
    padding: 2rem;
    background: var(--dark-color);
    border-radius: 15px;
}

.accordion-item {
    background: var(--dark-color);
    border: 1px solid rgba(57, 255, 20, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-color) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 1.5rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    color: #39FF14 !important;
    background: var(--dark-color) !important;
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-button:hover {
    background: var(--dark-color) !important;
}

.accordion-body {
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.btn-outline-primary {
    color: #39FF14;
    border-color: #39FF14;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: #39FF14;
    border-color: #39FF14;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-section {
        padding-top: 8rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .mapa-container {
        margin-top: 2rem;
        height: 350px;
    }

    .faq-section {
        margin-top: 3rem;
    }
}

/* Estilos da Página de Contato */
.contato-section {
    padding: 120px 0;
    background: var(--dark-color);
}

.contato-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.contato-section .row {
    margin: 0 -15px;
}

.contato-section .col-md-6 {
    padding: 0 15px;
}

.contato-info {
    background: transparent;
    height: 100%;
}

.contato-section {
    padding: 120px 0;
    background: var(--dark-color);
}

.info-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.info-card:hover {
    border-color: rgba(57, 255, 20, 0.3);
}

.info-card h3 {
    color: #39FF14;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    margin-right: 8px;
}

.info-card p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.info-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
}

.info-card .btn {
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mapa-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .info-card {
        margin-bottom: 15px;
    }
    
    .mapa-container {
        margin-top: 20px;
    }
}

/* Contato */
.contato-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.contato-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: stretch;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-contato {
    background: rgba(16, 16, 25, 0.7);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(184, 76, 0, 0.2);
    transition: all 0.3s ease;
}

.card-contato:hover {
    border-color: rgba(184, 76, 0, 0.5);
    background: rgba(16, 16, 25, 0.9);
}

.card-contato h3 {
    color: #FF8C00;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-contato h3 i {
    color: #39FF14;
}

.card-contato p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.card-contato small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: block;
}

.btn-contato {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid #FF8C00;
    color: #FF8C00;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: linear-gradient(45deg, #FF8C00, #39FF14);
    border-color: transparent;
    color: #000;
    transform: translateY(-2px);
}

.btn-contato i {
    color: #39FF14;
}

.btn-contato:hover i {
    color: #000;
}

.botoes-sociais {
    display: flex;
    gap: 10px;
}

.mapa {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(184, 76, 0, 0.2);
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .mapa {
        height: 350px;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 5rem;
    padding: 2rem;
    background: var(--dark-color);
    border-radius: 15px;
}

.accordion-item {
    background: var(--dark-color);
    border: 1px solid rgba(57, 255, 20, 0.1);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: var(--dark-color) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 1.5rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    color: #39FF14 !important;
    background: var(--dark-color) !important;
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-button:hover {
    background: var(--dark-color) !important;
}

.accordion-body {
    background: var(--dark-color);
    color: #fff;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.btn-outline-primary {
    color: #39FF14;
    border-color: #39FF14;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: #39FF14;
    border-color: #39FF14;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .contato-section {
        padding-top: 8rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .mapa-container {
        margin-top: 2rem;
        height: 350px;
    }

    .faq-section {
        margin-top: 3rem;
    }
}

/* Estilos do Termo de Responsabilidade */
.termo-box {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.termo-box h5 {
    color: var(--primary-orange);
    font-weight: 600;
}

.termo-box p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.termo-box .btn-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.termo-box .btn-link:hover {
    color: var(--text-light);
    text-decoration: underline;
}

.termo-box .form-check-label {
    color: var(--text-light);
}

.termo-box .form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* Modal do Termo */
.modal-content {
    background-color: var(--dark-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card .list-unstyled li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.info-card .list-unstyled li i.fas.fa-check {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-orange);
    font-size: 14px;
}
