/* --- GERAL --- */

* {  /* reset */
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.2;
    background-color: #000000;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
}

li { /* retira os estilos padrões da lista */
  list-style-type: none;
}

h1 {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* clamp para adaptar ao tamanho da tela */
  line-height: 1.3;
  color: #ffffff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.9), /* Opção para melhorar visibilidade */
    0 0 16px rgba(0, 0, 0, 0.6);
}

h2 {
  font-weight: 700;
  font-size: 2.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
}

h3 {
  font-weight: 700;
  font-size: 2rem;
  color: #ffffff;
}

h4 {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}

.subtitulo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D76A6E;
}

p {
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
}

a {
  font-size: 1rem;
  color: #ffffff;
}

label span { /* estilo do '*' nos campos required dos formulários */
  color: #D76A6E;
}

.botao { /* estilo dos botões */
  background-color: #71171E;
  color: #ffffff;
  border: none;
  border-radius: 50px; /* Laterais arredondadas */
  padding: 15px 30px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 40px 0 60px 0;
  cursor: pointer;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}

.botao:hover { /* animação no 'hover' sobre os botões */
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.botao:focus-visible { /* Para navegação por teclado */
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

/* Header */
.cabecalho { /* cabeçalho sem fundo - inicial */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  z-index: 99;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0)
  );
}

.logo img { /* sem logo (pequeno) pois tem a landing page tem logo maior */
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: none;
}

.nav-principal {
  z-index: 1000;
}

nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu-link {
  margin-right: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 2px;
  transition: all 0.2s ease;
}

.menu-link:focus-visible { /* Para navegação por teclado */
  outline: 2px solid #D76A6E;
  outline-offset: 4px;
}

.cabecalho.active { /* cabeçalho com fundo - restante página */
  background-color: #000000;
  border-bottom: 1px solid #71171E;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  transition: all 0.2s ease-in-out;
}

.cabecalho.active img { /* logo pequeno visível na restante página */
  display: block;
  margin-left: 30px;
}

.menu-link:hover { /* animação no 'hover' sobre os links */
  color: #D76A6E;
  transition: all 0.2s ease;
}

.menu-link.active { /* estilo dos links ativos */
  color: #D76A6E;
  font-weight: 700;
}

/* Páginas legais */
.cabecalho-legal {
  position: sticky;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid #71171E;
}

.cabecalho-legal .logo img {
  display: block;
  margin-left: 0;
}

.legal-main {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
}

.legal-page {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.legal-hero {
  text-align: left;
}

.legal-hero h1 {
  margin-bottom: 0.75rem;
}

.legal-meta {
  color: #c4b5b6;
  font-size: 0.95rem;
}

.legal-card {
  background: rgba(113, 23, 30, 0.12);
  border: 1px solid rgba(215, 106, 110, 0.25);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.legal-card h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: 2px;
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
  color: #f3e7e7;
  line-height: 1.7;
}

.legal-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.legal-card li {
  list-style-type: disc;
  margin-bottom: 0.5rem;
}

.legal-card a,
.legal-nav a {
  color: #D76A6E;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-top: 0.5rem;
}

.legal-nav a {
  text-decoration: none;
  font-weight: 700;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: #ffffff;
}

/* --- BODY--- */
main {
    flex-grow: 1;
}

/* Landing Page */
#intro {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
  min-height: 750px;
  height: 100svh;
  width: 100%;
}

 /* Opção para melhorar visibilidade */
#intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 2;
}

.hero-img {
  position: absolute;
  grid-area: 1 / 1 / 4 / 4;
  min-height: 750px;
  height: 100svh;
  width: 100%;
  object-fit: cover;
  object-position: top left;
  z-index: 1;
}

.logo-branco {
  width: clamp(160px, 16vw, 270px); /* clamp p/ adaptar o tamanho do logo ao tamanho da tela */
  margin-top: clamp(1.5rem, 6vh, 4rem); /* clamp p/ a margem superior ao tamanho da tela */
  height: auto;
  grid-area: 1 / 2;
  justify-content: center;
  z-index: 4;
}

