/**
 * Calendário de Eventos 2026 - Angra dos Reis
 * Estilos customizados para a página de eventos
 */

/* Fontes */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================================================================
   Estilos Base
   ========================================================================== */

body.calendario-eventos {
    font-family: 'Montserrat', 'Outfit', 'Source Sans Pro', sans-serif;
    color: #ffffff;
    background: linear-gradient(142deg, rgba(34, 63, 153, 1) 0%, rgb(42, 72, 165) 100%);
    background-attachment: fixed;
}

/* ==========================================================================
   Seção Topo / Header
   ========================================================================== */

.calendario-eventos .topo-section {
    margin-top: 160px;
    margin-bottom: 160px;
    display: flex;
    align-items: center;
}

.calendario-eventos .img-titulo {
    width: 100%;
    height: fit-content;
    z-index: 3;
}

/* ==========================================================================
   Main / Programação
   ========================================================================== */

.calendario-eventos main.main-content {
    background-image: url('../images/trapezio.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    padding-bottom: 200px;
}

.calendario-eventos .programacao-section {
    position: relative;
    z-index: 10;
}

.calendario-eventos .programacao-section p {
    font-size: 15pt;
    margin-bottom: 24px;
    text-align: center;
    line-height: normal;
}

.calendario-eventos .programacao-section p.obs {
    font-size: 15pt;
    margin-bottom: 40px;
}

.calendario-eventos .programacao-section p.obs a,
.calendario-eventos .programacao-section p.obs a:visited,
.calendario-eventos .programacao-section p.obs a:active,
.calendario-eventos .programacao-section p.obs a:focus,
.calendario-eventos .programacao-section p.obs a:hover {
    color: #fdf4d2;
    text-decoration: none;
}

/* ==========================================================================
   Títulos
   ========================================================================== */

.calendario-eventos h2.titulo-temporada {
    font-family: 'Montserrat', 'Merienda', sans-serif;
    font-size: 4rem;
    letter-spacing: -4px;
    text-align: center;
    font-weight: 600;
    font-style: italic;
    margin: 40px 0 !important;
    margin-bottom: 10px;
}

.calendario-eventos h3.titulo-mes {
    font-family: 'Montserrat', 'Merienda', sans-serif;
    font-size: 24pt;
    letter-spacing: -1px;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

/* ==========================================================================
   Data dos Eventos
   ========================================================================== */

.calendario-eventos .data-evento {
    color: #AEE0F4;
    font-weight: 600;
}

/* ==========================================================================
   Badges de Tipo de Evento
   ========================================================================== */

.calendario-eventos .badge-evento {
    display: inline-block;
    background: #00F;
    color: #FFF;
    font-size: 9pt;
    font-weight: 600;
    padding: 0px 4px;
    border-radius: 3px;
}

.calendario-eventos .badge-cultural {
    background-color: #E64190;
}

.calendario-eventos .badge-esportivo {
    background-color: #F0821F;
}

.calendario-eventos .badge-religioso {
    background-color: #D2AB66;
}

.calendario-eventos .badge-turistico {
    background-color: #A1C73D;
}

.calendario-eventos .badge-comunitario {
    background-color: #D2AB66;
}

.calendario-eventos .badge-gastronomico {
    background-color: #E51B28;
}

.calendario-eventos .badge-corporativo {
    background-color: #9fcff1;
    color: #2a57a4;
}

/* ==========================================================================
   Local do Evento
   ========================================================================== */

.calendario-eventos .local-evento {
    font-size: 13pt;
    font-weight: 200;
    font-style: italic;
    display: block;
}

/* ==========================================================================
   Legenda
   ========================================================================== */

.calendario-eventos .legenda-section {
    margin-top: 100px;
}

.calendario-eventos .legenda-section p {
    font-size: 12pt;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.calendario-eventos .footer-eventos {
    background-color: #FFF;
    padding-top: 80px;
    padding-bottom: 80px;
}

.calendario-eventos .img-footer {
    width: 80%;
    max-width: 250px;
    height: fit-content;
}

/* ==========================================================================
   Botão Voltar ao Topo
   ========================================================================== */

.calendario-eventos .btn-go-top {
    position: fixed;
    right: 3%;
    bottom: 3%;
    opacity: 0;
    visibility: hidden;
    font-family: sans-serif;
    font-size: 14pt;
    line-height: 0;
    color: #0d6efd;
    background-color: #ffc107;
    border: none;
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, .4) 0.1em 0.1em 0.1em;
    outline: none;
    cursor: pointer;
    padding: 18px 18px;
    margin: 0;
    z-index: 100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.calendario-eventos .btn-go-top.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
    .calendario-eventos .topo-section {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

@media (max-width: 992px) {
    .calendario-eventos .programacao-section p.obs {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .calendario-eventos .topo-section {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .calendario-eventos h2.titulo-temporada {
        font-size: 3.4rem;
    }

    .calendario-eventos h3.titulo-mes {
        margin-bottom: 15px;
        margin-top: 0;
    }

    .calendario-eventos .programacao-section p {
        font-size: 15pt;
    }
}

@media (max-width: 576px) {
    .calendario-eventos .topo-section {
        margin-top: 50px;
        margin-bottom: 30px;
        flex-direction: column;
    }

    .calendario-eventos .img-titulo {
        width: 80%;
    }
}

@media (max-width: 380px) {
    .calendario-eventos h2.titulo-temporada {
        font-size: 3rem;
    }

    .calendario-eventos h3.titulo-mes {
        margin-bottom: 15px;
        margin-top: 0;
    }

    .calendario-eventos .programacao-section p.obs {
        margin-bottom: 10px;
    }
}
