@import url('https://fonts.googleapis.com/css2?family=Actor&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --navbar-height: 120px;
    --font-plus: "Plus Jakarta Sans", sans-serif;
    --font-actor: "Actor", sans-serif;
}

body {
    font-family: var(--font-plus);
}

.navbar {
    min-height: var(--navbar-height);
}



.navbar,
.footer {
    background-color: #C3051E;
}

.btn-red {
    background-color: #C3051E;
    border: none;
}

.btn-red:hover {
    background-color: #800000;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}


.price-card a.vip:hover {
    background: #800000;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.map-container {
    overflow: hidden;
    width: 500px;
    height: 307px;
    opacity: 1;
}

.footer-text {
    font-size: 0.8rem;
    color: #fff;

    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;

}

@media (max-width: 768px) {
    .speaker-img {
        margin-bottom: 1rem;
    }
}

.btn-register {
    border: 2px solid #FFFFFF;
    border-radius: 50px;

    font-family: var(--font-plus);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 4%;
    vertical-align: middle;
}

nav ul li a {
    font-family: var(--font-plus);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
}

footer {
    padding-top: 5rem;
    padding-bottom: 3rem;
}

footer .link-util {
    width: 60%;
    margin: .75rem 0;
}

footer .link-util a {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #fff;
    text-decoration: none;
    margin-left: .75rem;
}

footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.default-m-top {
    margin-top: var(--navbar-height);
}

/* Estilos para o popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, Helvetica, sans-serif;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 20px;
}

.popup-header {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.popup-header h2 {
    color: #333;
    margin: 0;
    font-size: 24px;
}

.popup-body {
    color: #555;
    line-height: 1.6;
}

.popup-body p {
    margin-bottom: 15px;
}

.popup-body .data-destaque {
    background-color: #f8f9fa;
    border-left: 4px solid #C3051E;
    padding: 15px;
    margin: 20px 0;
    font-weight: bold;
}

.popup-body .informacoes-adicionais {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.popup-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.btn-confirmar {
    background-color: #C3051E;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-confirmar:hover {
    background-color: #800000;
}

.popup-body .contato {
    font-weight: bold;
    color: #C3051E;
}

.popup-body small {
    display: block;
    margin-top: 20px;
    color: #777;
    font-style: italic;
}

@media (max-width: 480px) {
    .popup-content {
        padding: 20px;
        margin: 10px;
    }

    .popup-header h2 {
        font-size: 20px;
    }
}