* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
html, body {
    overflow-x: hidden; 
}
body {
    background-color: #f7f7f7;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}


.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 130px;
    margin-right: 10px;
    width: 100%;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.menu-container {
    display: flex;
    align-items: center;
}

.menu-container a {
    margin: 0 10px;
    color: #333;
    font-size: 18px;
    text-decoration: none;
}

.menu-container a i {
    font-size: 20px;
    margin-right: 5px;
}

.menu-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
}

.menu-button:hover {
    background-color: #ff4e00;
}

.swiper-container {
    width: 95%;
    height: 600px;
    margin-top: 20px;
    padding: 20px;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    overflow: hidden; 

}

.swiper-wrapper {
    display: flex;
    gap: 20px; 
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10px; 
}

.swiper-slide img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}


.swiper-pagination-bullet {
    background-color: #ff4e00;
}

.swiper-pagination-bullet-active {
    background-color: #000;
}

.event-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.event-card {
    flex: 1;
    max-width: 350px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.event-card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.event-image {
    position: relative;
    padding: 10px;
}

.event-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.event-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    font-size: 14px;
}

.event-date .day {
    font-size: 20px;
    font-weight: bold;
    color: #ff4e00;
}

.event-date .month {
    text-transform: uppercase;
    color: #666;
    font-size: 12px;
}

.event-info {
    padding: 15px;
    text-align: left;
}

.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.event-location {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.event-location i {
    margin-right: 5px;
    color: #ff4e00;
}

.event-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.event-button:hover {
    background-color: #ff4e00;
}


.main-footer {
    background-color: #ffffff;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    padding: 0 15px;
}

.footer-column h4 {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column p {
    font-size: 14px;
    color: #333;
}

.footer-column img {
    margin-top: 10px;
    width: 150px;
}

.support-button {
    display: inline-block;
    background-color: #5c5470;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    margin-top: 10px;
}

.support-button i {
    margin-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 20px;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media p {
    margin-right: 20px;
    font-weight: bold;
    font-size: 14px;
}

.social-media a {
    color: #333;
    font-size: 20px;
    margin-right: 15px;
    text-decoration: none;
}

.social-media a:hover {
    color: #5c5470;
}

.copyright {
    font-size: 14px;
    color: #888;
}



/* Newsletter Section */
.newsletter-section {
    position: relative;
    background: url('../images/new.png') no-repeat center center/cover;
    padding: 100px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 400px;
    color: #fff;
}

.newsletter-content {
    text-align: left;
    z-index: 1;
    max-width: 400px;
}

.newsletter-content h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form input[type="email"] {
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 50px 0 0 50px;
    width: 300px;
    color: #333;
    background: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: #999;
}

.newsletter-form button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.newsletter-form button:hover {
    background-color: #ff4e00;
}

.newsletter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Estilos para dispositivos móveis */
@media only screen and (max-width: 768px) {
    .newsletter-section {
        padding: 50px 20px;
        height: auto;
        justify-content: center;
    }

    .newsletter-content {
        max-width: 100%;
        text-align: center;
    }

    .newsletter-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .newsletter-form {
        flex-direction: row; /* Mantém o campo de email e o botão lado a lado no mobile */
        padding: 0;
        width: 100%;
    }

    .newsletter-form input[type="email"] {
        width: 70%; /* Ajusta o campo de email para ocupar menos espaço */
        border-radius: 50px 0 0 50px;
        padding: 12px;
        margin-right: 5px; /* Espaço entre o campo de email e o botão */
    }

    .newsletter-form button {
        width: 30%; /* Ajusta o botão para caber ao lado do campo de email */
        border-radius: 0 50px 50px 0;
        padding: 12px;
        font-size: 14px;
    }
    a.buy-ticket-btn{
        width: 100%!important;
    }
}

.info-section {
    position: relative;
    background: url('../images/ultimo.jpg') no-repeat center center/cover;
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}

.info-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
}

.info-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    max-width: 220px;
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: scale(1.05);
}

.info-card i {
    font-size: 36px;
    color: #ffd700; /* Yellow icon color */
    margin-bottom: 15px;
}

.info-card p {
    font-size: 14px;
    font-weight: bold;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .info-cards {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .info-container h2 {
        font-size: 28px;
    }

    .info-card i {
        font-size: 28px;
    }

    .info-card p {
        font-size: 12px;
    }
}


/* Custom Event Section */
.custom-event-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-size: cover; /* Mantém o ajuste da imagem */
    position: relative;
    padding: 50px;
    color: white;
    margin-bottom: 20px;
    margin: 0 auto;
}


.custom-event-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    backdrop-filter: blur(10px); /* Blur effect */
    z-index: 0;
}