/* Texto / Hook */
.hook {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-area: 2 / 1;
  gap: clamp(0.8rem, 2vh, 1.5rem);
  margin-left: clamp(1.5rem, 6vw, 5rem);
  justify-content: left;
  z-index: 4;
}

/* Sobre Nós */
#sobre-nos {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  min-height: 100svh;
  width: 100%;
  scroll-margin-top: 50px;
  box-shadow: 0 2px 8px 2px rgba(0, 0, 0, 0.7);
}

.img-sobre-nos {
  width: clamp(300px, 40vw, 650px); /* clamp p/ adaptar o tamanho da imagem ao tamanho da tela */
  height: auto;
  grid-area: 1 / 1;
}

.texto-sobre-nos {
  grid-area: 1 / 2;
  text-align: center;
  padding: 0 2rem;
}

.texto {
  text-align: justify;
  line-height: 1.6;
  font-size: clamp(1rem, 2vw, 1.1rem); /* clamp p/ adaptar o tamanho do texto ao tamanho da tela */
  margin: 5% 20%;
}

.indent {
  text-indent: 2ch;
}

/* Parallax - Efeito de movimento sobre a imagem */
.parallax {
  background-color: #71171E; /* Fallback */
  background-image: url("../imagens/vinha-parallax.jpg");
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll; /* fallback default */
}

/* Galeria de produtos */
#galeria-produtos {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  min-height: 650px;
  width: 100%;
  background-color: #000000; /* Fallback */
  background-image: url("../imagens/textura-fundo.jpg"); /* Imagem com padrão / textura de fundo que imita o padrão das garrafas */
  background-repeat: repeat;
  background-size: 300px;
  scroll-margin-top: 50px;
  box-shadow: 0 -2px 8px 2px rgba(0, 0, 0, 0.7);
}

#galeria-produtos h3 {
  margin-top: 80px;
}

.produtos-container {
  position: relative;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* "Feitiço Mágico" para adaptar o tamanho do grid ao tamanho da tela */
  gap: 60px 20px;
  justify-items: center;
  align-items: center;
  background-color: #000000;
  border-radius: 5px; /* Rebordo arredondado */
  padding: 60px 40px;
  width: 100%;
  max-width: 1100px;
}

.produto-card {
  position: relative;
  border-radius: 5px; /* Rebordo arredondado */
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  display: block;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.produto-trigger {
  all: unset;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.produto-trigger:focus-visible {
  outline: 2px solid #CB5258;
  outline-offset: 4px;
}

.produto-img {
  display: block;
  border-radius: 5px; /* Rebordo arredondado */
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.3s ease; QUANDO AS IMAGENS FOREM LINKS PARA PÁGINA DE PRODUTO */
}
/* .produto-img:focus-visible { /* Para navegação por teclado - /
  outline: 2px solid #CB5258;
  outline-offset: 4px;
} */
 
/* QUANDO AS IMAGENS FOREM LINKS PARA PÁGINA DE PRODUTO
.produto-img:hover { * animação no 'hover' sobre as imagens *
  transform: scale(1.05);
  transition: all 0.2s ease;
} */

.produto-caption { /* Texto sobre as imagens */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient( /* Efeito de degradé */
  to top,
  rgba(113, 23, 30, 0.95) 0%,
  rgba(113, 23, 30, 0.6) 50%,
  rgba(113, 23, 30, 0) 100%
);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .produto-card:hover .produto-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

.produto-card:focus-within .produto-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Make caption visible when card has .open (touch devices) */
.produto-card.open .produto-caption {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* QUANDO AS IMAGENS FOREM LINKS PARA PÁGINA DE PRODUTO
.produto-card:hover .produto-img,
.produto-card:focus-within .produto-img {
  transform: scale(1.05);
} */

.separador-img { /* Imagem como separador entre secções */
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Contatos */
#contactos {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  min-height: 750px;
  height: auto;
  padding: 4rem 2rem;
  width: 100%;
  scroll-margin-top: 50px;
  box-shadow: 0 -2px 8px 2px rgba(0, 0, 0, 0.7);
}

.mapa-container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 650px;
}

.mapa-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}


.icon-link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.icon-link:hover, /* animação no 'hover' sobre os items dos contactos */
.icon-link:focus-within { /* Para navegação por teclado */
  transform: scale(1.05);
  transition: all 0.2s ease;
}

.icon {
   flex-shrink: 0;
  color: #D76A6E;
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

/* Formulário de Contacto */
#form-contact {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 45vw;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

#form-contact .nome-campos {
  border: none;
  display: flex;
  color: #ad9c9d;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0;
}

#form-contact .campo {
  display: flex;
  color: #ffffff;
  flex-direction: column;
}

#form-contact label {
  color: #ffffff;
  display: inline-block;
  font-size: 0.9rem;
  text-align: left;
  margin-top: 5px;
}

