body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #252526;
}
.background {
    background-image: linear-gradient(to bottom, 
                                     rgba(0, 0, 0, 0.4) 0%, /* Escurece o topo (opcional) */
                                     
                                     /* 💥 AJUSTE PARA MAIOR SUAVIDADE: Começa a transição mais cedo */
                                     transparent 75%,      /* Agora, a imagem começa a desvanecer em 65% */
                                     
                                     #252526 100%),        /* Termina na cor sólida */
                      url('IMG/DSC00272.jpg');
    /* Adicione estas linhas: */    
    width: 100%; /* Ocupa toda a largura */
    height: 945px; /* Ocupa 100% da altura visível da tela (viewport height) */
    
    /* Outros ajustes que ajudam: */
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


.hero-content {
    color: white;
    text-align: left;
    padding-left: 2rem;
    padding-top: 20rem;
}

.hero-content h1 {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 500%;
    margin-bottom: 0;
}

.hero-content h2 {
    display: flex;
    align-items: center;
    font-weight: 200;
    margin-top: 0;
    font-size: 2rem;

}


.container1 {
    right: 0;
    top: 0;
    position: absolute;
    margin-top: 12rem;
    margin-right: 2rem;



    width: 100%;
    max-width: 37rem;
    color: white;
    background-color: transparent;
    width: 30rem;
    height:10rem;
    border-radius: 75px;
    backdrop-filter: blur(10PX);
    overflow: hidden;
     box-shadow: 0 0 30  rgba(227, 228, 237, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.5s ease 
}


.container1:hover {
     transform: scale(1.05) translateY(-5px);
}

.container2 {
    right: 0;
    top: 0;
    position: absolute;
    margin-top: 30rem;
    margin-right: 2rem;



    width: 100%;
    max-width: 37rem;
    color: white;
    background-color: transparent;
    width: 30rem;
    height:7rem;
    border-radius: 75px;
    backdrop-filter: blur(10PX);
    overflow: hidden;
     box-shadow: 0 0 30  rgba(227, 228, 237, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.5s ease 
}

.container2:hover {
     transform: scale(1.05) translateY(-5px);
}

.text2 {
   font-size: 1.2rem;
    margin: 0;
    text-align: center;
    padding-top: 0.8rem;
}
.text h1 {
    font-size: 4.5rem;
    margin: 0;
    text-align: right;
    padding-right: 2rem;
}

.text p {
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav {
    display: flex;
    align-items: center;
    color: white;

}

.header img {
    width: 5rem;
    margin-left: 1rem;
    margin-top: 0.4rem;
}

nav h2 {
    font-weight: 300;
    font-size: 1rem;
    padding-top: 0.2rem;
    margin-left: 0.5rem;

}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40rem;
    height: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background-color: transparent;
    backdrop-filter: blur(10PX);
    box-shadow: 0 0 30  rgba(227, 228, 237, 0.4);
    margin: 0;
    padding-right: 2rem;
}

.main-menu ul {
    width: 100%;
    list-style: none; /* Tira as bolinhas/quadrados */
    margin: 0;
    justify-content: center;
    align-items: center;
    
    
    /* Usa Flexbox para alinhar os <li> horizontalmente */
    display: flex;
    gap: 50px; /* Espaço entre cada item do menu */
}   

/* 1. Ajuste no Link (Aumenta a área de toque/clique) */
.main-menu a {
    text-decoration: none;
    color: white;
    font-weight: 200;
    
    /* Mantenha o display: inline-block para o transform funcionar */
    display: inline-block; 
    
    /* 💥 NOVO: Adiciona padding para aumentar a hitbox do link */
    padding: 5px 10px; 
    
    transition: transform 0.5s ease, color 0.3s ease, font-weight 0.5s ease;
}

/* 2. O Hover continua no link (a) */
.main-menu a:hover {
    font-weight: 500;
    color: #f4c121;
    transform: translateY(-5px);
}

.esfera1, .esfera2, .esfera3 {
    /* 1. Definir Tamanho Igual */
    width: 55px;  
    height: 55px;
    
    /* 2. Definir o Formato Circular */
    /* Isso transforma o quadrado/retângulo em um círculo perfeito */
    border-radius: 50%; 
    
    /* 3. Definir um Fundo (ou a div será invisível) */
    background-color: #252526; /* Exemplo: Azul */
    
    /* 4. Alinhar a Imagem SVG dentro do círculo (Recomendado) */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente o conteúdo */
    align-items: center; 
    transition: transform 0.5s ease;/* Centraliza verticalmente o conteúdo */
}

.esfera1:hover,
.esfera2:hover,
.esfera3:hover {
    transform: translateY(-5px);
}

/* Redimensionar a imagem SVG para caber dentro da esfera */
.esfera1 img, .esfera2 img, .esfera3 img {
    /* Garante que o ícone/imagem não ultrapasse o tamanho da esfera */
    max-width: 50%; 
    max-height:60%;
    height: auto;
    padding-right: 1rem;
    padding-bottom: 0.3rem;
}

/* Opcional: Para alinhar as esferas lado a lado */
.esferas {
    display: flex;
    gap: 20px; /* Espaçamento entre as esferas */
    justify-content: center; /* Centraliza o grupo de esferas na tela */
    padding-right: 1rem;
}

.container3 {
    color: white;
    font-size: 2rem;
    padding-top: 3rem;
    display: flex   ;
    justify-content: center;
}


.navegacao1, .navegacao2 {
     width: 55px;  
    height: 55px;
    
    /* 2. Definir o Formato Circular */
    /* Isso transforma o quadrado/retângulo em um círculo perfeito */
    border-radius: 50%; 
    
    /* 3. Definir um Fundo (ou a div será invisível) */
    background-color: #ffffff; /* Exemplo: Azul */
    
    /* 4. Alinhar a Imagem SVG dentro do círculo (Recomendado) */
    display: flex;
    justify-content: flex-end; /* Centraliza horizontalmente o conteúdo */
    transition:  color 0.5s ease;
    color: black;
    
}

.navegacao0 {
    width: 58rem;
    display: flex;
    /* Removemos o gap para que o alinhamento do margin: auto funcione */
    /* gap: 7rem; */ 
    /* Esta propriedade joga TODO o grupo de elementos para o final (direita) */
    justify-content: flex-end; 
    align-items: center; /* Boa prática para centralizar verticalmente também */
}

.navegacao1 {
    /* Garante que o .navegacao1 não se expanda e ocupe espaço */
    flex-shrink: 0; 
     background-color: #f4c121;
     transition: transform 0.5s ease;
}

.navegacao0 span {
    /* O SEGREDO ESTÁ AQUI: */
    /* O margin-left e margin-right com 'auto' absorvem o espaço disponível */
    /* forçando o span a ficar CENTRALIZADO entre os itens 1 e 2 */
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    
    /* Se precisar de um espaçamento entre o span e as divs, use padding ou o gap */
    /* Mas para centralização perfeita no meio, o 'margin: auto' é ideal. */
}

.navegacao2 {
    /* Garante que o .navegacao2 não se expanda e ocupe espaço */
    flex-shrink: 0;
    background-color: #f4c121;
    transition: transform 0.5s ease;
}

.navegacao2 img {
    transform: rotate(180deg);
}

.navegacao1:hover {
 transform: translateY(-5px);
}

 .navegacao2:hover {
 transform: translateY(-5px);
}

.container4 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #252526;
    flex-direction: column;
}

button {
    font-family: "Rubik", sans-serif;
    background-color: transparent;
    border: 1px solid white;
    color: inherit;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    height: 50px;
    transition: 0.5s ease;
}

button:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.4);
    transition-delay: 0 !important;
}

.container {
    position: relative;
    width: 1366px;
    height: 768px;
    border-radius: 70px;
    overflow: hidden;
    background-color: #767676;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    
}

.container .content {
    width: 100%;
    display: flex;
}

.content .introduce {
    position: relative;
    width: 40%;
    height: 100%;
    z-index: 20;
}

.introduce .wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    padding: 0 25px 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

.introduce .wrapper span {
    overflow: hidden;
}

.introduce .wrapper span > * {
    transition: 0.5s ease;
    opacity: 0;
    transform: translateY(300px);
    transition-delay: calc((3 - var(--idx)) * 0.1s);
}

.introduce .wrapper.active {
    pointer-events: all;
}

.introduce .wrapper.active span > * {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--idx) * 0.1s);
}

