@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
/* Importando uma fonte moderna, como Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');




body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Evita barra de rolagem horizontal */
    font-family: 'Montserrat', sans-serif; 
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0f0f0; /* Cinza clarinho */
    margin: 0;
    font-family: 'Montserrat', sans-serif; 
    color: #333; /* Cor do texto para um bom contraste */
    scrollbar-width: auto; /* Para Firefox */
    scrollbar-color: #555 #e0e0e0; /* Cor do thumb (scroll) e do fundo (track) */
  }

/* Configuração da seção inicial com imagem de fundo */
.hero-section {
    height: 95vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;    
}

.background-image {
    position: absolute; /* Permite sobrepor imagens */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out; /* Transição suave de opacidade */
    opacity: 0; /* Inicia invisível */
}

.background-image.active {
    opacity: 1; /* Imagem ativa visível */
}


.hero-text {
    z-index: 3;
    position: relative;
}

/* Estilo para o texto na imagem de fundo */
.hero-text h1, .hero-text h2 {
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s ease-out forwards;
}

.hero-text h1 {
    font-size: 2.5rem;
    animation-duration: 2s;
}

.hero-text h2 {
    font-size: 5rem;
    animation-duration: 2.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Ajustes de tamanho nas diferentes telas */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }
}


/* Logo no topo da tela, centrado */
.logo-topo {
    position: absolute;
    top: 10px; /* Ajusta conforme necessário */
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.logo-topo img {
    width: 110px; /* Ajusta o tamanho do logo */
}

/* Indicador de scroll na parte inferior, animação de quadrado */
.scroll-indicator {
    position: absolute;
    bottom: 20px; /* Posiciona na parte inferior */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* Forma luxuosa animada */
.luxury-shape {
    position: absolute;
    bottom: 40px; /* Posiciona na parte inferior */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    animation: fade-in 1.5s ease-in-out infinite;
    z-index: 1000;
}

.luxury-shape svg {
    width: 60px;
    height: 60px;
    stroke: #fff;
}

/* Animação de fade-in */
@keyframes fade-in {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

#nav-links .home-link {
    color: #DCCA98 !important; /* Substitua #ff5733 pela cor que deseja */

}






/* Estilo para o item "CATÁLOGO" que contém o submenu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none; /* Oculta o submenu por padrão */
    position: absolute;
    top: 100%; /* Exibe logo abaixo do item "CATÁLOGO" */
    left: 0;
    background-color: white; /* Fundo branco */
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 10;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Exibe o submenu quando o item "CATÁLOGO" é hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Estilos para os itens dentro do submenu */
.dropdown-menu li {
    padding: 10px 20px; /* Espaçamento interno */
}

.dropdown-menu li a {
    color: #505050;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.dropdown-menu li a:hover {
    color: #DCCA98; /* Cor de hover */
    font-weight: bold; /* Torna o texto em negrito no hover */
}


/* Remove as bolinhas dos itens de lista */
.nav-links li, 
.dropdown-menu li {
    list-style: none; /* Remove os marcadores de lista (bolinhas) */
}


/* Ajusta a cor do submenu quando a navbar estiver com fundo */
.navbar.scrolled .dropdown-menu {
    background-color: white; /* Mantém o fundo branco quando a navbar rolar */
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none; /* Inicialmente oculto */
        width: 100%; /* Ocupa toda a largura */
        background-color: transparent; /* Fundo transparente */
        box-shadow: none;
        padding: 0;
    }

    /* Exibe o submenu no menu lateral quando aberto */
    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        padding: 10px 0; /* Ajuste para dispositivos móveis */
    }
}



/* Navbar transparente */
.navbar {
    width: 100%;
    padding: 15px;
    position: fixed;
    top: -120px; /* Aumente para garantir que a borda saia da tela */
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: top 0.5s ease-in-out, background-color 0.5s ease;
    z-index: 10;
}




.navbar.scrolled {
    background-color: rgb(255, 255, 255); /* Fica mais opaca ao fazer scroll */
    border-bottom: 1px solid #665e5e2f ;
}

/* Logo na navbar */
.logo-nav img {
    margin-top: 10px;
    width: 110px; /* Tamanho do logo da navbar */
}

/* Links da navbar */
.nav-links {
    align-items: center; /* Garante alinhamento vertical */
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    margin-right: 35px;
    color: #505050;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif; 
}

.nav-links li a:hover {
    color: #DCCA98;
    font-weight: bold; /* Cor de hover */
}

/* Conteúdo da página após a hero section */
.conteudo {
    padding: 100px;
    background-color: #f4f4f4;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    color: #333;
}


/* Estilo para o ícone do WhatsApp */
.img-icon-a {
    position: fixed; /* Fixa o ícone no canto */
    bottom: 20px; /* Ajusta a distância do fundo */
    left: 20px; /* Ajusta a distância da lateral esquerda */
    z-index: 999; /* Garante que o ícone fique sobre outros elementos */
    border-radius: 50%; /* Faz o ícone ser circular */
    padding: 10px; /* Espaçamento interno ao redor do ícone */
}

.img-icon {
    display: block; /* Garante que a imagem seja exibida como bloco */
}

/* Remove os estilos padrão do link */
.img-icon-a.no-focus {
    outline: none;
    box-shadow: none;
}

.img-icon-a img {
    display: block;
    width: auto; /* Ajuste se necessário */
    height: 34px; /* Altura do ícone */
}



/* Estilo do seletor de idioma dentro da navbar */
.language-selector {
    margin-left: auto; /* Empurrar o seletor para o final da lista */
    position: relative; /* Necessário para a posição da seta */
}

.language-selector select {
    background: none; /* Remove qualquer fundo */
    font-size: 18px;
    color: #505050; /* Cor do texto padrão */
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    padding: 10px 35px 10px 15px;/* Espaçamento para o conteúdo */
    appearance: none; /* Remove o estilo padrão do navegador */
    border: none; /* Remove a borda */
    background-color: transparent; /* Fundo transparente */
    position: relative;
    outline: none; /* Remove o contorno padrão ao focar */
    transition: none; /* Remove qualquer transição de cores */
}

.language-selector select:focus, 
.language-selector select:hover {
    color: #505050; /* Mantém a cor do texto inalterada no hover ou foco */
    background-color: transparent; /* Nenhuma alteração de fundo */
    border: none; /* Sem borda no hover ou foco */
}

.language-selector select option {
    background-color: transparent; /* Fundo transparente para as opções */
    color: #505050; /* Cor do texto nas opções */
    padding: 10px;
}



/* Ajuste para quando a navbar estiver com background */
.navbar.scrolled .language-selector select {
    color: #000; /* Ajusta a cor do seletor quando a navbar estiver branca */
}

.navbar.scrolled .language-selector::after {
    color: #000; /* Ajusta a cor da seta quando a navbar estiver branca */
}

.language-selector {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.selected-language {
    display: flex;
    align-items: center;
}

.language-icon {
    width: 25px;
    height: 20px;
    margin-right: 5px;
}

/* Seta ao lado da bandeira principal */
.language-arrow {
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333; /* Cor da seta */
}

/* Menu de idiomas oculto por padrão */
.language-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 10;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Exibe o menu quando ativado */
.language-menu.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}

.language-option:hover {
    background-color: #f0f0f0; /* Efeito de hover */
}