.custom-event-content {
    max-width: 60%;
    z-index: 1;
}

.custom-event-content h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.custom-event-details p {
    font-size: 18px;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.custom-event-details p i {
    margin-right: 10px;
}

.custom-event-buttons {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.custom-share-button, .custom-group-button {
    background: none;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-share-button:hover, .custom-group-button:hover {
    background-color: #ff4e00;
}

.custom-group-button i {
    margin-left: 10px;
}

.custom-event-info {
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
}

.custom-event-info i {
    margin-right: 10px;
    color: #00ff7f; /* Green lock icon */
}

.custom-event-info span {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

/* Event Image */
.custom-event-image {
    flex-shrink: 0;
    width: 35%;
    position: relative;
    z-index: 1;
}

.custom-event-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Responsive CSS */
@media (max-width: 768px) {
    .custom-event-section {
        flex-direction: column;
        align-items: center;
        padding: 30px!important;
    }

    .custom-event-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .custom-event-image {
        width: 80%;
    }
}


.event-description-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

/* Event Description */
.event-description {
    width: 60%;
}

.event-description h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.event-description h3 {
    font-size: 22px;
    margin: 20px 0 10px;
}

.event-description ul {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 16px;
}

.event-description p {
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0;
}

.event-description ul li {
    margin-bottom: 15px;
    line-height: 1.4;
}

.event-description ul li span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #666;
}

/* Ticket Pricing Card */
.ticket-pricing-card {
    width: 35%;
    background-color: #f8f9fc;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.card-title {
    background-color: #5c5470;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.ticket-option {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ticket-option span {
    font-size: 14px;
}

.ticket-price {
    font-weight: bold;
    color: #5c5470;
}

.ticket-info {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.secure-purchase {
    display: flex;
    align-items: center;
    background-color: #e3e6f0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.secure-purchase i {
    color: #00ff7f;
    font-size: 24px;
    margin-right: 15px;
}

.buy-ticket-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #32cd32;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

.buy-ticket-btn:hover {
    background-color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-description-section {
        flex-direction: column;
        align-items: center;
    }

    .event-description {
        width: 100%;
    }

    .ticket-pricing-card {
        width: 100%;
        margin-top: 20px;
    }
}

img.img-map {
    max-width: 400px;
}


a.buy-ticket-btn {
    display: inline-block;
    padding: 20px;
    background: linear-gradient(90deg, #83DD7D 0%, #63ca81 100%);
    color: #ffffff;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    outline: none;
    border: none;
    width: 30%;
    text-align: center;
    transition: transform 0.2s ease-in-out;
    animation: pulsate 1.5s ease-in-out infinite;
}

a.buy-ticket-btn:hover, 
a.buy-ticket-btn:focus {
    text-decoration: none;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}



.event-dropdown {
    display: none; /* Oculto por padrão */
    position: absolute;
    top: 70px;
    right: 10px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 200px;
}

.event-dropdown ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.event-dropdown li {
    padding: 8px 12px;
}

.event-dropdown li a {
    text-decoration: none;
    color: #333;
    display: block;
}

.event-dropdown li a:hover {
    background-color: #f0f0f0;
}

@media only screen and (max-width: 768px) {
    .swiper-container {
        width: 95%;
        height: 200px !important;
        margin-top: 20px;
        padding: 20px;
        justify-content: center;
        display: flex;
        margin: 0 auto;
        overflow: hidden;
    }
}

@media only screen and (max-width: 768px) {
    .footer-container {
        padding: 20px;
    }

    .footer-columns {
        flex-direction: column; /* Coloca as colunas em uma única coluna vertical */
        align-items: center;
    }

    .footer-column {
        padding: 0;
        margin-bottom: 20px; /* Adiciona espaçamento entre as seções no mobile */
        text-align: center;
    }

    .footer-column h4 {
        font-size: 16px; /* Reduz o tamanho da fonte para mobile */
    }

    .footer-column ul li a,
    .footer-column p {
        font-size: 13px; /* Reduz o tamanho da fonte para links e texto */
    }

    .footer-logo img,
    .footer-column img {
        width: 120px; /* Ajusta o tamanho da imagem no mobile */
    }
    img.img-map {
        max-width: 300px!important;
        border-radius: 10px;
        padding-top: 10px;
    }
    .custom-event-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 75%)!important;
        backdrop-filter: blur(10px);
        z-index: 0;
    }
}