/* === NOVO ESTILO PARA O MENU HAMBÚRGUER === */
/* Esconde o menu móvel e o ícone do hambúrguer em ecrãs grandes */
.mobile-menu,
.burger-menu-icon {
  display: none;
}

/* === VARIÁVEIS === */
:root {
  --black: #000;
  --gray-100: #f6f6f6;
  --border: #e5e5e5;
  --pad-x: 120px;
}

/* === RESET E BASE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: #fff;
  line-height: 1.6;
  font-size: 14px;
}

/* === HEADER === */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px var(--pad-x);
  background: #fff;
  border-bottom: none;
  box-shadow: none;
}

.site-header .menu-left {
  justify-self: start;
}

.site-header .logo {
  text-decoration: none;
  color: inherit;
  text-align: center;
  justify-self: center;
}

/* Ajuste o menu-right para suportar o flex (necessário para o seletor) */
.site-header .menu-right {
  justify-self: end;
  display: flex; /* Adicionado para alinhar o seletor de idioma e os ícones */
  align-items: center;
}

.site-header nav a,
.site-header .menu-right a {
  text-decoration: none;
  margin: 0 15px;
  color: var(--black);
  font-weight: 400;
  transition: color 0.2s ease;
  font-size: 16px;
}

/* Sublinhado na página ativa */
.site-header nav a.active {
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
}

.site-header .menu-right a {
  font-size: 1.1rem;
}

.site-header .logo-img {
  height: 60px; /* Ajusta este valor conforme o tamanho desejado para o teu logo */
  width: auto;
}

/* --- ESTILOS PARA O SELETOR DE IDIOMA --- */
.language-switcher {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 10px; /* Garante que está separado dos ícones */
  cursor: pointer;
}

.language-switcher span {
  padding: 0 5px;
  opacity: 0.5; /* Língua inativa */
  transition: opacity 0.2s;
}

.language-switcher span.active-lang {
  opacity: 1; /* Língua ativa */
  cursor: default;
  color: var(--black); /* Usar a variável de cor principal */
}

.language-switcher span:not(.active-lang):hover {
  opacity: 0.7;
}


/* === HERO (Homepage) === */
#hero {
  position: relative;
}

.hero-image {
  position: relative;
  margin: 40px var(--pad-x);
  overflow: hidden;
}

/* NOVO ESTILO: OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black); /* Usar preto */
  opacity: 0.3; /* 30% de opacidade */
  z-index: 2; /* Garante que está por cima da imagem */
}

.hero-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 30%;
  left: 8%;
  color: white;
  /* NOVO: Elevamos o z-index para garantir que fica por cima do overlay */
  z-index: 3; 
  /* max-width: 480px; */
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  line-height: 1.4;

  /* NOVO: Reduzir a opacidade para criar profundidade */
  opacity: 0.9;

}

.hero-text .btn {
  margin-top: 12px;
}

/* === BOTÕES === */
.btn {
  display: inline-block;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  font-weight: 600;
  transition: opacity 0.2s ease;

  /* NOVO: Rebordo fino branco para contraste */
  border: 1px solid white;

  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 22px;
}

.btn:hover {
  opacity: 0.85;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.gallery-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px auto;
  line-height: 1.5;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  justify-content: center;
  gap: 120px;
}

.quadro {
  padding: 0;
  margin: 0;
  background: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.quadro p {
  margin-top: 10px;
  font-weight: 400;
}

.quadro img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.quadro:hover {
  transform: scale(1.03);
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow: hidden;
  box-sizing: border-box;
}

#close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

.modal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /*background: rgba(255, 255, 255, 0.2);*/
  background: transparent;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s ease;
  z-index: 1001;
}

#prev-btn {
  left: 20px;
}

#next-btn {
  right: 20px;
}

#modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px; /* Um valor de gap moderado */
  width: 90%;
  height: 90%;
}

#modal-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#modal-image-container img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  /* border-radius: 6px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#modal-text-container {
  color: white;
  max-width: 400px;
  text-align: left;
}

#modal-text-container h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
#modal-text-container p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* === CONTACT === */
#contact-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 120px var(--pad-x);
}

.contact-left {
  line-height: 1.5;
  color: #000;
}

.contact-left h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-right h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

#contact-copy {
  text-align: center;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

#contact form {
  display: flex;
  flex-direction: column;
}

.name-row,
.form-row {
  margin-bottom: 12px;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#contact input,
#contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  width: 100%;
}

#contact button {
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 12px 28px;
  transition: opacity 0.2s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 22px;

  display: block; /* O botão comporta-se agora como um bloco */
  margin: 0 auto; /* Centra o bloco horizontalmente */
}

#contact button:hover {
  opacity: 0.85;
  transform: scale(1.02);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* === ABOUT === */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px var(--pad-x);
}

#about img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.about-text {
  max-width: 600px; /* Limita a largura do bloco de texto para torná-lo mais legível */
  margin: 0 auto; /* Centra o bloco de texto na sua coluna */
}

.about-text h2 {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-align: left;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.5;
}

/* === FOOTER === */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px var(--pad-x);
  border-top: none;
  background: #fff;
  text-align: center;
  margin-top: 60px;
}

.site-footer p {
  margin: 0;
}

.footer-icons {
  display: none;
}

.site-footer a {
  color: rgb(0, 0, 0); /* Define a cor para preto */
  text-decoration: underline; /* para ter o sublinhado por defeito */
  transition: opacity 0.2s ease;
}

.site-footer a:hover {
  opacity: 0.85; /* Adiciona um efeito ao passar o rato */
}