#form-contact input, #form-contact textarea {
  margin: 10px 0;
  padding: 5px;
  border-radius: 5px; /* Rebordo arredondado */
  border: 1px solid #ffffff;
  background-color: #000000;
  color: #ffffff;
}

#form-contact input:focus, #form-contact textarea:focus {
  outline: none;
  border: 2px solid #D76A6E;
}

#form-contact input::placeholder, #form-contact textarea::placeholder {
  color: #c4b5b6;
  font-family: inherit;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#form-contact .botao {
  width: 130px;
  align-self: center;
  margin: 0;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.form-feedback.is-success {
  color: #9fd8a3;
}

.form-feedback.is-error {
  color: #f29ca0;
}

/* Video de apresentação */
.video-corp { 
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 750px;
  width: 100%;
  background-color: #000000; /* Fallback */
  background-image: url("../imagens/textura-fundo.jpg"); /* Imagem com padrão / textura de fundo que imita o padrão das garrafas */
  background-repeat: repeat;
  background-size: 300px;
  box-shadow: 0 -2px 8px 2px rgba(0, 0, 0, 0.7);
}

video {
  border-radius: 10px; /* Rebordo arredondado */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* --- FOOTER --- */
footer {
  display: flex;
  flex-direction: column;
  background-color: #000000;
  color: #ffffff;
}

/* Footer Top */
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  border-bottom: 1px solid #71171E;
}

.links-contactos {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer-middle {
  position: relative;
  margin-top: 20px;
}

.footer-middle::after {
  content: "";
  display: block;
  width: 40vw;
  height: 1px;
  background-color: #71171E;
  margin: 2rem auto 0; /* centra horizontalmente */
}

.footer-middle ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}

.footer-middle a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.footer-middle a:hover { /* animação no 'hover' sobre os links */
  transform: scale(1.05);
  color: #c4b5b6;
  transition: all 0.2s ease;
}

.footer-middle a:focus-visible { /* Para navegação por teclado */
  outline: 2px solid #CB5258;
  outline-offset: 4px;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  gap: 40px;
  padding: 10px;
  font-size: 0.8rem;
}


/* Modal */
.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(58, 58, 58, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #000000;
  border-radius: 10px; /* Rebordo arredondado */
  padding: 2rem;
  width: clamp(300px, 60%, 600px); /* clamp para o 'width' responsivo */
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* Modal ativo com leve slide */
.modal.show .modal-content {
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  width: min(420px, calc(100% - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(215, 106, 110, 0.45);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  padding: 1.1rem 1.2rem;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.cookie-banner__title {
  margin: 0;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cookie-banner__text {
  margin: 0;
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #000000;
  font-size: 0.9rem;
}

.cookie-banner__button {
  flex-shrink: 0;
  min-width: max-content;
  margin: 0;
  padding: 0.7rem 1rem;
}

.fechar {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

.fechar:focus-visible { /* Para navegação por teclado */
  outline: 2px solid #CB5258;
  outline-offset: 4px;
}

/* Formulário informações */
#form-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#form-info .nome-campos {
  border: none;
  display: flex;
  color: #ad9c9d;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}

#form-info .campo {
  display: flex;
  color: #ffffff;
  flex-direction: column;
}

#form-info label {
  font-size: 0.9rem;
  color: #ffffff;
}

#form-info input, #form-info textarea, #form-info select {
  margin: 10px 0;
  padding: 5px;
  border-radius: 5px; /* Rebordo arredondado */
  border: 1px solid #ffffff;
  font-weight: 400;
  background-color: #000000;
  color: #ffffff;
}

#form-info input:focus, #form-info textarea:focus, #form-info select:focus {
  outline: none;
  border: 2px solid #D76A6E;
}

#form-info input::placeholder, #form-info textarea::placeholder, #form-info select::placeholder {
  color: #ad9c9d;
  font-family: inherit;
  font-weight: 400;
}

#form-info .botao {
  align-self: center;
  margin-top: 0.5rem;
}