/* Media Queries - Estilos para telas menores */
@media (max-width: 768px) {
    /* Esconde os links da navbar em telas menores */
    .nav-links {
        display: none; /* Oculta os links por padrão */
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 60%;
        background-color: rgb(255, 255, 255); /* Fundo do menu lateral */
        border-left: 1px solid #665e5e2f;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    /* Estilo quando o menu está aberto */
    .nav-links.open {
        display: flex; /* Mostra os links ao abrir o menu */
        transform: translateX(0); /* Move o menu para dentro da tela */
    }

    /* Ícone do menu hambúrguer */
    .hamburger {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
    }

    .hamburger span {
        background-color: #333;
        height: 3px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animação para o ícone hambúrguer quando o menu está aberto */
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Estilo personalizado para o seletor de idioma */
    .language-selector {
        right: 10px;
        display: flex;
        flex-direction: column; /* Coloca idiomas em coluna */
        align-items: center; /* Centraliza verticalmente */
        justify-content: center;
        margin-top: 20px; /* Espaçamento do topo */
        width: 100%; /* Ocupa toda a largura do container */
        position: relative; /* Necessário para alinhar a seta com o texto */
    }


    /* Ajuste do seletor de idioma na tela menor */
    .hamburger + .language-selector {
        position: absolute;
        bottom: 15px;
        left: 0;
        right: 0;
        justify-content: center;
    }
}


/* Media Queries - Estilo para dispositivos com resolução de 769px até 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Esconde os links da navbar em telas de 769px a 1024px */
    .nav-links {
        display: none; /* Oculta os links por padrão */
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 60%;
        background-color: rgb(255, 255, 255); /* Fundo do menu lateral */
        border-left: 1px solid #665e5e2f;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    /* Exibe o menu ao abrir */
    .nav-links.open {
        display: flex;
        transform: translateX(0); /* Move o menu para dentro da tela */
    }

    /* Ícone do menu hambúrguer */
    .hamburger {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
    }

    .hamburger span {
        background-color: #333;
        height: 3px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animação do ícone hambúrguer quando o menu está aberto */
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Ajuste do seletor de idioma */
    .language-selector {
        right: 10px;
        display: flex;
        flex-direction: column; /* Coloca idiomas em coluna */
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
        position: relative;
    }

    /* Ajuste para seletor de idioma na tela menor */
    .hamburger + .language-selector {
        position: absolute;
        bottom: 15px;
        left: 0;
        right: 0;
        justify-content: center;
    }
}




/* Estilo para páginas com a navbar estática */
.navbar-static {
    position: fixed; /* Navbar fixa */
    top: 0; /* Posiciona no topo */
    left: 0;
    width: 100%; /* Ocupa toda a largura */
    background-color: rgb(255, 255, 255); /* Pode ajustar o fundo se necessário */
    border-bottom: 1px solid #665e5e2f; /* Borda inferior opcional */
    z-index: 1000; /* Garante que a navbar esteja acima de outros elementos */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px; /* Controle o espaço entre imagem e texto */
    padding: 0;
    height: 90vh; /* Altura total da tela */
}

.image-container {
    max-width: 900px; /* Controle da largura da imagem */
    flex: 1;
}

.image-container img {
    width: 100%;
    height: auto;
}

.text-container {
    max-width: 500px; /* Largura controlada para o texto */
    
    flex: 1;
}

.text-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
}

.text-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
   
}



.phone-icon {
    color: #DCCA98; /* Cor apenas para o ícone */
}

.text-container a {
    font-size: 18px;
    text-decoration: none;
    color: #DCCA98;
    font-weight: bold;
    text-align: left;
    display: block; /* Centraliza o link 'a' */
}

.text-container a:hover {
    text-decoration: underline;
}


/* Media Query para telas menores (tablet e celular) */
@media screen and (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 30px;
    }

    .image-container, .text-container {
        max-width: 95%; /* Aumenta para ocupar quase toda a tela */
        flex: none;
    }

    .text-container h2 {
        font-size: 36px;
        text-align: center; /* Centraliza o título */
    }

    .text-container p, .text-container a {
        font-size: 18px;
        text-align: center; /* Centraliza o texto */
    }
}

/* Media Query para telas bem pequenas (celular pequeno) */
@media screen and (max-width: 600px) {
    .container {
        padding: 10px;
        margin-top: 20px; /* Margem menor para telas muito pequenas */
    }

    .image-container img {
        max-width: 100%;
    }

    .text-container h2 {
        font-size: 32px; /* Tamanho menor para o título */
    }

    .text-container p, .text-container a {
        font-size: 16px; /* Texto mais compacto */
    }
}

/* Para telas ultra pequenas (menores que 400px) */
@media screen and (max-width: 400px) {
    .container {
        padding: 5px;
        margin-top: 15px;
    }

    .text-container h2 {
        font-size: 28px;
    }

    .text-container p, .text-container a {
        font-size: 14px;
    }
}



/* Estilos para telas grandes (desktops) */
@media (min-width: 1024px) {
    .carousel {
        height: 600px; /* Ajuste da altura do carrossel para telas grandes */
    }

    .carousel-images img {
        height: 600px; /* Imagens preenchem a altura do carrossel */
    }
}

/* Estilos para tablets (telas médias) */
@media (min-width: 768px) and (max-width: 1023px) {
    .carousel {
        height: 400px; /* Altura reduzida para tablets */
    }

    .carousel-images img {
        height: 400px;
    }
}

/* Estilos para smartphones (telas pequenas) */
@media (max-width: 767px) {
    .carousel {
        height: 250px; /* Altura ainda menor para smartphones */
    }

    .carousel-images img {
        height: 250px;
    }
}


/* Estilo do Carrossel */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden; /* Esconde imagens fora da área visível */
}

.carousel-images {
    display: flex; /* Flexbox para que as imagens fiquem lado a lado */
    width: 100%; /* Define a largura total do contêiner das imagens */
    transition: transform 0.5s ease-in-out; /* Animação suave */
}

.carousel-images img {
    width: 100%; /* Cada imagem deve ocupar 100% da largura do seu contêiner */
    flex-shrink: 0; /* Evita que as imagens encolham */
    object-fit: cover; /* Garante que a imagem mantenha suas proporções */
}


/* Telas médias (dispositivos entre 769px e 1024px, como Surface Pro, iPad Mini, iPad Pro) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container{
        margin-top: 25px;
    }
}



.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.226);
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}


/* Estilo do título customizado */
.custom-title {
    margin-top: 90px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75em; /* Corrigi o valor do tamanho da fonte */
    color: #333;
    text-align: center;
}


.gallery {
    margin-top: 30px;
    display: flex;
    justify-content: center; /* Centraliza as colunas */
    align-items: center; /* Centraliza verticalmente */
    gap: 70px; /* Reduz o espaçamento entre as colunas */
}

.gallery .column {
    text-align: center; /* Centraliza o texto e a imagem */
}

.gallery .column img {
    width: 400px; /* Define a largura fixa similar à do site */
    height: 600px; /* Define a altura fixa similar à do site */
    object-fit: cover; /* Ajusta a imagem para que ela preencha as dimensões */
    transition: transform 0.3s ease; /* Adiciona a animação suave ao passar o mouse */
}

.gallery .column img:hover {
    transform: scale(1.05); /* Um leve zoom ao passar o mouse */
}

.gallery .column h3 {
    margin-top: 18px; /* Pequeno espaçamento entre a imagem e o título */
    font-size: 20px; /* Ajusta o tamanho do texto */
    color: #333;
    font-family: 'Montserrat', sans-serif; /* Usando a fonte Montserrat */
}



/* Media Queries */

/* Telas grandes (acima de 1200px) */
@media (min-width: 1200px) {
    .gallery .column img {
        width: 400px;
        height: 600px;
    }

    .gallery {
        gap: 70px;
    }
}

/* Tablets (768px até 1200px) */
@media (max-width: 1200px) and (min-width: 768px) {
    .gallery {
        gap: 40px; /* Menor espaçamento entre as colunas */
    }

    .gallery .column img {
        width: 300px; /* Diminui as imagens no tablet */
        height: 450px;
    }

    .gallery .column h3 {
        font-size: 18px; /* Tamanho de texto reduzido */
        margin-top: 15px;
    }
}

/* Celulares (abaixo de 768px) */
@media (max-width: 768px) {
    .gallery {
        flex-direction: column; /* As colunas viram linhas */
        gap: 30px; /* Espaçamento entre as imagens */
    }

    .gallery .column img {
        width: 90%; /* Imagens ocupam 90% da largura da tela */
        height: auto; /* Altura se ajusta automaticamente */
    }

    .gallery .column h3 {
        font-size: 16px; /* Texto menor no celular */
        margin-top: 10px;
    }
}

a {
    text-decoration: none; /* Remove o sublinhado */
}



/* Telas médias (dispositivos entre 769px e 1024px, como Surface Pro, iPad Mini, iPad Pro) */
@media (max-width: 1024px) and (min-width: 769px) {
    .gallery {
        gap: 10px; /* Espaçamento moderado entre as colunas */
    }

    .gallery .column img {
        width: 250px; /* Diminui um pouco as imagens para melhor ajuste */
        height: 525px; /* Altura proporcional à largura */
    }

    .gallery .column h3 {
        font-size: 18px; /* Tamanho de texto reduzido */
        margin-top: 15px; /* Espaçamento reduzido entre imagem e título */
    }
}



/* Container principal */
.project-area {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f5f0eb;
    position: relative;
}