/* === NOVO ESTILO PARA A PÁGINA DE PRIVACIDADE === */
.privacy-container {
  max-width: 960px;
  margin: 80px auto;
  padding: 0 var(--pad-x);
  line-height: 1.6;
}

.privacy-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.privacy-container p, .privacy-container ul {
  margin-bottom: 20px;
}

.privacy-container ul {
  padding-left: 40px;
}

/* === ESTILO PARA A PÁGINA DE SHIPPING === */
.shipping-container {
  max-width: 960px; /* Podes ajustar este valor */
  margin: 80px auto;
  padding: 0 var(--pad-x);
  line-height: 1.6;
}

.shipping-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.shipping-container p, .shipping-container ul {
  margin-bottom: 20px;
}

.shipping-container ul {
  padding-left: 40px; /* Espaçamento para as 'bullets' */
}

/* === FORMULÁRIO: FEEDBACK === */
#contact .success-msg,
#contact .error-msg {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  /*display: none;*/
}

#contact .success-msg {
  background-color: #d4edda;
  color: #155724;
}

#contact .error-msg {
  background-color: #f8d7da;
  color: #721c24;
}

/* === RESPONSIVO === */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 300px);
    gap: 30px;
  }
  #contact-section {
    grid-template-columns: 1fr;
  }
}

/* CONGELA O SCROLL QUANDO O MODAL ESTÁ ATIVO */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {

    /* --- [ALTERAÇÃO CRÍTICA] CORREÇÃO DE MARGENS LATERAIS HERO --- */

    /* 1. Redefine a variável de padding lateral para mobile */
    :root {
        --pad-x: 20px;
    }

    /* 2. Remove as margens laterais do .hero-image, deixando o --pad-x (20px) apenas para o padding interno do texto. */
    .hero-image {
        margin: 40px 0; /* Apenas margem vertical, remove a horizontal (120px) */
    }

    /* 3. Ajusta o padding do cabeçalho usando o novo --pad-x */
    .site-header {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 20px var(--pad-x);
    }
    
    /* 4. Garante que o texto do HERO fica mais para a esquerda e tem padding */
    .hero-text {
        top: 20%;
        left: 0; /* Remove o left: 8% */
        padding: 0 var(--pad-x); /* Adiciona o novo padding lateral (20px) */
        max-width: 100%; /* Ocupa a largura total para respeitar o padding */
    }

    /* --- CORREÇÃO DE MARGENS DA GALERIA --- */

    /* 5. Corrige o padding do texto introdutório da galeria e centraliza */
    .gallery-intro {
        padding: 0 var(--pad-x);
        text-align: center;
        max-width: none; /* Permite que o elemento ocupe 100% - padding */
    }

    /* 6. Aplica o padding lateral à grelha para afastar os quadros da borda */
    .grid {
        padding: 0 var(--pad-x);
        grid-template-columns: 1fr;
        gap: 20px; 
    }
    
    .quadro img {
        height: auto;
    }

    /* --- CORREÇÕES FINAIS E ROBUSTAS DO MODAL (POP-UP) --- */

    /* Garante que o modal principal se ajusta ao tamanho do ecrã */
    .modal {
        height: 100vh;
    }

    /* 7. Ajusta o contentor principal do modal (CRÍTICO: Aumenta padding-bottom) */
    #modal-content {
        flex-direction: column;
        height: 100%; 
        overflow-y: hidden; 
        gap: 15px; 
        padding-top: 100px; 
        padding-bottom: 120px; /* AUMENTADO: Garante que há espaço para o botão acima da barra do sistema */
        width: 100%;
        box-sizing: border-box;
    }

    /* 8. Limita a altura da imagem */
    #modal-image-container {
        height: auto;
        max-width: 100%;
    }
    #modal-image-container img {
        max-height: 45vh; 
        width: auto;
        flex-shrink: 0; 
    }

    /* 9. A rolagem deve ocorrer AQUI e a altura deve ser suficiente para rolar o botão para cima */
    #modal-text-container {
        padding: 0 var(--pad-x); 
        width: 100%;
        /* Aumentado para garantir que o scroll interno consegue levar o conteúdo para cima */
        max-height: 60vh; 
        overflow-y: auto; 
    }

    /* --- OUTRAS ALTERAÇÕES MOBILE --- */

    .site-header nav a,
    .site-header .menu-right a {
        margin: 0 5px;
    }
    .site-header .menu-right a#email-icon { 
        display: none; 
    }

    #about {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px var(--pad-x);
    }
    #about img {
        margin-bottom: 20px;
    }
    #contact-section {
        padding: 40px var(--pad-x);
    }
    #hero {
        margin: 60px 0;
    }
    
    /* Esconde o menu de desktop */
    #desktop-menu {
        display: none;
    }
    /* Mostra o ícone do hambúrguer e o menu móvel */
    .burger-menu-icon {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        order: -1;
    }
    .mobile-menu {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        text-align: center;
        border-top: 1px solid #e5e5e5;
        z-index: 999;
    }
    .mobile-menu a {
        padding: 15px;
        border-bottom: 1px solid #e5e5e5;
    }
    .mobile-menu.active {
        display: flex;
    }
    
    /* Ajusta o layout do modal para empilhar os elementos */
    .modal {
        align-items: flex-start;
    }
    
    /* Outras secções que usam --pad-x e devem ser ajustadas */
    .privacy-container,
    .shipping-container,
    .site-footer {
        padding-left: var(--pad-x);
        padding-right: var(--pad-x);
    }
}