/* Estilos gerais */
* {
    text-decoration: none;
    font-family: "Montserrat", sans-serif;

}

body {
    margin: 0;
    padding: 0;
    background-color: #f9f5e8;
}

/* Cabeçalho */
header {
    background-color: #003399;
    padding: 15px 0;
    text-align: center;
    margin-bottom: -20px;
}

.logo {
    max-width: 150px;
}

/* Menu de navegação */
nav {
    padding: 0;
    margin: 0px 100px;
    /* max-width: 1000px; */
    max-width: 100%;
}

.menu-container {
    background: linear-gradient(to bottom, #003399, #001a66);
    border-radius: 25px;
    padding: 10px 20px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo-menu {
    height: 100px;
    margin-right: 5 0px;
    margin-left: 50px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-around;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 10px;
    display: block;
    transition: all 0.3s ease;
    white-space: nowrap;
}

nav ul li a:hover {
    color: #ffc107;
}

/* Seção principal */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.social-icons i {
    padding: 15px;
    border-radius: 50%;
    font-size: 15px;
    color: white;
    transition: 300ms ease-out;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.email-contato {
    font-size: 24px;
}

/* Seção de bolões */
.boloes-section {
    display: flex;
    /* padding: 30px; */
    margin: 20px 0;
}

.contatoElocalizacao {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.localizacao {
    width: 50%;
}

.contato h1 {
    font-size: 50px;
    width: 70%;
    color: #000066;

}

.contato {
    width: 50%;
}

.boloes-title {
    color: #000066;
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.loteria-name {
    color: #0066cc;
    font-weight: bold;
}

/* Cards de bolões */
.boloes-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.bolao-card {
    width: 80%;
    min-height: 450px;
    background-color: #003399;
    background-image: radial-gradient(at center center, #00217E 55%, #0F51BA 100%);

    color: white;
    /* padding: 30px; */
    border-radius: 25px;
    margin-bottom: 20px;
    overflow: hidden;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.bolao-card img {
    width: 100%;
    /* height: 100%; */
    background-size: cover;
    margin-top: auto;
}

.bolao-card h3 {
    color: #ffc107;
    font-size: 35px;
    margin-bottom: 15px;
    font-weight: 900;
    text-align: center;
}

.fa-star {
    font-size: 40px;


}

.bolao-btn {
    background-color: #ffc107;
    color: white;
    width: 80%;
    height: 60px;
    align-items: center;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 27px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    transition: background-color 0.3s ease;

}

/* Conteúdo da política */
.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.policy-content h1 {
    color: #003399;
    text-align: center;
    margin-bottom: 30px;
}

.policy-content h2 {
    color: #003399;
    margin-top: 30px;
}

.policy-content p,
.policy-content ul {
    line-height: 1.6;
}

.policy-content ul {
    margin-left: 20px;
}

/* Conteúdo dos termos */
.terms-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: #003399;
    color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 30px;
}

.terms-content h1 {
    color: #ffc107;
    text-align: center;
    margin-bottom: 30px;
}

.terms-content h2 {
    color: #ffc107;
    margin-top: 30px;
}

.terms-content p,
.terms-content ul {
    line-height: 1.6;
}

.terms-content ul {
    margin-left: 20px;
}

/* Rodapé com logos de jogo responsável */
.responsible-gaming {
    background-color: #002277;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.responsible-gaming img {
    height: 50px;
    margin: 0 15px;
}

/* Rodapé */

.iconLogo img {
    width: 45%;
}

.iconLogo {
    /* background-color: red; */
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: -5%;
}

.social-icons i:hover {
    cursor: pointer;
    transform: translateY(-10px);
}

footer {
    background-color: #001144;
    color: white;
    /* text-align: center; */
    margin-top: 30px;
    display: flex;
    padding: 25px;
    justify-content: center;
    align-items: center;
    /* justify-content: space-around; */
}

.footer-text {
    font-size: 14px;
    margin-left: -5%;
}

/* Animação para troca de loterias */
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.lottery-name {
    display: inline-block;
    animation: fadeInOut 4s infinite;
}

.lottery-name:nth-child(2) {
    animation-delay: 4s;
    display: none;
}

.lottery-name:nth-child(3) {
    animation-delay: 8s;
    display: none;
}

.lottery-name:nth-child(4) {
    animation-delay: 12s;
    display: none;
}

@media screen and (max-width: 1024px) {
    nav {
        margin: 0 20px;
    }

    .menu-container {
        flex-direction: column;
        height: auto;
        padding: 25px;
        text-align: center;
    }
    .social-icons{
        margin-bottom: 25px;
        justify-content: center;
    }
    .logo-menu {
        margin: 0 auto 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 768px) {
    .main-content {
        padding: 15px;
    }

    .boloes-section {
        flex-direction: column;
        align-items: center;
    }

    .bolao-card {
        width: 100%;
    }

    .contatoElocalizacao {
        flex-direction: column;
        align-items: center;
    }

    .contato,
    .localizacao {
        width: 100%;
        text-align: center;
    }

    iframe {
        width: 100% !important;
        height: 300px !important;
    }

    .contato h1 {
        font-size: 32px;
        width: 100%;
    }

    .email-contato {
        font-size: 18px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-text {
        margin: 0;
    }

    .iconLogo img {
        width: 70%;
    }
}

@media screen and (max-width: 480px) {
    .bolao-btn {
        width: 100%;
        font-size: 20px;
    }

    .bolao-card h3 {
        font-size: 24px;
    }

    .fa-star {
        font-size: 30px;
    }

    .social-icons i {
        font-size: 20px;
        padding: 10px;
    }
}