.flumpus-section {
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .flumpus-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/image/preview1.jpg'); /* Troque pela sua imagem */
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
  
  .snorkle-box {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.63); /* Opacidade ligeira para luxo */
    padding: 30px;
    width: 35%; /* Reduzindo o tamanho do box */
    height: 100%; /* Mantendo um formato menor */
    border-radius: 1px; /* Cantos mais suaves e elegantes */
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1); /* Adicionando sombra suave */
  }
  
  .wombat-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: left; /* Título mais alinhado ao topo */
  }
  
  .gnarf-text {
    font-size: 16px;
    color: #ffffff;
    text-align: justify; /* Texto alinhado para um toque mais refinado */
    margin-bottom: 30px;
  }
  
  .plumbus-button {
    align-self: flex-start; /* Botão alinhado à esquerda */
    padding: 10px 25px;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    border-radius: 0px; /* Botão mais arredondado para suavidade */
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
  }
  
  .plumbus-button:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-3px); /* Animação de leve elevação ao hover */
  }
  


  /* Media Queries */

/* Para telas de até 1200px */
@media (max-width: 1200px) {
    .snorkle-box {
      width: 40%; /* Aumenta um pouco o box */
      margin-right: 10%; /* Move mais para a esquerda */
    }
  
    .wombat-title {
      font-size: 26px; /* Ajusta o título */
    }
  
    .gnarf-text {
      font-size: 15px; /* Ajusta o texto */
    }
  }
  
  /* Para telas de até 992px */
  @media (max-width: 992px) {
    .flumpus-section {
      justify-content: flex-end;
    }
  
    .snorkle-box {
      width: 45%; /* Box aumenta */
      margin-right: 5%; /* Alinha mais para a esquerda */
    }
  
    .wombat-title {
      font-size: 24px;
    }
  
    .gnarf-text {
      font-size: 14px;
    }
  }
  
  /* Para telas de até 768px */
  @media (max-width: 768px) {
    .flumpus-section {
      justify-content: flex-start; /* Muda o conteúdo para a esquerda */
    }
  
    .snorkle-box {
      width: 60%; /* Box ocupa mais espaço */
      padding: 20px; /* Ajusta o padding */
      margin-right: 0; /* Remove a margem para centralizar no espaço disponível */
    }
  
    .wombat-title {
      font-size: 22px;
    }
  
    .gnarf-text {
      font-size: 13px;
    }
  
    .plumbus-button {
      font-size: 14px;
    }
  }
  
  /* Para telas de até 576px */
  @media (max-width: 576px) {
    .flumpus-section {
      justify-content: flex-start; /* Alinha tudo à esquerda */
    }
  
    .snorkle-box {
      width: 70%; /* Box maior para dispositivos pequenos */
      padding: 15px;
      margin-right: 0; /* O box fica totalmente à esquerda */
    }
  
    .wombat-title {
      font-size: 20px;
    }
  
    .gnarf-text {
      font-size: 12px;
    }
  
    .plumbus-button {
      font-size: 13px;
    }
  }
  
  /* Para telas de até 400px */
  @media (max-width: 400px) {
    .snorkle-box {
      width: 90%; /* Quase toda a largura da tela */
      padding: 15px;
    }
  
    .wombat-title {
      font-size: 18px; /* Título menor */
    }
  
    .gnarf-text {
      font-size: 11px;
    }
  
    .plumbus-button {
      font-size: 12px;
    }
  }





/* Estilo básico para o footer */
.footer {
    margin-top: 80px;
    background-color: #141212;
    color: #DCCA98;
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif; 
    font-size: 14px;
}

/* Container do footer para alinhar os itens */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção do logo e redes sociais */
.logo-section {
    max-width: 200px;
    margin-bottom: 20px;
}

.logo {
    max-width: 80%;
    height: auto;
}

/* Redes Sociais - Estilo dos ícones */
.social-icons {
    margin-left: 17px;
    margin-top: 15px;
}

.social-icons a {
    color: whitesmoke;
    font-size: 24px;
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #DCCA98; /* Efeito hover nos ícones */
}

/* Seção de informações gerais */
.info-section, .contact-section, .instagram-section {
    max-width: 300px;
    margin-bottom: 20px;
}

/* Listagem de links na seção de informações */
.info-section ul {
    padding: 0;
    list-style-type: none;
}

.info-section ul li {
    margin-bottom: 8px;
}

.info-section ul li a {
    color: whitesmoke;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-section ul li a:hover {
    color: #DCCA98;
}

/* Seção de contatos */
.contact-section p {
    margin: 10px 0;
    margin-top: 5px;
    display: flex; /* Usar flexbox para alinhar ícone e texto */
    align-items: center; /* Alinhar verticalmente */
}

.contact-section i {
    color: #DCCA98;
    margin-right: 10px;
    font-size: 16px; /* Ajuste o tamanho do ícone, se necessário */
    display: inline-block;
    vertical-align: middle; /* Garante o alinhamento central com o texto */
}

.links{
    margin-top: 20px;
}

.contactos{
    margin-top: 20px;
}



.contact-section a {
    color: #fff; /* Cor dos links */
    text-decoration: none; /* Remover sublinhado */
    transition: color 0.3s ease;
}

.contact-section p,
.contact-section span {
    color: whitesmoke; /* Mude para a cor desejada */
    font-size: 15px;
    text-decoration: none; /* Remover sublinhado */
}

/* Estilo para o widget do Instagram */
.instagram-widget {
    max-width: 250px;
}

.instagram-widget iframe {
    margin-top: 20px;
    width: 100%;
    height: auto;
    max-height: 3600px;
    border: none;
}

/* Rodapé inferior com créditos */
.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 12px;
    color: whitesmoke;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {

    .logo {
        max-width: 30%;
        height: auto;
        margin: 20px;
    }

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

    .info-section, .contact-section, .instagram-section, .logo-section {
        max-width: 100%;
        margin-bottom: 20px;
        text-align: center;
    }

    .instagram-widget iframe {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .social-icons a {
        font-size: 20px; /* Reduzir o tamanho dos ícones em dispositivos muito pequenos */
    }
    
    .instagram-widget iframe {
        max-height: 200px;
    }
}


/* Estilo padrão para telas grandes (desktop) */
.instagram-widget {
    width: auto; /* Mantém o tamanho padrão em telas grandes */
    max-width: 405px; /* Limitar o tamanho máximo em telas grandes */
    margin: 0 auto; /* Centralizar o widget */
}

.instagram-widget iframe {
    width: 405px; /* Definir largura padrão para o iframe em desktops */
    height: 310px; /* Definir altura padrão */
    border: none;
    overflow: hidden;
}


/* Ajuste específico para iPad Pro (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .instagram-widget {
        width: 100% !important; /* Ocupar 100% da largura no iPad Pro */
        max-width: 350px !important; /* Limitar o tamanho máximo */
        margin: 0 auto; /* Centralizar o widget */
    }

    .instagram-widget iframe {
        width: 100% !important; /* Fazer o iframe ocupar 100% da largura */
        max-height: 280px !important; /* Ajustar a altura máxima do iframe */
    }
}






/* Ajuste específico para iPad Pro (1024x1366) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .instagram-widget {
        max-width: 350px !important; /* Ajustar o tamanho máximo para o widget no iPad Pro */
        margin: 0 auto !important; /* Centralizar o widget */
    }

    .instagram-widget iframe {
        max-height: 280px !important; /* Ajustar a altura máxima do iframe no iPad Pro */
    }
}


