/* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Garantir responsividade completa */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

.main-content {
    width: 100%;
    overflow-x: hidden;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #ff6b6b;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    max-width: 200px;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.social-link.whatsapp:hover {
    color: #25d366;
}

.social-link.instagram:hover {
    color: #e1306c;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 1;
}

/* Quando houver imagem de fundo - opacidade baixa para destacar a imagem */
.hero-section[style*="background-image"]::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
}

/* Quando NÃO houver imagem de fundo - cor sólida mais forte */
.hero-section:not([style*="background-image"])::before {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    color: white;
    padding: 6rem 0 2rem;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: bounceIn 1s ease-out;
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-btn {
    display: inline-block;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    text-align: center;
    opacity: 1;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.hero-btn.secondary {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary:hover {
    background: linear-gradient(45deg, #3bb7b0, #3a8f7d);
}

.hero-location-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 90%;
    z-index: 3;
    margin: 2rem auto 0;
}

.location-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-icon {
    color: #ff6b6b;
    font-size: 1.5rem;
}

.location-info {
    flex: 1;
}

.location-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.2rem;
}

.location-place {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.location-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-live {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-soft 2s infinite;
}

/* ==================== HERO IMAGE ==================== */
.hero-image {
    display: none; /* Ocultar a imagem separada, pois agora é background */
}

.hero-image img {
    display: none;
}

.botoes-abaixo-imagem {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.botoes-agenda-principais {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e5e5;
}

.btn-agenda {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    text-align: center;
}

.btn-ingresso {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.btn-ingresso:hover {
    background: linear-gradient(45deg, #3bb7b0, #3a8f7d);
}

.btn-duvidas {
    background: linear-gradient(45deg, #a55eea, #8b5cf6);
}

.btn-duvidas:hover {
    background: linear-gradient(45deg, #9c4de6, #7c3aed);
}

.btn-agenda:hover, .btn-ingresso:hover, .btn-duvidas:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ==================== SECTIONS ==================== */
.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ==================== INGRESSOS SECTION ==================== */
.ingressos-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.ingressos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffd700' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='15' cy='15' r='1'/%3E%3Ccircle cx='45' cy='45' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.ingressos-section .container {
    position: relative;
    z-index: 2;
}

.ingressos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ingressos-header .section-title {
    color: #f39c12;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.8rem;
}

.ingressos-header .section-subtitle {
    color: #ecf0f1;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.ingressos-destaque {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 15px rgba(231, 126, 34, 0.4);
    animation: pulse 2s infinite;
}

.destaque-icone {
    font-size: 1.3rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Promoções Container */
.promocoes-container {
    margin: 3rem 0;
}

.promocoes-titulo {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promocoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.promocao-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promocao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f39c12, #3498db);
}

.promocao-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.promocao-card.destaque {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border: 2px solid #d35400;
    transform: scale(1.02);
}

.promocao-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.promocao-icone {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    padding: 0.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.promocao-header h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.promocao-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.promocao-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e74c3c;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Container de Ingressos */
.ingressos-container {
    margin: 3rem 0;
}

.plataformas-titulo {
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #f39c12;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ingressos-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.ingresso-btn {
    display: block;
    text-decoration: none;
    border-radius: 20px;
    background: var(--btn-color, #ff6b6b);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.ingresso-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.ingresso-btn:hover::before {
    left: 100%;
}

.ingresso-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ingresso-btn-content {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    gap: 1.2rem;
}

.btn-icone {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
}

.btn-info {
    flex: 1;
    text-align: left;
}

.btn-titulo {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.btn-subtitulo {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-arrow {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.ingresso-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Informações dos Ingressos */
.ingressos-info {
    margin-top: 3rem;
    padding: 2.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.2rem 0.8rem;
}

.info-icone {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
}

.info-item h5 {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #f39c12;
    margin-bottom: 0.6rem;
}

.info-item p {
    color: #ecf0f1;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ==================== ATRAÇÕES SECTION ==================== */
.atracoes-section {
    padding: 60px 0;
    background: white;
}

.atracoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.atracao-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.atracao-card:hover {
    transform: translateY(-5px);
}

.atracao-image {
    height: 200px;
    overflow: hidden;
}

.atracao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.atracao-card:hover .atracao-image img {
    transform: scale(1.1);
}

.atracao-content {
    padding: 1.5rem;
}

.atracao-content h3 {
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Fredoka One', cursive;
}

.atracao-content p {
    color: #666;
    line-height: 1.6;
}

/* ==================== GALERIA SECTION ==================== */
.galeria-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.galeria-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.02);
}

.galeria-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: white;
    font-size: 2rem;
}

/* ==================== CONTATO SECTION ==================== */
.contato-section {
    padding: 80px 0;
    background: #f8f9fa;
    color: #333;
    position: relative;
    overflow: hidden;
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b6b' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contato-info {
    text-align: left;
}

.contato-info h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.contato-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.contato-dados {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contato-item:last-child {
    border-bottom: none;
}

.contato-item i {
    color: #ff6b6b;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.contato-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contato-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.contato-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contato-btn.instagram {
    background: linear-gradient(45deg, #e1306c, #833ab4);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.contato-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.contato-btn.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.contato-btn.instagram:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.6);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1rem;
}

.footer-logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.footer-text {
    color: #ccc;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links .social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links .social-link:hover {
    color: #ff6b6b;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ==================== ANIMATIONS ==================== */
@keyframes bounceIn {
    0% { 
        opacity: 0; 
        transform: scale(0.3) translateY(-50px); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translateY(0); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

@keyframes fadeInUp {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.05); 
    }
}

/* ==================== RESPONSIVIDADE MOBILE ==================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-section {
        min-height: 60vh;
        padding: 0;
        background-attachment: scroll;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 60vh;
    }

    .hero-text {
        padding: 5rem 0 2rem 0;
        order: 1;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
        padding: 0 20px;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        min-width: 200px;
    }

    .hero-location-card {
        margin: 1.5rem auto 3rem;
        max-width: 90%;
        order: 2;
    }

    .hero-image {
        display: none;
    }

    .hero-image img {
        display: none;
    }

    .botoes-abaixo-imagem {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-top: 1.5rem;
    }

    .btn-agenda {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .atracoes-grid {
        grid-template-columns: 1fr;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .promocoes-grid {
        grid-template-columns: 1fr;
    }

    .ingressos-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ingresso-btn {
        width: 100%;
        max-width: none;
    }
    
    .ingresso-btn-content {
        padding: 1rem 1.2rem;
        gap: 1rem;
    }
    
    .btn-icone {
        min-width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .btn-titulo {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1rem 0.5rem;
    }
    
    .info-icone {
        font-size: 2rem;
    }
    
    .ingressos-destaque {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .promocoes-titulo, .plataformas-titulo {
        font-size: 1.5rem;
    }
    
    .ingressos-header {
        margin-bottom: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .contato-info {
        text-align: center;
    }

    .contato-buttons {
        align-items: center;
        gap: 1rem;
    }

    .contato-btn {
        width: 100%;
        max-width: 280px;
    }

    /* Agenda Mobile - CORRIGIDO */
    .avisos-compactos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .aviso-compacto {
        padding: 15px;
    }
    
    .temporada-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 1.5rem;
    }
    
    .horarios-cards-simples {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .estreias-grid-simples {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .evento-simples {
        padding: 20px;
    }
    
    .horario-card-simples {
        padding: 12px;
    }

    /* CORREÇÃO PRINCIPAL - Agenda Mobile */
    .evento-simples-com-imagem {
        flex-direction: column;
        gap: 0;
    }

    .evento-divulgacao {
        flex: none;
        height: 250px;
        min-height: 250px;
        width: 100%;
        order: 1;
    }

    .evento-info-simples.com-imagem,
    .evento-info-simples.sem-imagem {
        padding: 20px;
        order: 2;
        display: block !important;
        width: 100% !important;
    }

    /* Garantir que TODOS os elementos da agenda sejam exibidos no mobile */
    .evento-local,
    .horarios-simples,
    .promocoes-simples,
    .horarios-especiais-simples,
    .observacao-simples {
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px;
    }

    .evento-local h4,
    .evento-local p,
    .periodo,
    .horarios-simples h5 {
        display: block !important;
        margin-bottom: 10px;
    }

    .badge-ao-vivo {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .cards-lado-a-lado {
        flex-direction: column;
        gap: 10px;
    }

    .cards-lado-a-lado > * {
        margin: 0;
        width: 100% !important;
        display: block !important;
    }

    .cards-lado-a-lado > *:last-child {
        margin: 0;
    }

    /* Botões da agenda no mobile */
    .botoes-abaixo-imagem {
        order: 3;
        padding: 20px;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }
    
    .botoes-agenda-principais {
        flex-direction: column;
        gap: 1rem;
        padding: 20px;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        min-height: 50vh;
        padding: 0;
    }

    .hero-text {
        padding: 5rem 0 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
    }

    .hero-location-card {
        margin: 1.5rem auto 3rem;
        padding: 1rem;
        font-size: 0.9rem;
    }

    .hero-image img {
        display: none;
    }

    .botoes-abaixo-imagem {
        flex-direction: column;
        gap: 1rem;
        padding: 15px;
    }

    .btn-agenda {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: 250px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .ingresso-btn, .contato-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        max-width: none;
        width: 100%;
    }
    
    .ingresso-btn-content {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
    }
    
    .btn-icone {
        min-width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .btn-titulo {
        font-size: 1rem;
    }
    
    .btn-subtitulo {
        font-size: 0.8rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .info-icone {
        font-size: 2rem;
    }
    
    .ingressos-destaque {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .promocoes-titulo, .plataformas-titulo {
        font-size: 1.3rem;
    }
    
    .promocao-header h4 {
        font-size: 1.1rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        gap: 1.5rem;
    }

    /* Agenda Mobile - Ainda mais específico para telas pequenas */
    .evento-divulgacao {
        height: 200px;
        min-height: 200px;
        padding: 8px;
    }

    .evento-info-simples.com-imagem,
    .evento-info-simples.sem-imagem {
        padding: 15px;
    }

    .aviso-compacto {
        padding: 12px;
    }

    .aviso-compacto-icone {
        font-size: 1.2rem;
    }

    .temporada-banner {
        padding: 1rem;
    }

    .temporada-banner h3 {
        font-size: 1.1rem;
    }

    .estreia-conteudo {
        padding: 15px;
    }
}

/* ==================== AGENDA ESPECÍFICA ==================== */
.avisos-compactos-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-bottom: 1px solid #e5e5e5;
}

.avisos-compactos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 0;
}

.aviso-compacto {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e5e5e5;
    transition: all 0.3s ease;
}

.aviso-compacto.urgente {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.aviso-compacto.promocao {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.aviso-compacto.info {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.aviso-compacto:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.aviso-compacto-icone {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.aviso-compacto-conteudo {
    flex: 1;
}

.aviso-compacto-conteudo h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: #374151;
    margin: 0 0 8px 0;
}

.aviso-compacto-conteudo p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.btn-compacto {
    background: #374151;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-compacto:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

/* Agenda Simplificada */
.agenda-simples-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.agenda-header {
    text-align: center;
    margin-bottom: 40px;
}

.temporada-banner {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(55, 65, 81, 0.25);
}

.temporada-banner h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    margin: 0;
}

.status-coming {
    background: rgba(245, 158, 11, 0.9);
    color: #78350f;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Temporada Simples */
.temporada-simples {
    margin-bottom: 40px;
}

.evento-simples {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.evento-local h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: #374151;
    margin: 0 0 8px 0;
}

.evento-local p {
    color: #6b7280;
    margin: 0 0 8px 0;
    font-size: 1rem;
}

.periodo {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.horarios-simples {
    margin: 25px 0;
}

.horarios-simples h5 {
    font-family: 'Fredoka One', cursive;
    color: #374151;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.horarios-cards-simples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.horario-card-simples {
    background: #f9fafb;
    padding: 12px 8px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.horario-card-simples.destaque {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    transform: scale(1.02);
}

.horario-card-simples:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.horario-label {
    font-family: 'Fredoka One', cursive;
    font-size: 0.8rem;
    color: #374151;
    display: block;
    margin-bottom: 8px;
    line-height: 1.2;
}

.horarios-lista {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.horario-item {
    background: white;
    color: #374151;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    font-size: 0.8rem;
}

.horario-card-simples.destaque .horario-item {
    border-color: #f59e0b;
    color: #92400e;
}

/* Container para cards lado a lado */
.cards-lado-a-lado {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.cards-lado-a-lado > * {
    flex: 1;
}

.promocoes-simples {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 15px;
    border-radius: 10px;
    margin: 0;
    border-left: 4px solid #10b981;
}

.promocoes-simples h6 {
    font-family: 'Fredoka One', cursive;
    color: #065f46;
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.promocoes-simples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promocoes-simples li {
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 5px;
    color: #065f46;
    font-size: 0.9rem;
    font-weight: 500;
}

.observacao-simples {
    background: #f3f4f6;
    padding: 12px;
    border-radius: 8px;
    margin-top: 20px;
}

.observacao-simples small {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* Estreias Simples */
.estreias-simples {
    margin-top: 40px;
}

.estreias-grid-simples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.estreia-card-simples {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.estreia-card-simples:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.estreia-imagem {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.estreia-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.estreia-status {
    position: absolute;
    top: 12px;
    right: 12px;
}

.estreia-status span {
    background: rgba(55, 65, 81, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.estreia-conteudo {
    padding: 20px;
}

.estreia-conteudo h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: #374151;
    margin: 0 0 8px 0;
}

.estreia-endereco {
    color: #6b7280;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.estreia-periodo {
    background: #eff6ff;
    padding: 8px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    color: #1d4ed8;
    font-size: 0.9rem;
}

.evento-especial-simples {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #f59e0b;
}

.evento-especial-simples h5 {
    font-family: 'Fredoka One', cursive;
    color: #92400e;
    margin: 0 0 6px 0;
    font-size: 0.95rem;
}

.evento-especial-simples p {
    color: #92400e;
    margin: 0 0 8px 0;
    font-size: 0.85rem;
}

.data-especial {
    background: rgba(245, 158, 11, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #92400e;
    display: inline-block;
}

.atracoes-especiais {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #3b82f6;
}

.atracoes-especiais h6 {
    font-family: 'Fredoka One', cursive;
    color: #1e40af;
    margin: 0 0 10px 0;
    font-size: 0.95rem;
}

.atracoes-especiais-lista {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.atracao-especial-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.atracao-especial-item strong {
    color: #1e40af;
    display: block;
    font-size: 0.9rem;
}

.atracao-especial-item span {
    color: #3730a3;
    font-size: 0.8rem;
}

.horarios-resumo {
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
    border: 2px solid #c8e6c9;
    padding: 15px 18px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.1);
}

.horarios-resumo small {
    color: #2e7d32;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 500;
}

/* Evento com Imagem de Divulgação */
.evento-simples-com-imagem {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
    gap: 0;
}

.evento-divulgacao {
    position: relative;
    flex: 0 0 320px;
    height: 320px;
    min-height: 320px;
    padding: 10px;
    background: #f8f9fa;
}

.evento-divulgacao img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.divulgacao-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.badge-ao-vivo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.evento-info-simples.com-imagem {
    flex: 1;
    padding: 30px;
}

.evento-info-simples.sem-imagem {
    padding: 30px;
}

/* Horários Especiais e Dias de Folga */
.horarios-especiais-simples {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 0;
}

.horarios-especiais-simples h6 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.horarios-especiais-simples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.horarios-especiais-simples li {
    color: #856404;
    font-size: 0.85rem;
    padding: 0.2rem 0;
    border-bottom: 1px solid #ffeaa7;
}

.horarios-especiais-simples li:last-child {
    border-bottom: none;
}

.dias-folga {
    margin-bottom: 1rem;
}

.dias-folga:last-child {
    margin-bottom: 0;
}

/* Very Small Screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-btn, .btn-agenda, .ingresso-btn, .contato-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        max-width: none;
        width: 100%;
    }
    
    .ingresso-btn-content {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
    }
    
    .btn-icone {
        min-width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .btn-titulo {
        font-size: 0.9rem;
    }
    
    .btn-subtitulo {
        font-size: 0.75rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .info-icone {
        font-size: 1.8rem;
    }
    
    .ingressos-destaque {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .promocoes-titulo, .plataformas-titulo {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .hero-location-card {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}

/* Ajustes adicionais para todos os tamanhos */
@media (max-width: 1024px) {
    .evento-simples-com-imagem {
        flex-direction: column;
    }
    
    .evento-divulgacao {
        flex: none;
        height: 300px;
        min-height: 300px;
        width: 100%;
    }
    
    .evento-info-simples.com-imagem {
        padding: 25px;
    }
}



/* Fix para landscape em dispositivos pequenos */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: 80vh;
        padding: 0;
    }
    
    .hero-text {
        padding: 1rem 0;
    }
    
    .hero-location-card {
        margin: 1rem auto 0;
    }
    
    .hero-content {
        min-height: 80vh;
    }
}
