/* Estilos gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 40px 60px;
    color: white;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 2em;
    margin: 1em;
    background-color: #000;
    border-radius: 8px;
}

img, video {
    max-width: 100%;
    height: auto;
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

#construction {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
}

#construction .construction-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

#construction h1 {
    font-size: 2.5em;
    color: #fff;
}

.logo img {
    max-height: 8.5rem;
}
.btn-pluss {
    overflow: hidden;
    position: relative;
    display: block;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 22px;
    width: 30px;
    margin: 0 auto;
    background-color: white;
    transition: width .3s .5s ease, border-radius 1.1s ease;
}

.btn-pluss a {
    display: block;
    position: relative;
    color: #000000;
    text-decoration: none;
    overflow: hidden;
    padding: 5px;
    border-radius: 5px;
    transition: background-color .5s ease;
}

.btn-pluss a:hover {
    text-decoration: inherit;
    color: white;
    background-color: #000000;
}

.btn-pluss::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    line-height: 20px;
    text-align: center;
    font-size: 1.1rem;
    background-color: #000000;
    color: white;
    transform: translate(-50%, -50%);
    transition: all .3s .5s ease;
    cursor: pointer;
    visibility: visible; /* Mostrar o ícone inicialmente */
    opacity: 1;
}

.btn-pluss ul {
    opacity: 0;
    margin-top: 15px;
    width: 100%;
    margin-left: 0;
    height: 10px;
    transition: all .5s ease;
    text-align: center;
    font-size: 0.9rem;
}

.btn-pluss-wrapper:hover .btn-pluss {
    width: 150px;
    border-radius: 15px;
    padding-bottom: 5px;
    transition: width .3s ease, border-radius .3s ease, padding-bottom .3s ease;
}

.btn-pluss-wrapper:hover .btn-pluss ul {
    opacity: 1;
    height: 100%;
    margin-top: 30px;
    transition: all 1s ease;
}

.btn-pluss-wrapper:hover .btn-pluss li {
    height: 25px;
    transition: height 1s ease;
}

.btn-pluss-wrapper:hover .btn-pluss::after {
    visibility: hidden; /* Ocultar o ícone "+" quando o menu está aberto */
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s ease;
}

.tooltip {
    position: relative;
    padding: 5px;
    border-radius: 5px;
    width: 70px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 15px;
    animation-duration: 3s;
    animation-name: jump;
    animation-iteration-count: infinite;
    background-color: #fff;
    color: #000000;
    transition: all 1s ease;
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    transform: rotate(45deg);
    display: block;
    height: 10px;
    width: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: inherit;
}

.tooltip::before {
    content: '';
    color: white;
}

.btn-pluss-wrapper:hover .tooltip {
    animation-duration: 0s;
    transition: all 1s ease;
    color: white;
    width: 90px;
}

.btn-pluss-wrapper:hover .tooltip::before {
    content: 'Choose!';
    display: block;
    color: #000000;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    transition: all 1s .3s ease;
}

@keyframes jump {
    0% {
        transform: translateY(3px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(3px);
    }
}

.image-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.image-links .row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.image-links a {
    width: 100%; /* Cada imagem ocupa 100% da largura disponível */
    margin-bottom: 20px;
}

.image-links img {
    width: 100%;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 10px;
    transition: transform 0.2s;
}

.image-links img:hover {
    transform: scale(1.1);
}

.image-links img:hover,
.image-links img.touch-hover {
    transform: scale(1.1);
}

.image-item p {
    margin-top: 15px;
    font-size: 1.5rem;
    color: white;
}

.image-item {
    text-align: center;
    margin-right: 15px;
    width: 100%;
}

footer {
    background-color: #000;
    color: white;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 60px;
    height: auto;
}

.firstRights{
    font-weight: bold;
}

.secondRights{
    text-align:  -webkit-center;
    font-size: 12px;
    padding-left: 20%;
    padding-right: 20%;
}

.header-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -3%;
}

.header-title2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -7%;
}

.header-title h1 {
    font-size: 2.5em;
    color: hwb(37 9% 9%);
}

.header-title h3 {
    font-size: 1.5em;
    color: hwb(37 9% 9%);
}

.gallery-section-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: -44px;
}

.gallery4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: -44px;
}

.gallery-item {
    position: relative;
    border: 5px solid white;
    border-radius: 8px;
}

/* .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
} */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.medium {
    grid-column: span 1;
    grid-row: span 1.5;
}

.gallery-item.small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item.vertical {
    grid-row: span 2;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center; /* Center the images */
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    transition: max-width 0.3s, max-height 0.3s;
    vertical-align: middle; /* Vertically center the image */
    position: relative;
    top: 45%;
    transform: translateY(-50%);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-nav {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.lightbox-nav.left {
    left: 0;
    margin-left: 10%;
}

.lightbox-nav.right {
    right: 0;
    margin-right: 10%;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Styles for vertical images */
.lightbox-content.vertical {
    max-width: 50%; /* Adjust as needed */
    max-height: 80vh;
}
/* Ajustes para desktop e tablets */
@media (min-width: 769px) {
    .image-links .row {
        justify-content: space-around; /* Distribui as imagens horizontalmente */
    }
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .image-links .row {
        flex-direction: column; /* Altera para uma coluna de imagens */
    }

    .image-item {
        width: 100%; /* Ocupa toda a largura disponível */
        text-align: center; /* Centraliza o texto */
        margin-bottom: 20px;
    }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 480px) {
    .image-links .row {
        margin-bottom: 0; /* Remove a margem inferior entre as linhas */
    }
}



/* Seção de vídeo */
#video-section {
    padding: 2em;
    margin: 1em;
    background-color: #000;
    border-radius: 8px;
    text-align: center;
}

#video-section h2 {
    font-size: 2em;
    margin-bottom: 1em;
    color: white;
}

#video-section video {
    max-width: 100%;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
}



.titleGestion{
    padding-left: 20%;
    padding-right: 20%;
}

.titleGestion2{
    padding-left: 30%;
    padding-right: 30%;
}