.centered-content {
    margin-top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.faq {
    max-width: 600px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h5 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: #eaeaea;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 100px;
}

input[type="checkbox"]:checked + .faq-question {
    background-color: #d1e7dd;
}


.arrow {
    width: 16px;
    height: 16px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

input[type="checkbox"]:checked + .faq-question .arrow {
    transform: rotate(-135deg);
}


input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 1000px; /* Um valor muito maior */
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Media Queries para telas menores */
@media (max-width: 768px) {
    .faq {
        padding: 15px;
    }

    h5 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 10px;
    }

    h5 {
        font-size: 20px;
    }

    .faq-question {
        font-size: 15px;
        padding: 10px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

/* Container do carrossel */
.inspiration-carousel-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

/* Carrossel como flex para facilitar a navegação */
.inspiration-carousel {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
}

/* Estilo para os itens do carrossel */
.inspiration-carousel-item {
    min-width: 300px;
    margin: 0 10px;
    height: 400px;
    aspect-ratio: 5 / 4; /* Definir proporção para evitar bugs */
    position: relative;
    flex: 0 0 auto;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
}

.overlay h2 {
    margin: 0;
    font-size: 24px;
}

.overlay a {
    margin-top: 10px;
    padding: 10px 20px;
    color: #fff;
    background-color: transparent;
    text-decoration: none;
    font-size: 12px;
    border-radius: 3px;
    border: 1px solid #fff;
}





/* Garantir que as setas não sejam cortadas pela altura da div */
.arrow2-container {
    position: absolute;
    top: -60px; /* Mover as setas para cima do carrossel */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 30px;
}

.arrow2-left, .arrow2-right {
    color: #DCCA98;
    border: none;
    padding: 0; /* Reduz o padding para tornar as setas mais retas */
    cursor: pointer;
    font-size: 36px;
    background-color: transparent; /* Remove qualquer fundo indesejado */
    border-radius: 0; /* Remove qualquer arredondamento */
}

.arrow2-left:hover, .arrow2-right:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Efeito hover */
}


.carousel-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin-top: 100px;  /* Espaço extra acima */
    margin-bottom: 100px;  /* Espaço extra abaixo */
    /* overflow: hidden; */  /* Removido para não cortar as setas */
}


/* Tablets e dispositivos móveis maiores (largura entre 768px e 1024px) */
@media (max-width: 1024px) {
    .inspiration-carousel-item {
        min-width: 250px;  /* Reduzir a largura mínima dos itens */
        height: 350px;     /* Ajustar a altura para caber melhor */
    }
    
    .arrow2-left, .arrow2-right {
        font-size: 30px;  /* Diminuir o tamanho das setas */
    }

    .overlay h2 {
        font-size: 20px;  /* Reduzir o tamanho do texto */
    }

    .overlay a {
        font-size: 10px;  /* Reduzir o botão no mobile */
    }
}

/* Smartphones (largura menor que 768px) */
/* Ajuste responsivo para dispositivos móveis */
@media (max-width: 768px) {
    .inspiration-carousel-item {
        min-width: 100vw;  /* Cada item ocupa 100% da largura da tela */
        height: 300px;     /* Ajustar a altura conforme necessário */
    }

    .arrow2-left, .arrow2-right {
        font-size: 28px;  /* Reduzir o tamanho das setas */
    }

    .overlay h2 {
        font-size: 18px;  /* Ajustar o tamanho do texto */
    }

    .overlay a {
        font-size: 10px;  /* Ajustar o botão */
    }
}


/* Dispositivos pequenos (largura menor que 480px) */
@media (max-width: 480px) {
    .inspiration-carousel-item {
        min-width: 150px;  /* Reduzir a largura mínima para caber mais itens na tela */
        height: 250px;     /* Ajustar ainda mais a altura */
    }

    .arrow2-left, .arrow2-right {
        font-size: 24px;  /* Diminuir o tamanho das setas */
    }

    .overlay h2 {
        font-size: 16px;  /* Ajustar o tamanho da fonte */
    }

    .overlay a {
        font-size: 8px;   /* Diminuir o tamanho do botão */
    }
}









.stylish-button {
    margin: 100px auto; /* Centraliza o botão verticalmente e horizontalmente */
    display: block; /* Garante que o botão seja tratado como bloco para centralização */
    padding: 15px 300px; /* Botão maior */
    border: 2px solid #000000;
    background: transparent;
    color: #DCCA98;
    cursor: pointer;
    border-radius: 0; /* Borda sem arredondamento */
    font-size: 18px; /* Texto maior */
    text-decoration: underline; /* Sublinha o texto */
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.stylish-button:hover {
    background-color: #000000ad; /* Cor de fundo ao hover */
    color: #DCCA98;
    transform: translateY(-3px); /* Animação de leve elevação ao hover */
}


/* Para telas maiores (desktop) */
@media (min-width: 1200px) {
    .stylish-button {
        padding: 15px 300px; /* Tamanho grande para desktop */
        font-size: 18px; /* Tamanho de texto adequado para telas grandes */
    }
}

/* Para telas médias (tablets) */
@media (max-width: 1199px) and (min-width: 768px) {
    .stylish-button {
        padding: 15px 150px; /* Reduz o tamanho do botão para tablets */
        font-size: 16px; /* Tamanho de texto ligeiramente menor */
    }
}

/* Para telas pequenas (smartphones) */
@media (max-width: 767px) {
    .stylish-button {
        padding: 10px 50px; /* Reduz bastante o tamanho do botão para caber em telas pequenas */
        font-size: 14px; /* Texto menor para melhor adaptação */
        margin: 50px auto; /* Reduz a margem vertical */
    }
}

/* Para telas muito pequenas (telefones menores ou em modo retrato) */
@media (max-width: 480px) {
    .stylish-button {
        padding: 10px 30px; /* Botão menor para as telas bem pequenas */
        font-size: 12px; /* Texto ainda menor para melhor visualização */
        margin: 30px auto; /* Ajusta a margem para economizar espaço */
    }
}



.h2{
    font-family: 'Montserrat', sans-serif;
}

.p{
    font-family: 'Montserrat', sans-serif;
}

/* Tipografia */
.h7, .h8, .h9 {
    font-family: 'Montserrat', sans-serif;
    color: #DCCA98;
    text-align: center;
    text-justify: auto;
}

.h7 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.h8 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}

.h9 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
}

p {
    text-align: center;
    line-height: 1.8;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

/* Layout das seções */
.section-start, .section-founder, .section-essence {
    display: flex;
    align-items: center;
    padding: 0;
    max-width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 100px; /* Define uma altura mínima para as seções */
}

/* Margem superior inicial apenas para a primeira seção */

/* Ajuste para as imagens */
.section-start .image,
.section-founder .image,
.section-essence .image {
    flex: 1;
    flex-basis: 50%; /* Garante que as imagens ocupem 50% da largura da tela */
    height: 100%; /* Ocupando a altura total da seção */
    min-height: 100px; /* Garante uma altura mínima para as imagens */
}

.section-start img,
.section-founder img,
.section-essence img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-basis: 50%; /* O texto ainda ocupa 50% da largura da tela */
    display: block;
}

.section-start .text,
.section-founder .text,
.section-essence .text {
    flex: 1;
    flex-basis: 50%; /* O texto ainda ocupa 50% da largura da tela */
    padding: 0 20px;
    margin: 0 auto; /* Centraliza a caixa */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente o conteúdo */
    height: 100%;
    min-height: 100px;
    max-width: 1600px; /* Mantém o tamanho da caixa */
}

.text-wrapper {
    max-width: 800px; /* Limita a largura máxima do texto */
    text-align: left; /* Alinhamento do texto à esquerda */
    line-height: 1.6; /* Espaçamento entre linhas */
    word-wrap: break-word; /* Quebra palavras longas */
    overflow-wrap: break-word; /* Garante a quebra das palavras grandes */
    margin: 0 auto; /* Centraliza o texto dentro da caixa maior */
}




.section-values {
    padding: 40px;
    text-align: center;
    background-color: #F9F5F0;
}

.section-values .h8 {
    margin-bottom: 40px;
}

.values-container {
    display: flex;
    justify-content: space-around;
}

.value {
    text-align: center;
    flex: 1;
    margin: 0 20px;
}