.introduce:not(.place) {
    font-family: "Rubik", sans-serif;
}

.introduce .country {
    font-size: 1.5rem;
    font-weight: 400;
}

.introduce .place {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-top: 165px;
}

.introduce .describe {
    font-size: 1rem;
    margin-top: 8px;
    font-weight: 300;
}

.introduce .discover-button {
    width: 250px;
    height: 50px;
    border-radius: 50px;
    margin-top: 20px;
}

.content .thumbnail-list {
    position: relative;
    height: 300px;
    flex: 1;
}

.thumbnail-list .wrapper {
    position: relative;
    z-index: 10;
    height: 300px;
}

.thumbnail-list .wrapper .thumbnail {
    position: absolute;
    transition: 0.75s cubic-bezier(0.6, 0.1, 0.3, 1);
    height: 300px;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
    transform: translateX(calc(var(--idx) * 230px));
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
    
}

.thumbnail-list .wrapper .thumbnail.zoom {
    width: 1366px;
    height: 768px;
    transform: translate(-546px, -318px);
    filter: brightness(40%);
    box-shadow: none;
}



.introduce .wrapper:nth-child(4) .place  {
    font-size: 4rem;
}

.introduce .wrapper:nth-child(5) .place  {
    font-size: 4rem;
}

.introduce .wrapper:nth-child(10) .place  {
    font-size: 3rem;
}

