/* ===========================
   VARIÁVEIS E CORES
   =========================== */
:root {
    --primary-color: #FF8C00;
    --secondary-color: #333333;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --border-color: #e0e0e0;
}

/* ===========================
   ESTILOS GLOBAIS
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    touch-action: manipulation;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 66px;
    touch-action: manipulation;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    background-color: var(--dark-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    margin-left: 1rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    margin-top: -66px;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

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

.hero-text {
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* ===========================
   BOTÕES
   =========================== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #e67e00;
    border-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* ===========================
   SEÇÕES
   =========================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* ===========================
   SOBRE SECTION
   =========================== */
.sobre-section {
    background-color: #ffffff;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.about-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.3rem;
}

/* ===========================
   ATRAÇÕES SECTION
   =========================== */
.atrações-section {
    background-color: var(--light-color);
}

.atração-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.atração-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.2);
}

.atração-card i {
    font-size: 3rem;
    color: var(--primary-color);
}

.atração-card .card-title {
    font-weight: 700;
    margin-top: 1rem;
    color: var(--text-color);
}

.atração-card .card-text {
    color: #666;
    font-size: 0.95rem;
}

/* ===========================
   PROGRAMAÇÃO SECTION
   =========================== */
.programacao-section {
    background-color: #ffffff;
}

.day-schedule {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.day-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.day-title i {
    margin-right: 0.5rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.schedule-item:hover {
    background-color: rgba(255, 140, 0, 0.05);
    padding-left: 1rem;
}

.schedule-item .time {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 80px;
    font-size: 1.1rem;
}

.schedule-item .event {
    color: var(--text-color);
    font-weight: 500;
    margin-left: 1rem;
}

/* ===========================
   INGRESSOS SECTION
   =========================== */
.ingressos-section {
    background-color: var(--light-color);
}

.ingresso-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ingresso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.ingresso-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e67e00 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.ingresso-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.ingresso-body {
    padding: 2rem;
}

.ingresso-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.ingresso-list {
    list-style: none;
    margin-bottom: 2rem;
}

.ingresso-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.ingresso-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* ===========================
   CONTATO SECTION
   =========================== */
.contato-section {
    background-color: #ffffff;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e67e00;
}

.contact-form {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

#contatoAviso {
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
}

#contatoAviso.aviso-sucesso {
    background-color: #d1fae5;
    color: #065f46;
    border: 1.5px solid #6ee7b7;
}

#contatoAviso.aviso-erro {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1.5px solid #fca5a5;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--dark-color);
    color: white;
    margin-top: 5rem;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer p {
    color: #ffffff;
    font-size: 0.95rem;
}

.footer h3 {
    color: #ffffff !important;
    font-weight: 700;
}

.footer .text-white {
    color: #ffffff !important;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

/* ===========================
   SCROLL TO TOP BUTTON
   =========================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #e67e00;
    transform: translateY(-5px);
}

/* ===========================
   MODAL
   =========================== */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e67e00 100%);
    color: white;
    border: none;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-title {
    font-weight: 700;
}

/* ===========================
   ANIMAÇÕES
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===========================
   RESPONSIVIDADE
   =========================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

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

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .day-schedule {
        margin-bottom: 1.5rem;
    }

    .contact-form {
        margin-top: 2rem;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

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

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-list li {
        font-size: 0.95rem;
    }

    .ingresso-price {
        font-size: 2rem;
    }
}
