﻿body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: white;
}

header {
    background-color: #000;
    padding: 0px 280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

body {
    overflow-x: hidden;
}

.logo {
    height: 130px;
}

h1 {
    text-transform: uppercase;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
    font-weight: bold;
}

    nav a {
        color: white;
        text-decoration: none;
        position: relative;
    }

        nav a.active {
            color: red;
        }

            nav a.active::after {
                content: "";
                position: absolute;
                bottom: -20px;
                left: 0;
                width: 100%;
                height: 3px;
                background: red;
            }

.dropdown {
    position: relative;
}

    .dropdown > a::after {
        content: "";
        display: inline-block;
        margin-left: 6px;
        width: 0;
        height: 0;
        vertical-align: middle;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid white;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #444;
    padding: 10px;
    top: 100%;
    left: 0;
    z-index: 999;
    min-width: 180px;
}

    .dropdown-content a {
        display: block;
        padding: 8px 12px;
        color: white;
        text-decoration: none;
    }

        .dropdown-content a:hover {
            background-color: #666;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    animation: zoomEffect 20s infinite linear;
    overflow: hidden;
    max-width: 100%;
}

.mensagem-vazia {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 40px 0;
    color: #ffc107;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.content {
    padding: 40px;
    background-color: black;
    text-align: center;
}

    .content h1 {
        color: red;
        margin-bottom: 10px;
    }

.event-list {
    text-align: left;
    /*  max-width: 800px;*/
    margin: 0 auto;
}

.event {
    margin-bottom: 30px;
}

    .event .date {
        font-weight: bold;
    }

.navigator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background-color: #111;
    padding: 20px 30px;
    border-radius: 20px;
    margin: 40px auto 0 auto;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

    .nav-btn:hover {
        color: #ccc;
        text-decoration: none;
    }

.nav-text {
    text-transform: uppercase;
}
nav a {
    white-space: nowrap;  
}
.arrow {
    background-color: red;
    color: white;
    font-weight: bold;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
}

.divider {
    color: red;
    font-weight: bold;
}

.footer-icons {
    display: flex;
    justify-content: flex-start;
    margin: 40px 280px;
    gap: 20px;
}

    .footer-icons a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
        text-decoration: none;
    }

    .footer-icons .email {
        background: #e74c3c;
    }

    .footer-icons .whatsapp {
        background: #25d366;
    }

    .footer-icons .email::before {
        content: "\f0e0";
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }

    .footer-icons .whatsapp::before {
        content: "\f232";
        font-family: 'Font Awesome 6 Brands';
        font-weight: 400;
    }



.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .hidden-sm {
        display: none !important;
    }

    .hidden-md {
        display: table-cell !important;
    }



    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .logo {
        height: 80px;
        max-width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        padding: 20px;
        align-items: flex-start;
    }

        nav.open {
            display: flex;
        }

    .dropdown-content {
        position: static;
        background-color: #333;
        padding-left: 20px;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .dropdown > a::after {
        border-top: 5px solid red;
    }

    .footer-icons {
        margin: 40px 20px;
        justify-content: flex-start;
    }
}


@media (min-width: 722px) {
    .hidden-sm {
        display: table-cell !important;
    }

    .hidden-md {
        display: none !important;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

td, th {
    border: 1px solid #444;
    padding: 12px 16px;
    vertical-align: top;
    text-align: left;
    color: white;
}

th {
    background-color: #111;
    font-weight: bold;
    font-size: 18px;
}

tr:nth-child(even) {
    background-color: #1a1a1a;
}

tr:hover {
    background-color: #2a2a2a;
}