.introduce .wrapper:nth-child(14) .place  {
    font-size: 3.50rem;
}



.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center ;
}

.container .navigation {
    margin-left: 40%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 50px 50px 0;
    z-index: 20;
}

.navigation .next-button {
    width: 180px;
    border-radius: 60px;
}

.navigation .line {
    flex: 1;
    height: 2px;
    background-color: #ffffff;
}

.navigation .ordinal-number {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    overflow: inherit;
}

.ordinal-number h2 {
    position: absolute;
    font-family: "Bebas Neue", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(200%);
    transition: 0.5s ease;
}

.ordinal-number h2.active {
    transform: unset;
}

.container5 {
    padding-top: 10rem;
}

.container5_1 {
    display: flex;
    justify-content: space-around;
}

.espaco1 {
    width: 570px;
    height: 340px;
    background-color: #ffffff;
    border-radius: 50px;
}
.espaco1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px; 
    object-position: top;
    transition: transform 0.5s ease;
    /* Corta as bordas da imagem para preencher a div sem esticar */
}

.espaco1:hover img {
    transform: scale(1.01); /* 1.0 é o tamanho normal. 1.2 aumenta 20% */
}

.espaco2 {
    width: 372px;
    height: 345px;
    background-color: #ffffff;
    border-radius: 50px;
}


.espaco2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px; 
    object-position: top;
    transition: transform 0.5s ease;
    /* Corta as bordas da imagem para preencher a div sem esticar */
}

.espaco2:hover img {
    transform: scale(1.01); /* 1.0 é o tamanho normal. 1.2 aumenta 20% */
}

.espaco3 {
    width: 805px;
    height: 930px;
    background-color: #ffffff   ;
    border-radius: 50px;

}

.espaco3 video {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    
    /* O vídeo preenche tudo, cortando excessos, igual à imagem */
    object-fit: cover; 
    
    /* Alinha o topo do vídeo, igual fizemos antes */
    object-position: top; 
    
    /* Se quiser manter o zoom ao passar o mouse */
    transition: transform 0.5s ease;
}

/* Efeito de Zoom opcional */
.espaco3:hover video {
    transform: scale(1.02);
}


.espaco4 {
    width: 573px;
    height: 565px;
    background-color: #ffffff;
    border-radius: 50px;
    margin-top: 1.5rem;
}


.espaco4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px; 
    object-position: 50%;
    transition: transform 0.5s ease;
    /* Corta as bordas da imagem para preencher a div sem esticar */
}

.espaco4:hover img {
    transform: scale(1.01); /* 1.0 é o tamanho normal. 1.2 aumenta 20% */
}


