@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vast+Shadow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Codystar&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ewert&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fascinate+Inline&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Tokyo+Zoo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Prism&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plaster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanalei&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fleur+De+Leah&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');

@font-face {
    font-family: 'Bauhaus 93';
    src: url('./font/Bauhaus_93_Regular.ttf') format('truetype'),
         url('./font/BAUHS93.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Isso ajuda a evitar o "flash de texto não estilizado" */
}

/* Estilo para o corpo */
body {
    background-color: #10131E;
    color: #d3d3d3;
    font-family: 'Courier New', Courier, monospace;
}

/* Estilo para navbar e footer */
header.navbar, footer {
    background-color: #121212;
    box-shadow: 0 4px 2px -2px rgba(0,0,0,0.8);
}

.navbar-brand {
    font-weight: bold;
    color: #00FFFF;
    padding-left: 10px;
}

/* Estilo principal para cabeçalhos */
h1, h2 {
    font-family: 'Bauhaus 93', 'Arial', sans-serif; /* Adicionado fallback */
    font-size: 50px;
    font-weight: bold;
    color: #eaff00;
    text-shadow: 2px 2px 8px #00a6ff;
}
/* Container flexível para manter alinhamento e altura igual dos cartões */
.row.g-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.col-md-6.col-lg-3 {
    flex: 1 1 23%;
    max-width: 23%;
}

/* Estilo para cartões */
.benefit.card, .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: #d3d3d3;
    text-align: center;
    background-color: #1C1C1E;
    /* border: 2px solid #FFD700;*/
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    height: 100%; /* Para igualar alturas automaticamente */
}

.benefit.card img, .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.7);
}

.benefit.card h3, .card h3 {
    color: #00FFFF;
    text-shadow: 0 0 5px #00FFFF;
    margin-top: 10px;
}

.benefit.card p, .card p {
    margin-bottom: 10px;
    color: #d8d8d8;
}

/* Modal de imagem */
#imageModal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

#imgExpandida {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#caption {
    margin: auto;
    display: block;
    width: 75%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Estilo para galeria de imagens */
.gallery-item .img-fluid {
    outline: 1px solid #0ff;
}

/* Switcher de linguagem */
#languageSwitcher {
    margin-top: 15px;
    border-radius: 10px;
    border: 2px solid #FF69B4;
    color: #fff;
    background-color: #121212;
}

/* Estilos adicionais para design responsivo */
@media (max-width: 768px) {
    .btn {
        font-size: 0.9em;
    }

    #imageModal, #imgExpandida {
        width: 90%;
    }

    #caption {
        width: 85%;
    }
}

.home-image {
    max-width: 100%;
    height: auto; /* Permite que a altura se ajuste naturalmente enquanto mantém a proporção */
    margin: 0 auto; /* Centraliza a imagem */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Adiciona uma sombra sutil para realce */
    border-radius: 10px; /* Suaviza as bordas da imagem */
}


/*
    Ajuste de navegação pelos títulos da navbar
*/
section {
    padding-top: 80px; /* Ajuste conforme a altura da sua navbar */
    margin-top: -80px; /* Compensa o padding para manter o visual original */
    margin-bottom: 80px;
    padding-left:20px;
    padding-right:20px;
  }