.value img {
    margin: 0 auto 20px auto; /* Adiciona centralização horizontal */
    display: block; 
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.value .h9 {
    margin-bottom: 10px;
    color: #DCCA98;
}

.value p {
    color: #555;
}







/* Mobile (até 768px) */
@media (max-width: 768px) {
    .section-start, .section-founder, .section-essence {
        flex-direction: column; /* Organiza em coluna */
        padding-bottom: 40px; /* Adiciona espaçamento inferior */
        margin-bottom: 40px; /* Adiciona margem entre as seções */
    }

    .section-start .image,
    .section-founder .image,
    .section-essence .image,
    .section-start .text,
    .section-founder .text,
    .section-essence .text {
        flex-basis: 100%; /* A imagem e o texto ocupam 100% da largura */
        padding: 0; /* Remove o padding horizontal */
    }

    .text-wrapper {
        max-width: 100%; /* O texto ocupa toda a largura */
        padding: 0 15px; /* Padding lateral para afastar do limite da tela */
        margin-bottom: 30px; /* Adiciona mais espaçamento abaixo do texto */
    }

    .section-values {
        padding: 20px; /* Reduz o padding, mas mantém espaçamento entre seções */
    }

    .values-container {
        flex-direction: column; /* Empilha os itens de valor verticalmente */
    }

    .value {
        margin-bottom: 30px; /* Espaço entre cada item de valor */
    }

    .value img {
        width: 60px; /* Ajusta o tamanho dos ícones */
    }
}







.section-essence {
    margin-bottom: -20px;
}

/* Contêiner Principal */
.location-container {
    padding: 80px;
    margin-bottom: -78px;
    font-family: 'Montserrat', sans-serif; /* Usando a fonte Montserrat */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    background-color: white;
}

/* Conteúdo da Localização */
.location-content {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px; /* Espaço entre texto e mapa */
}

/* Estilo do Cabeçalho */
.location-header {
    font-family: 'Montserrat', sans-serif; /* Usando a fonte Montserrat */
    margin-bottom: 20px;
}

.location-title {
    color:#DCCA98;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif; /* Usando a fonte Montserrat */
    margin: 0;
    padding-top: 5px;
}

/* Detalhes da Localização */
.location-details {
    margin-top: -20px;
    color: black;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 20px;
}

/* Horários de Funcionamento */
.location-hours {
    font-size: 14px;
    color: black;
}

.hours-title {
    color: #DCCA98;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hours-list {
    font-size: 18px;
    list-style: none;
    padding: 0;
    line-height: 1.6;
}

.hours-list li {
    margin-bottom: 5px;
}

/* Mapa */
.location-map {
    margin-bottom: 30px;
    width: 50%;
    height: 350px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}


@media (min-width: 1200px) {
    .location-container {
        padding: 100px; /* Aumentando o padding para telas maiores */
    }
    
    .location-title {
        font-size: 32px; /* Aumentando o tamanho da fonte */
    }

    .location-details, .location-content {
        font-size: 22px; /* Tamanho da fonte maior */
    }
    
    .location-map {
        width: 60%; /* Aumentando a largura do mapa */
    }
}


@media (min-width: 768px) and (max-width: 1199px) {
    .location-container {
        padding: 60px;
    }

    .location-title {
        font-size: 28px; /* Ajuste para telas médias */
    }

    .location-details, .location-content {
        font-size: 18px;
    }

    .location-map {
        width: 80%; /* Ajusta a largura do mapa para caber melhor */
    }
}


@media (max-width: 767px) {
    .location-container {
        padding: 40px;
    }

    .location-title {
        font-size: 20px;
    }

    .location-details, .location-content {
        font-size: 16px;
    }

    .location-map {
        width: 100%; /* O mapa ocupará toda a largura da tela */
        height: 250px; /* Ajustando a altura para telas menores */
    }

    .hours-list {
        font-size: 16px; /* Reduzindo o tamanho da lista de horários */
    }
}







.h30 {
    text-align: center;
    font-size: 2.1em; /* Tamanho da fonte ajustável */
    font-weight: bold; /* Negrito */
    color: #DCCA98;
    margin: 0; /* Margem do título */
    padding: 140px 0; /* Espaçamento interno */
    background: white;
}

/* Telas pequenas (smartphones) */
@media (max-width: 576px) {
    .h30 {
        margin-top: 50px;
        font-size: 1.4em; /* Reduzindo o tamanho da fonte para smartphones */
        padding: 140px 0;  /* Ajuste do espaçamento interno */
    }
}

/* Telas médias (tablets) */
@media (min-width: 577px) and (max-width: 768px) {
    .h30 {
        margin-top: 20px;
        font-size: 1.7em; /* Ajuste para tablets */
        padding: 140px 0; /* Espaçamento interno menor */
    }
}

/* Telas grandes (laptops) */
@media (min-width: 769px) and (max-width: 1024px) {
    .h30 {
        margin-top: 20px;
        font-size: 1.9em; /* Ajuste para laptops */
        padding: 140px 0; /* Espaçamento ajustado */
    }
}

/* Telas extra grandes (desktops) */
@media (min-width: 1025px) {
    .h30 {
        margin-top: 20px;
        font-size: 2.1em; /* Tamanho original para desktops */
        padding: 140px 0; /* Mantém o espaçamento original */
    }
}


.margemparacima{
    margin-top: 16px;
    margin-bottom: -18px;
}


.main-container {
    margin-bottom: -110px;
    font-family: 'Montserrat', sans-serif;
    padding: 110px;
    display: flex;
    width: 100%;
    text-align: justify;
}

.left-section, .right-section {
    font-family: 'Montserrat', sans-serif;
    padding: 30px;
}

.left-section {
    width: 50%;
    color: #DCCA98;
    text-align: justify;
}

.office-image {
    margin-left: 85px;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.office-info {
    margin-left: 85px;
    text-align: justify;
    margin-top: 20px;
}

.cls1, .cls2, .cls3, .cls4, .cls5 {
    margin-bottom: 20px;
}

.cls1 {
    font-size: 24px;
    font-weight: bold;
}

.cls2, .cls3, .cls4, .cls5 {
    font-size: 17px;
        color: black;
}

.cls4 a {
    color: black;
    text-decoration: none;
}

.cls4 a:hover {
    text-decoration: underline;

}

.buttons {
    margin-top: 20px;
}

.buttons button {
    background-color: black !important;
    color: #DCCA98 !important;
    padding: 10px 10px !important; /* Bem pequeno */
    border: none !important;
    cursor: pointer !important;
    margin-right: 5px !important;
    border-radius: 0 !important;
    font-size: 1.1em !important; /* Texto pequeno */
    box-sizing: border-box !important; /* Certifica-se de que padding não aumenta o tamanho */
}





/* Para tablets em retrato (entre 600px e 768px) */
@media (max-width: 768px) {
    .buttons {
        margin-top: 8px !important;
    }

    .buttons button {
        padding: 1px 4px !important;
        margin-right: 4px !important;
        font-size: 0.55em !important;
    }
}

/* Para smartphones (entre 320px e 600px) */
@media (max-width: 600px) {
    .buttons {
        margin-top: 5px !important;
    }

    .buttons button {
        padding: 10px 8px !important; /* Bem pequeno e fino */
        margin-right: 3px !important;
        font-size: 1.0em !important; /* Texto bem pequeno */
        width: 100% !important;
        margin-bottom: 5px !important; /* Espaço entre botões */
    }
}

.right-section {
    width: 50%;
    margin-top: -220px;
}



.cls6 {
    color: #DCCA98;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cls7 {
    margin-bottom: 20px;
}

.form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form textarea {
    height: 120px;
    resize: vertical;
}

.form input[type="submit"] {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
}

.form input[type="submit"]:hover {
    background-color: #333;
}


.phone-link {
    color: inherit; /* Inherits the text color of the surrounding element */
    text-decoration: none; /* Removes underline */
}

.phone-link:hover {
    text-decoration: underline; /* Optionally add underline on hover if desired */
}



/* Estilizando o container do formulário */
.form-container {
    font-family: 'Montserrat', sans-serif;
    border-radius: none;
   
}

/* Estilizando o rótulo (label) */
.form-label {
    border-radius: none;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

/* Estilizando o input e textarea */
.form-input,
.form-textarea {
    width: 100%; /* Campo preenchendo a largura total */
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: none;
    font-size: 16px;
    box-sizing: border-box; /* Incluindo padding e border no tamanho total */
    background-color: #f9f9f9;
}

/* Estilizando o textarea */
.form-textarea {
    height: 150px; /* Altura maior para o campo de texto */
    resize: vertical; /* Permitindo redimensionamento vertical */
}

/* Estilizando o botão de envio */
.form-submit {
    background-color: black;
    color: #DCCA98;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    border-radius: none;
    transition: background-color 0.3s ease;
}

/* Mudança de cor no hover do botão */
.form-submit:hover {
    background-color: #2e2e2e;
}


.agendar, .vermapa {
    transition: background-color 0.3s ease;
}


.agendar:hover{
    background-color: #2e2e2e;
}

.vermapa:hover{
    background-color: #2e2e2e;
}
/* Estilizando o campo de erro ao validar */
input:invalid, 
textarea:invalid {
    border-color: red; /* Bordas em vermelho se houver erro */
}



@media (max-width: 1852px) and (min-width: 1400px){
    .right-section{
        margin-top: -130px;
    }
}



@media (max-width: 1400px) and (min-width: 1384px){
    .right-section{
        margin-top: -80px;
    }
}

@media (max-width: 1384px) and (min-width: 1301px){
    .right-section{
        margin-top: -80px;
    }
}

@media (max-width: 1300px) and (min-width: 1201px){
    .right-section{
        margin-top: -70px;
    }
}

@media (max-width: 1200px) and (min-width: 768px) {
    .main-container {
        padding: 60px;
        flex-direction: column; /* Muda a direção para coluna */
    }

    .left-section, .right-section {
        margin: 0px;
        width: 100%; /* Seções ocupam 100% da largura */
        padding: 20px;
    }

    .cls1 {
        font-size: 22px;
    }

    .right-section{
        margin-top: 0px;
    }

    .cls2, .cls3, .cls4, .cls5 {
        font-size: 16px;
    }

    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 15px; /* Reduz um pouco o tamanho do texto nos campos */
    }

    .form-submit {
        padding: 12px 18px;
    }

    .office-video{
        margin-bottom: 30px;
    }

    .left-section{
        margin: 0px;
    }

    .office-info{
        margin: 0px;
    }
}


@media (max-width: 1200px) {
    .office-video{
        margin-left: 1px;
    }
}


@media (max-width: 767px) {

    .office-video{
        margin-left: -85px;


    }

    .left-section{
        margin: 0px;
    }

    .office-info{
        margin: 0px;
    }
    .main-container {
        padding: 40px;
        flex-direction: column; /* Altera o layout para coluna no mobile */
    }

    .left-section, .right-section {
        margin: 0;
        width: 100%; /* Seções ocupam toda a largura */
        padding: 15px;
    }

    .cls1 {
        font-size: 20px; /* Texto de título um pouco menor */
    }

    .cls2, .cls3, .cls4, .cls5 {
        font-size: 15px; /* Texto geral um pouco menor */
    }

    .form-input,
    .form-textarea {
        padding: 10px;
        font-size: 14px; /* Texto nos campos um pouco menor */
    }

    .form-submit {
        padding: 10px 16px;
        font-size: 14px;
    }

    .buttons button {
        padding: 8px 16px;
    }
}


@media (max-width: 480px) {
    .main-container {
        padding: 20px;
    }

    .cls1 {
        font-size: 18px;
    }

    .cls2, .cls3, .cls4, .cls5 {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        padding: 8px;
        font-size: 13px;
    }

    .form-submit {
        padding: 8px 14px;
        font-size: 13px;
    }

    .buttons button {
        padding: 6px 12px;
    }
}


/* O modal é inicialmente invisível */
.modal {
  display: none; 
  position: fixed; 
  z-index: 100000000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 120%; 
  background-color: rgba(0,0,0,0.5); /* Fundo semi-transparente */
}

/* Conteúdo do modal */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* Centrado verticalmente */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* Tamanho do modal */
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Botão de fechar (X) */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

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



/* Estilos para telas grandes (desktop) */
@media (min-width: 1200px) {
    .modal-content {
      width: 40%; /* Modal mais estreito em telas maiores */
    }
  }
  
  /* Estilos para tablets (largura entre 768px e 1199px) */
  @media (min-width: 768px) and (max-width: 1199px) {
    .modal-content {
      width: 60%; /* Aumenta a largura para tablets */
      margin: 10% auto; /* Ajusta o espaçamento para tablets */
    }
  }
  
  /* Estilos para celulares em modo paisagem (largura entre 576px e 767px) */
  @media (min-width: 576px) and (max-width: 767px) {
    .modal-content {
      width: 75%; /* Modal mais largo para se adequar a telas maiores de celular */
      margin: 10% auto; /* Ajuste o espaçamento para paisagem */
    }
  
    .close {
      font-size: 20px; /* Tamanho menor para o X */
    }
  }
  
  /* Estilos para celulares pequenos (largura até 575px) */
  @media (max-width: 575px) {
    .modal-content {
      width: 90%; /* Modal ocupa quase toda a largura da tela */
      margin: 5% auto; /* Ajusta para telas muito pequenas */
    }
  
    .modal-content {
      padding: 15px; /* Reduz o padding em telas menores */
    }
  
    .close {
      font-size: 18px; /* Tamanho menor para o X */
    }
  }
  





/* Seção de introdução dos serviços */
.service-intro {
    font-family: 'Montserrat', sans-serif; 
    background-image: url('/image/fotos margys/coleções/alabb/27173909_1542046582578520_1558908103865504419_o.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 110px 20px;
    color: #fff;
    position: relative;
    margin-bottom: 70px;
}

.service-intro::before {
    font-family: 'Montserrat', sans-serif; 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-title {
    padding: 40px;
    font-family: 'Montserrat', sans-serif; 
    font-size: 4em;
    font-weight: 700;
    margin: 0;
    z-index: 1;
    position: relative;
    color: whitesmoke;
}

/* For devices with screen width less than 1200px (Desktops) */
@media (max-width: 1200px) {
    .service-title {
        font-size: 3.5em;
    }
}

/* For devices with screen width less than 992px (Tablets in landscape mode) */
@media (max-width: 992px) {
    .service-title {
        font-size: 3em;
    }
}

/* For devices with screen width less than 768px (Tablets in portrait mode) */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.5em;
    }
}

/* For devices with screen width less than 576px (Mobile phones) */
@media (max-width: 576px) {
    .service-title {
        font-size: 2em;
    }
}

/* For very small mobile devices (less than 400px width) */
@media (max-width: 400px) {
    .service-title {
        font-size: 1.8em;
    }
}


.service-subtitle {
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.5em;
    margin-top: 20px;
    font-weight: 300;
    z-index: 1;
    position: relative;
    color: whitesmoke;
}


.quadrado{
    margin: 0px 110px;
}


/* Seção de serviços */
.services {
    font-family: 'Montserrat', sans-serif; 
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.service-item:hover {
    transform: scale(1.02);
}

.service-text {
    font-family: 'Montserrat', sans-serif; 
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    margin-top: -10px;
}



.service-text h6 {
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.5em;
    color: #DCCA98;
    margin-bottom: 10px;
}

.service-text p {
    font-family: 'Montserrat', sans-serif; 
    font-size: 1em;
    color: #666;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-top: -10px;
}


.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
    }

    .service-text, .service-image {
        padding: 20px;
    }

    .quadrado{
        margin: 0 0px;
    }
}




/* Título e Borda */
.title-container {
    margin-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .title-border {
    width: 80%;
    border-bottom: 2px solid black;
    margin-bottom: 10px;
  }
  
  .custom-titlee {
    padding: 40px;   
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    text-align: center;
    margin: 0;
  }
  
  /* Estilos do formulário */
  .formulario-container-xyz {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .formulario-grupo-xyz {
    margin-bottom: 35px;
  }
  
  .etiqueta-nome-xyz, .etiqueta-email-xyz, .etiqueta-telemovel-xyz, .etiqueta-mensagem-xyz {
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
  }
  
  .entrada-nome-xyz, .entrada-email-xyz, .entrada-telemovel-xyz, .textarea-mensagem-xyz {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: none;
    font-family: 'Montserrat', sans-serif;
  }
  
  .textarea-mensagem-xyz {
    height: 100px;
  }
  
  .botao-enviar-xyz {
    background-color: #DCCA98;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
  }
  
  .botao-enviar-xyz:hover {
    background-color: #dcca9883;
  }
  
  /* Media Queries para responsividade */
  @media (max-width: 768px) {
    .formulario-container-xyz {
      max-width: 100%;
    }
  
    .custom-title {
      font-size: 20px;
    }
  
    .entrada-nome-xyz, .entrada-email-xyz, .entrada-telemovel-xyz, .textarea-mensagem-xyz {
      padding: 8px;
    }
  
    .botao-enviar-xyz {
      padding: 8px 16px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .custom-title {
      font-size: 18px;
    }
  
    .entrada-nome-xyz, .entrada-email-xyz, .entrada-telemovel-xyz, .textarea-mensagem-xyz {
      padding: 6px;
    }
  
    .botao-enviar-xyz {
      padding: 6px 12px;
      font-size: 12px;
    }
  }


/* Campo Morada */
.entrada-morada-xyz {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: none;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Campo de Seleção (Projetos, Imóvel, Tipologia) */
  .entrada-projeto-xyz, .entrada-imovel-xyz, .entrada-tipologia-xyz {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: none;
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Título Separador */
  .titulo-separador-xyz {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    color: #DCCA98;
  }
  
  /* Campo para Anexar Ficheiro */
  .entrada-arquivo-xyz {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: 'Montserrat', sans-serif;
  }
  


.h2{
    font-family: 'Montserrat', sans-serif;
}


.text-container h2 {
    font-family: 'Montserrat', sans-serif;
}

.h45 {
    padding: 50px;
    text-align: center;
    font-size: 2.8em; /* Tamanho da fonte ajustável */
    color: #DCCA98;
    margin: 40px; /* Margem do título */
    margin-bottom: 0px;
    font-weight: 600; /* Negrito */
}

/* Telas pequenas (smartphones) */
@media (max-width: 576px) {
    .h45 {
        font-size: 1.5em; /* Ajuste menor para smartphones */
        margin: 20px;
    }
}

/* Telas médias (tablets) */
@media (min-width: 577px) and (max-width: 768px) {
    .h45 {
        font-size: 2em; /* Ajuste para tablets */
        margin: 30px;
    }
}

/* Telas grandes (laptops) */
@media (min-width: 769px) and (max-width: 1024px) {
    .h45 {
        font-size: 2.4em; /* Ajuste para laptops */
        margin: 35px;
    }
}

/* Telas extra grandes (desktops) */
@media (min-width: 1025px) {
    .h45 {
        font-size: 2.8em; /* Tamanho original para desktops */
        margin: 40px;
    }
}


/* Estilos da galeria */
.gallery-section {
    text-align: center;
    padding: 160px;
    margin-left: 40px;
    margin-bottom: -40px;
}

.gallery-title {
    position: relative; /* Define o contexto de posicionamento para o ::before */
    padding: 30px;
    margin-left: -200px; /* Removido o valor fixo */
    font-size: 24px;
    text-align: left;
    padding-left: 20px;
    color: #DCCA98;
    margin-bottom: 20px;
    z-index: 1; /* Garante que o texto fique acima da barra */
}

.gallery-title::before {
    content: ''; /* Cria um conteúdo vazio para o pseudoelemento */
    position: absolute;
    left: 0; /* Faz a barra começar da ponta esquerda */
    top: 50%; /* Alinha verticalmente ao centro do texto */
    transform: translateY(-50%); /* Centraliza verticalmente */
    
    /* Aqui você controla o comprimento da barra */
    width: 350px; /* AQUI você define o tamanho da barra, ajuste conforme necessário */
    height: 8px; /* Espessura da barra */
    
    background-color: #DCCA98; /* Cor da barra */
    z-index: -1; /* Garante que a barra fique atrás do texto */
}

.gallery-title {
    padding-left: calc(350px + 10px); /* O texto será deslocado com base no tamanho da barra + espaçamento */
}

.custom-slider {
    display: flex;
    flex-wrap: wrap; /* Permite quebrar as linhas para formar o 2x2 */
    justify-content: center; /* Alinha o conteúdo no centro */
    gap: 20px; /* Espaçamento entre as imagens */
}

.custom-slide {
    width: calc(50% - 20px); /* Define 2 colunas com espaçamento */
    flex: 1 1 45%; /* Controla a largura de cada slide */
    max-width: 600px; /* Define um limite máximo de largura */
    cursor: pointer;
    position: relative;
}

/* Imagem dentro do slide */
.custom-slide img {
    width: 100%;
    height: 300px; /* Altura ajustada */
    object-fit: cover; /* Estica a imagem para cobrir o espaço */
    border-radius: 0; /* Sem bordas arredondadas */
    transition: 0.3s ease; /* Transição suave para o efeito de escurecimento */
}

/* Efeito de escurecimento ao passar o mouse na imagem */
.custom-slide:hover img {
    filter: brightness(50%);
}

/* Texto sobre a imagem ao passar o mouse */
.custom-slide .image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-slide:hover .image-overlay {
    opacity: 1;
}

/* Estilos do modal */
.Lcustom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.Lmodal-content {
    margin: auto;
    display: block;
    max-width: 90%; /* Aumentei o tamanho máximo da imagem no modal */
    max-height: 90%; /* Para evitar que a imagem saia da tela */
    padding-top: 60px;
    pointer-events: none; /* Bloquear interação com a imagem */
    user-select: none; /* Bloquear seleção da imagem */
    object-fit: contain; /* A imagem ocupa todo o modal sem bordas */
}

.Lclose-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Texto na modal abaixo da imagem */
.Lmodal-caption {
    text-align: center;
    color: white;
    font-size: 18px;
    margin-top: 15px;
}

/* Logo (watermark) sobre a imagem no modal, centralizado */
.Lmodal-watermark {
    position: absolute;
    top: 50%; /* Centraliza verticalmente */
    left: 50%; /* Centraliza horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta a posição para centralizar */
    opacity: 0.5; /* Transparência do logo */
    width: 200px; /* Largura do logo */
    height: auto; /* Altura automática */
}

/* Estilos para as setas de navegação no modal */
.Lmodal-nav {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.Lmodal-nav.left {
    left: 10px;
}

.Lmodal-nav.right {
    right: 10px;
}

.Lmodal-nav:hover {
    color: #ccc;
}




/* ===== Media Queries ===== */

/* Para telas menores que 1200px (Desktop menor ou laptop) */
@media (max-width: 1200px) {
    .gallery-title{
        margin-top: 10px;
    }
    .custom-slide {
        flex: 0 0 30%; /* Mostrar 3 imagens em tela */
        min-width: 280px; /* Ajuste leve para garantir que o espaço seja otimizado */
    }

    .gallery-section {
        padding: 100px; /* Reduzindo um pouco o padding para mais espaço */
        margin-left: 10px; /* Ajuste do margin-left */
    }

    .Lmodal-watermark {
        width: 80px; /* Reduzindo o tamanho do logo em telas menores */
        top: 20%; /* Ajuste para uma posição fixa em relação à imagem */
        left: 50%; /* Centraliza horizontalmente */
        transform: translate(-50%, -50%); /* Ajusta a posição para centralizar */
        z-index: 1001; /* Garante que o logo fique acima da imagem */
    }
}

/* Para telas menores que 992px (Tablets menores) */
@media (max-width: 992px) {
    .gallery-title{
        margin-top: 10px;
    }
    .custom-slide {
        flex: 0 0 45%; /* Mostrar 2 imagens em tela */
        min-width: 45%; /* Para manter o layout adequado */
    }

    .gallery-section {
        padding: 80px;
        margin-left: 10px;
    }

    .Lmodal-watermark {
        width: 70px; /* Reduzindo o tamanho do logo */
    }
}


/* Para telas menores que 768px (Tablets) */
@media (max-width: 768px) {

    .gallery-title{
        margin-top: 40px;
    }
    .custom-slide {
        flex: 0 0 100%; /* Mostrar 1 imagem por linha */
        min-width: 100%; /* Ajuste para ocupar toda a largura */
    }

    .gallery-section {
        padding: 60px; /* Menos padding para dispositivos móveis */
        margin-left: 0; /* Remover margem esquerda para dispositivos pequenos */
    }

    .Lmodal-watermark {
        width: 60px; /* Tamanho do logo ainda menor em dispositivos móveis */
    }
}

/* Para telas menores que 480px (Smartphones) */
@media (max-width: 480px) {
    .gallery-title{
        margin-top: 30px;
    }
    .custom-slide img {
        height: 200px; /* Reduzindo a altura da imagem para dispositivos móveis */
    }

    .Lmodal-watermark {
        width: 50px; /* Logo ainda menor para smartphones */
    }
}


/* Estilos Globais do Contêiner Principal */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px; /* Espaço entre os elementos */
    padding: 0;
    height: auto; /* Remove altura fixa */
    margin-bottom: 40px;
    margin-top: 0; /* Remove a margem negativa */
}

/* Estilo do Wrapper de Imagens */
.img-wrapper {
    max-width: 1200px; /* Largura máxima do contêiner */
    flex: 1;
}

.img-wrapper img {
    width: 100%;
    height: auto; /* Mantém proporções */
    object-fit: cover; /* Garante que as imagens se ajustem corretamente */
    max-height: 80vh; /* Define uma altura máxima em telas normais */
}

/* Media Queries para Responsividade */

/* Telas até 1024px (Tablet) */
@media screen and (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 20px; /* Ajusta a margem em telas menores */
    }

    .img-wrapper {
        max-width: 90%; /* Ajusta a largura para tablets */
    }
}

/* Telas até 600px (Celular) */
@media screen and (max-width: 600px) {
    .main-container {
        padding: 10px;
        gap: 10px; /* Reduz o espaçamento para maximizar o espaço da imagem */
        margin-top: 10px; /* Ajusta a margem superior para melhor visualização */
    }

    .img-wrapper {
        max-width: 100%; /* Imagens ocupam 100% da largura disponível no telemóvel */
    }

    .img-wrapper img {
        height: auto; /* Garante que as imagens respeitem a largura */
        max-height: 60vh; /* Limita a altura a 60% da tela, mantendo a proporção */
        object-fit: contain; /* Ajusta a imagem dentro do contêiner sem cortar */
    }
}

/* Telas muito pequenas (até 400px) */
@media screen and (max-width: 400px) {
    .main-container {
        padding: 5px;
        gap: 5px; /* Menor espaçamento para imagens ainda maiores */
        margin-top: 10px;
    }

    .img-wrapper img {
        height: auto; /* Mantém a largura como base */
        max-height: 50vh; /* Limita ainda mais a altura em dispositivos pequenos */
        object-fit: contain;
    }
}

/* Estilo do Carrossel */
.image-slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* Esconde imagens que estão fora da área visível */
}

.slider-images {
    display: flex; /* Flexbox para organizar as imagens lado a lado */
    transition: transform 0.5s ease-in-out; /* Animação suave ao mudar de slide */
}

.slider-images img {
    width: 100%; /* Cada imagem ocupa 100% da largura do contêiner */
    flex-shrink: 0; /* Evita que as imagens encolham */
    object-fit: cover; /* Assegura que as imagens se ajustem sem distorcer */
}

/* Botões do Slider */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3); /* Transparência para os botões */
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}


/* Seção de Catálogo */
.catalog-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('/image/fotos margys/coleções/allegra/0111.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 20px;
    color: white;
    background-size: cover;
    margin-bottom: -80px;
    
    /* Adicionando uma camada de escurecimento */
    background-color: rgba(0, 0, 0, 0.4); /* Ajuste o valor do alfa (0.4) para escurecer mais ou menos */
    background-blend-mode: darken;
}


.catalog-section h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 40px;
}

.catalog-container {
    display: flex;
    gap: 40px;
}




.catalog-item img {
    width: 50px;
    margin-bottom: 10px;
}



.catalog-item {
    margin-top: 70px;
    background-color: rgba(0, 0, 0, 0.74); /* Transparência leve */
    padding: 20px;
    border-radius: none;
    backdrop-filter: blur(2px); /* Leve desfoque */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 240px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.catalog-item h3 {
    font-size: 1.6rem;
    font-weight: 300;
    color: #DCCA98;
    margin: 0;
}

.catalog-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
  

/* Para telas menores que 768px (tablets e smartphones) */
@media (max-width: 768px) {
    .catalog-section {
        height: auto; /* Ajusta a altura para se adaptar ao conteúdo */
        padding: 10px; /* Diminui o padding */
    }

    .catalog-section h2 {
        margin-top: 110px;
        font-size: 2.5rem; /* Reduz o tamanho da fonte */
        margin-bottom: 20px; /* Diminui a margem inferior */
    }

    .catalog-container {
        flex-direction: column; /* Muda para coluna em telas menores */
        align-items: center; /* Centraliza os itens */
    }

    .catalog-item {
        width: 90%; /* Aumenta a largura dos itens */
        height: auto; /* Permite que a altura se ajuste ao conteúdo */
        margin-top: 70px; /* Diminui a margem superior */
        
    }

    .catalog-item img {
        width: 40px; /* Diminui o tamanho das imagens */
    }

    .catalog-item h3 {
        font-size: 1.4rem; /* Reduz o tamanho do texto */
    }
}

/* Para telas entre 769px e 1024px (dispositivos menores de desktop) */
@media (min-width: 769px) and (max-width: 1024px) {
    .catalog-section {
        padding: 15px; /* Ajusta o padding */
    }

    .catalog-section h2 {
        font-size: 3rem; /* Ajusta o tamanho da fonte */
    }

    .catalog-container {
        flex-direction: row; /* Mantém a disposição em linha */
    }

    .catalog-item {
        width: 220px; /* Ajusta a largura */
    }

    .catalog-item h3 {
        font-size: 1.5rem; /* Ajusta o tamanho do texto */
    }
}

/* Para telas maiores que 1024px (desktop) */
@media (min-width: 1025px) {
    .catalog-section {
        padding: 20px; /* Padding original */
    }

    .catalog-section h2 {
        font-size: 3.5rem; /* Tamanho de fonte original */
    }

    .catalog-item {
        width: 240px; /* Largura original */
    }

    .catalog-item h3 {
        font-size: 1.6rem; /* Tamanho de fonte original */
    }
}



/* Estilo para o contêiner do mapa */
.global-map-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.global-map-wrapper img {
    width: 100%;
    max-width: 900px; /* Ajuste conforme o tamanho desejado */
}

/* Estilo para o texto no canto superior esquerdo */
.custom-text-top-left {
    position: absolute;
    top: 0;
    left: 110px;
    padding: 10px;
    font-size: 24px;
    color: #333; /* Personalize a cor do texto */
}

/* Estilo para o texto no canto inferior direito */
.custom-text-bottom-right {
    position: absolute;
    bottom: 0;
    right: 110px;
    padding: 10px;
    font-size: 24px;
    color: #333; /* Personalize a cor do texto */
}

/* Estilo para o contêiner de texto */
.global-market-text {
    text-align: center;
    margin: 40px auto;
    width: 80%;
    max-width: 900px;
}

.global-market-text h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.global-market-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}



/* Estilos padrões já existentes acima */

/* Para dispositivos pequenos (celulares, abaixo de 600px) */
@media (max-width: 600px) {
    .global-map-wrapper {
        margin-top: 10px;
    }

    .global-map-wrapper img {
        max-width: 100%;
    }

    .custom-text-top-left,
    .custom-text-bottom-right {
        font-size: 18px; /* Reduzindo o tamanho da fonte */
        padding: 5px;
    }

    .global-market-text {
        width: 90%; /* Diminuindo a largura do contêiner */
    }

    .global-market-text h2 {
        font-size: 20px;
    }

    
    .custom-text-top-left{
        margin-left: -94px;
    }

    .custom-text-bottom-right{
        margin-right: -90px;
    }
    

    .global-market-text p {
        font-size: 14px;
    }
}

/* Para dispositivos médios (tablets, entre 600px e 900px) */
@media (min-width: 601px) and (max-width: 900px) {
    .global-map-wrapper {
        margin-top: 15px;
    }

    .global-map-wrapper img {
        max-width: 100%;
    }

    .custom-text-top-left,
    .custom-text-bottom-right {
        font-size: 20px; /* Ajustando o tamanho da fonte */
        padding: 8px;
    }

    .global-market-text {
        width: 85%; /* Ajuste da largura para tablets */
    }

    .global-market-text h2 {
        font-size: 22px;
    }

    .global-market-text p {
        font-size: 15px;
    }
}

/* Para dispositivos grandes (desktops grandes, acima de 900px) */
@media (min-width: 901px) {
    .global-map-wrapper {
        margin-top: 20px;
    }

    .global-map-wrapper img {
        max-width: 900px;
    }

    .custom-text-top-left,
    .custom-text-bottom-right {
        font-size: 24px; /* Mantém o tamanho da fonte maior */
        padding: 10px;
    }

    .global-market-text {
        width: 80%;
        max-width: 900px; /* Limita a largura para layouts maiores */
    }

    .global-market-text h2 {
        font-size: 24px;
    }

    .global-market-text p {
        font-size: 16px;
    }
}



.buttons button, .novoBotao {
    margin-top: 50px;
    background-color: black;
    color: #DCCA98;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: none;
    font-size: 18px;
} 



.office-video {    
    margin-top: 135px;
    margin-left: 85px;
    width: 68%; /* Ou ajuste conforme necessário */
    height: auto; /* Mantém a proporção do vídeo */
    border: none; /* Remove bordas se houver */
}


/* Para tablets em retrato (entre 600px e 768px) */
@media (max-width: 768px) {
    .office-video {
        margin-top: 200px;
        margin-left: 0px;
        width: 85%; /* Ajuste conforme necessário */
    }
}

/* Para smartphones (entre 320px e 600px) */
@media (max-width: 600px) {
    .office-video {
        margin-top: 110px;
        margin-left: 0px;
        width: 95%; /* Ajuste conforme necessário */
    }
}



@media (max-width: 1024px) {
    .office-video{
        margin-left: 1px;
    }
}


.clst{
    font-weight: bold; /* Torna o texto em negrito no hover */
    font-size: 15px;
}




@media (max-width: 1200px) {
    .office-video{
        margin-left: 1px;
    }
}



#loading {
    z-index: 9999; /* Colocar acima de todos os outros elementos */
    pointer-events: none; /* Permitir interações com o overlay */
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logolz {
    width: 250px; /* Ajuste o tamanho conforme necessário */
    animation: bounce 1s ease-in-out infinite;
}

/* Animação de movimento para cima e para baixo */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* Posição original */
    }
    50% {
        transform: translateY(-10px); /* Mover 10px para cima */
    }
}





/* Estilos base */
.titulo {
    margin-left: 40px;
    font-family: 'Montserrat', sans-serif;
    margin-top: 150px;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #DCCA98;
}

.subtitulo {
    margin-top: 35px;
    margin-left: 40px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #555;
}

.texto {
    margin-left: 40px;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

/* Media queries para telas menores */
@media (max-width: 768px) {
    .titulo {
        font-size: 28px;
    }

    .subtitulo {
        font-size: 20px;
    }

    .texto {
        font-size: 16px;
    }
}

/* Media queries para telas bem pequenas, como smartphones */
@media (max-width: 480px) {
    .titulo {
        font-size: 24px;
    }

    .subtitulo {
        font-size: 18px;
    }

    .texto {
        font-size: 14px;
    }
}

