/* Variáveis CSS */
:root {
    --primary-color: #005ca9;
    --secondary-color: #f06292;
    --accent-color: #4fc3f7;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Estilos Gerais */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* Navbar */
.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    height: 60px;
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/api/placeholder/1200/600'); */
    background-size: cover;
    background-position: center;
    color: var(--white);
    /*
    padding: 100px 0;
    margin-bottom: 40px;
    */
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Seção de Descrição */
.description-section {
    /* font-size: 1rem; */
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 40px;
}

.lead {
    /* font-size: 1.2rem; */ 
    line-height: 1.7;
}

/* Seção de Tickets */
.tickets-section {
    margin-bottom: 40px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.8rem;
}

.ticket-card {
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.ticket-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.ticket-type {
    color: #666;
    font-size: 1.75rem;
}

/* Botões */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #004c8c;
    border-color: #004c8c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e94b7d;
    border-color: #e94b7d;
    transform: translateY(-2px);
}

/* Call to Action */
.cta-section {
    padding: 30px 0;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.event-date {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    margin-top: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

hr {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .ticket-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}


/* Estilo para o mapa */
.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.caixa_de_texto {
    font-size: 1rem;;
    width: 100%;
    height: 200px;
    border: 0;
    overflow-x: none;
    overflow-y: scroll;
}