.espaco5 {
    width: 380px;
    height: 574px;
    background-color: #ffffff;
    border-radius: 50px;
    margin-top: 1rem;
}


.espaco5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px; 
    object-position: 50%;
    transition: transform 0.5s ease;
    /* Corta as bordas da imagem para preencher a div sem esticar */
}

.espaco5:hover img {
    transform: scale(1.01); /* 1.0 é o tamanho normal. 1.2 aumenta 20% */
}


.container6 {
    padding-top: 5rem;
    color: #ffffff;
    text-align: center;
    display: flex; /* Define o pai como um container flexível *//* Distribui o espaço entre os filhos */
    /* Ou use 'flex-end' se você quer o seu container colado na direita */
    width: 100%; /* Ocupa a largura total da tela */
}

.titulo {
    text-align: center;
   width: 80%;
   margin: 0 auto;

}

.container6 span {
    color: #f4c121;
    
    text-align: center;
   

}

.container6 p {
    text-align: center;
}

.container7 {
    display: flex; /* 1. Ativa o Flexbox */
    
    /* 2. Distribui o espaço: empurra o primeiro item para a esquerda e o último para a direita */
    /* Isso garante que o texto fique à esquerda e o .socios à direita, com o máximo de espaço entre eles. */
    justify-content: space-between; 

    /* Garante que o container use toda a largura para que o alinhamento funcione */
    width: 100%;
}

.socios {
    display: flex;
    width: 805px;
    height: 790px;
    background-color: #ffffff   ;
    border-radius: 50px;
    position: relative;
    margin-right: 1rem;
}

.socios img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px; 
    /* Corta as bordas da imagem para preencher a div sem esticar */
}

.sociostxt {
    color: #ffffff;
    padding-left: 2rem;
    font-size: 1.9rem;
    width: 50%;
}

.carrossel8 {
    padding-top: 13rem;
    color: #ffffff;
    text-align: center;
    display: flex; /* Define o pai como um container flexível *//* Distribui o espaço entre os filhos */
    /* Ou use 'flex-end' se você quer o seu container colado na direita */
    width: 100%; 
}

.carrossel8 h1 {
    
    text-align: center;
   width: 80%;
   margin: 0 auto;
   font-size: 5rem;
}

.carrossel9 span {
    color: #f4c121;
    display: flex; 
    align-items: center;
    justify-content: center;
    
    /* Padding padrão para telas grandes */


}


.carousel {
    margin: 100px auto;
    width: 90%;
    border: 5px solid #323233;
    display: flex;
    overflow-x: auto;
    border-radius: 50px;
    margin-top: 10rem;
}

.carousel::-webkit-scrollbar {
    display: none;

}

.group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 5s infinite linear;
    padding-right: 1em;
    padding-bottom: 5rem;
}

.card {
    flex: 0 0 5em;
    height: 5em;
    padding: 1em;
    background: #252526;
    font-size: 3rem;
    border-radius: 2rem;
    text-align: center;
    align-content: center;
}

@keyframes spin {
    from {translate:0;}
    to {translate =: -100%;}

}

.group img {
    width: 120%;
    height: 140%;
    object-fit: cover;
    border-radius: 35px; 
    /* Corta as bordas da imagem para preencher a div sem esticar */
}

.container11 {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}
.ul {
    list-style: none;
}

.footer {
    background-color: black;
    padding: 70px 0;
}

.footer-col {
    width: 25%;
    padding: 0 47px;
}

.footer-col h4 {
    position: relative;
    font-size: 18px;
    color: #f4c121;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #f4c121;
    height: 2px;
    box-sizing: border-box;
    width: 100px;
}

.footer-col ul  li:not(:last-child){
    margin-bottom: 10px;
}

.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: rgb(163, 162, 162);
    font-weight: 400;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a::hover{
    color: white;
    padding-left: 1px;
}

.footer-col .social-links a{
    display: inline-block;
    height: 45px;
    width: 45px;
    background-color: rgb(225, 255, 225, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.5s ease;
}

.footer-col .social-links  img {
    padding-top: 5px;
}

.footer-col .social-links a:hover{
    color: black;
    background-color: white;
}

@media(max-width: 767px){
    .footer-col{
        width: 100%;
    }
}