/* --- RESPONSIVIDADE --- */

/* DESKTOP - Parallax */

@media (min-width: 1024px) {
  .parallax {
    background-attachment: fixed;
  }
}

/* INTERMÈDIO */
@media (max-width: 1300px) and (min-width: 769px) {

   /* Sobre Nós */
  .texto {
    text-align: left;
    margin: 5% 10%;
  }

  /* Contactos */
  #contactos {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .mapa-contactos {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #form-contact {
    max-width: 100%;
  }

  #form-contact .nome-campos {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  #form-contact .campo {
    width: 100%;
  }
}

/* Mobile */

@media (max-width: 768px) {
  /* Header */
  .menu-toggle {
    display: block;
    margin-right: 1.5rem;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .nav-principal {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-principal.open {
    transform: translateX(0);
  }

  .nav-principal ul {
    flex-direction: column;
    gap: 2rem;
  }

  .menu-link {
    font-size: 1.4rem;
    margin: 0;
  }

  .legal-main {
    padding: 6rem 1rem 3rem;
  }

  .legal-card {
    padding: 1.5rem;
  }
  
  /* Landing Page */
  .hook {
    grid-area: 2 / 1 / 3 / 4;
    align-items: center;
    text-align: center;
    margin-left: 0;
    padding: 0 1rem;
  }

  /* Sobre Nós */
  #sobre-nos {
    display: flex;
    flex-direction: column;
    height: auto; /* deixa crescer conforme conteúdo */
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .img-sobre-nos {
    margin-top: 40px;
  }

  .texto-sobre-nos {
    grid-area: unset;
    text-align: left;
    width: 100%;
  }

  .texto {
    text-align: left;
    margin: 0;
    text-indent: 0;
  }

  /* Galeria de Produtos */
  #galeria-produtos {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background-size: 400px;
  }

  #galeria-produtos h3 {
    margin-top: 40px;
    font-size: 1.5rem;
    text-align: center;
  }

  .produtos-container {
    width: 90%;
    padding: 30px 15px;
  }

  .produto-card, .produto-img {
    max-width: 100%;
    height: auto;
  }

  /* Contatos */
  #contactos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .links-contactos {
    align-self: center;
    text-align: center;
  }

  .links-contactos ul {
    padding: 0;
  }

  .links-contactos li {
    display: flex;
    justify-content: center;
  }

  .links-contactos a {
    display: inline-flex;
    align-items: center;
  }

  .video-corp {
    min-height: 100vh;
    background-size: 400px;
  }

  video {
    width: 100%;
    max-width: 100%;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-middle ul {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Formulário Informações */
  #form-info .nome-campos {
    flex-direction: column;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__button {
    width: 100%;
  }
}

/* MOTION - Acessibilidade */
@media (prefers-reduced-motion: reduce) {
   html {
    scroll-behavior: auto;
  }

  .botao {
    transition: none;
  }

  .botao:hover {
    transform: none;
  }

  .parallax {
    background-attachment: scroll;
  }

  .produto-img,
  .produto-caption {
    transition: none;
    transform: none;
  }

  .modal,
  .modal-content,
  .cookie-banner {
    transition: none;
  }
}