/* CARROSSEL E GALERIA */
.carrossel-galeria {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.container-fotos {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.nome-da-foto {
    position: relative;
    flex: 0 0 auto;
    margin: 25px;
    height: 350px;
    width: 250px;
}

.nome-da-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    border-radius: 20%;
    
}

.nome-da-foto:hover img {
    transform: scale(1.1);
}

.nome-da-foto.foto-selecionada img {
    z-index: 1;
    transform: scale(1.2);
}

/* Estilo para a legenda abaixo das imagens */
.nome-da-foto .legenda {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #EFDF5D;
    width: 90%;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold; /* Adiciona negrito */
    font-style: italic; /* Adiciona itálico */
    border-radius: 50px;
}


/* Botões de navegação */
.botao-avançar,
.botao-voltar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px;
    background-color: #ccc;
    border: none;
    z-index: 10;
}

.botao-avançar {
    right: 10px;
}

.botao-voltar {
    left: 10px;
}

/* Media query para dispositivos móveis */
@media (max-width: 768px) {
    .nome-da-foto {
        height: 250px;
        width: 180px;
        margin: 10px 10px;
    }

    .botao-avançar,
    .botao-voltar {
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .nome-da-foto {
        height: 200px;
        width: 140px;
        margin: 5px 5px;
    }

    .botao-avançar,
    .botao-voltar {
        padding: 5px;
        font-size: 14px;
    }
}

.fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 5px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.fullscreen-overlay img {
    cursor: grab;
}

.fullscreen-overlay img:active {
    cursor: grabbing;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: gray;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1001;
    border-radius: 10px;
}

.botao-estetica-proximo {
    border-radius: 30px;
    color: #efdf5d;
    background-color: #000;
    font-style: italic;
    font-weight: bold;
}

.botao-estetica-anterior {
    border-radius: 30px;
    color: #efdf5d;
    background-color: #000;
    font-style: italic;
    font-weight: bold;
}

/* Estilo para a legenda na imagem ampliada */
.fullscreen-caption {
    color: #efdf5d;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 25px;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 35px;
    font-weight: bold;
    font-style: oblique;
}

/* Logo inicia */

.logo-responsive {
    max-width: 100px; /* Define o tamanho máximo da largura */
    width: 100%; /* Ajusta a largura para ser responsiva */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove o espaço em torno da imagem */
    margin: 0 auto; /* Centraliza a imagem */
}
