body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fff7f7;
  color: #333;
}

/* ===== Header ===== */
header {
  background-color: #dd7070;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 90px;
  margin-right: 1rem;
}

header h1 {
  font-size: 2rem;
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(rgba(221,112,112,0.7), rgba(221,112,112,0.7)),
              url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1200&q=60')
              center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

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

.hero-text p {
  font-size: 1.3rem;        /* aumenta o tamanho */
  font-weight: 500;         /* ligeiramente mais forte */
  color: #fefefe;           /* branco puro para mais contraste */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.25); /* destaca no fundo */
  margin-bottom: 2rem;
}


/* ==== Botões principais ==== */
.btn,
.btn-orcamento {
  background-color: #7dd6e8;
  color: black;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  display: block;
  width: fit-content;
  margin: 0.4rem auto;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn:hover,
.btn-orcamento:hover {
  background-color: #66c6db;
  transform: translateY(-2px);
  text-decoration: none;
}


/* ===== Highlights ===== */
.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  background-color: #fdf1f1;
}

.highlight {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 250px;
  text-align: center;
  transition: transform 0.2s;
}



.highlight i {
  font-size: 2.5rem;
  color: #dd7070;
  margin-bottom: 1rem;
}

.highlight h3 {
  color: #dd7070;
  margin-bottom: 0.5rem;
}

/* ===== Contactos ===== */
.contactos {
  background-color: #ffeaea;
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
}

.contactos h2 {
  color: #dd7070;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.contactos-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.lado-esquerdo,
.lado-direito {
  flex: 1 1 200px;
}

.contactos p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.contactos i {
  color: #dd7070;
  margin-right: 0.5rem;
}

.contactos a {
  color: #dd7070;
  text-decoration: none;
}

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

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #f0dada;
}

/* --------- Páginas das Fichas --------- */
main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

main h3 {
  margin-top: 2rem;
  color: #dd7070;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

main ul {
  list-style-type: none;
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

main li {
  margin: 0.5rem 0;
}

main a {
  text-decoration: none;
  color: #444;
  font-weight: normal;
  transition: 0.2s ease;
}

main a:hover {
  text-decoration: underline;
  color: #dd7070;
}

/* Menu hamburguer */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav ul.nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  nav ul.nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  nav ul.nav-list li {
    margin: 0.5rem 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  nav ul.nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  nav ul.nav-list.active {
    max-height: 300px; /* altura suficiente para o conteúdo */
    transition: max-height 0.3s ease-in;
  }
}



/* Corrigir alinhamento dos botões na secção hero */
.hero-text {
  text-align: center;
}

.hero-text a {
  display: block;           /* força cada botão a ficar numa linha */
  margin: 0.8rem auto;      /* centraliza e dá espaçamento */
  width: fit-content;       /* mantém o tamanho justo ao texto */
}

.highlight:hover {
  transform: none;
}

/* === Desativar completamente qualquer animação nas caixas === */
.highlight,
.info-box {
  transition: none !important;
  transform: none !important;
  cursor: default !important;
}

.highlight:hover,
.info-box:hover {
  transform: none !important;
  box-shadow: none !important;
  cursor: default !important;
}

/* === Neutralizar completamente o hover das caixas informativas === */
.highlight,
.info-box {
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
  cursor: default !important;
}

.highlight:hover,
.info-box:hover {
  transform: none !important;
  box-shadow: none !important;
  cursor: default !important;
  background-color: inherit !important; /* evita mudança de cor */
}

/* === CORREÇÃO FINAL: desativar qualquer efeito hover nas caixas === */
.highlight,
.info-box {
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
  background-color: inherit !important;
  cursor: default !important;
}

.highlight:hover,
.info-box:hover {
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
  background-color: inherit !important;
  cursor: default !important;
}

/* === Caixas informativas estáticas (sem hover) === */
.highlight,
.info-box {
  background-color: #ffffff;                 /* fundo branco suave */
  border-radius: 10px;                      /* cantos arredondados */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);/* sombra leve e fixa */
  padding: 1.5rem;
  text-align: center;
  transition: none !important;              /* sem animação */
  transform: none !important;
  cursor: default !important;
}

/* Mesmo no hover, nada muda */
.highlight:hover,
.info-box:hover {
  background-color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transform: none !important;
  cursor: default !important;
}

/* === Caixas informativas sempre visíveis === */
.highlight,
.info-box {
  background-color: #ffffff;                /* fundo branco fixo */
  border-radius: 10px;                     /* cantos suaves */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);/* sombra leve permanente */
  padding: 1.5rem;
  text-align: center;
  transition: none !important;
  transform: none !important;
  cursor: default !important;
  margin: 1rem auto;
  max-width: 300px;                        /* ajusta conforme o layout */
}

/* hover não altera nada */
.highlight:hover,
.info-box:hover {
  background-color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transform: none !important;
  cursor: default !important;
}

/* === CAIXAS INFORMATIVAS SEMPRE VISÍVEIS === */
.highlight,
.info-box {
  display: inline-block;                 /* aparecem lado a lado se houver espaço */
  background-color: #ffffff !important;  /* fundo branco visível */
  border-radius: 10px;                   /* cantos suaves */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important; /* sombra fixa */
  padding: 1.5rem;
  margin: 1rem;
  text-align: center;
  opacity: 1 !important;                 /* garantir que são visíveis */
  visibility: visible !important;        /* garantir que não estão escondidas */
  transform: none !important;            /* nada de movimentos */
  transition: none !important;           /* sem efeitos */
  cursor: default !important;
}

/* no hover, absolutamente nada muda */
.highlight:hover,
.info-box:hover {
  background-color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  cursor: default !important;
}

/* ===== Página Sobre Nós ===== */
.sobre-nos {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.sobre-nos h2 {
  color: #dd7070;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.sobre-nos p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* ===== Página Sobre Nós ===== */
.sobre-nos {
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.sobre-nos h2 {
  color: #dd7070;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.sobre-nos p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* imagem topo */
.imagem-sobre {
  width: 100%;
  max-width: 900px;                /* mantém larga e proporcional */
  height: auto;
  max-height: 280px;               /* limita a altura! */
  object-fit: cover;               /* corta apenas o excesso vertical */
  border-radius: 10px;
  margin: 0 auto 2rem auto;
  display: block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.sobre-nos h2 {
  margin-top: 1.5rem;
}

/* Botões uniformes em todas as páginas */
.btn {
  background-color: #7dd6e8;
  color: black;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn:hover {
  background-color: #66c6db;
  transform: translateY(-2px);
  text-decoration: none;
  color: black;
}

/* ===== DICAS DESCOMPLICADAS ===== */
.dicas {
  background-color: #fff7f7;
  text-align: center;
  padding: 3rem 1rem;
}

.dicas h2 {
  color: #dd7070;
  font-size: 1.5rem; /* título mais discreto */
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;

}


.dicas .intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.carrossel-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.carrossel {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1rem;
  max-width: 350px;
  width: 100%;
}

.carrossel h3 {
  color: #dd7070;
  margin-bottom: 1rem;
}

.imagens {
  position: relative;
  overflow: hidden;
}

.imagens-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.imagens img {
  width: 100%;
  border-radius: 8px;
  flex-shrink: 0;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 0.3rem 0.6rem;
  color: #dd7070;
  transition: background 0.2s;
}

button.prev:hover,
button.next:hover {
  background-color: #ffeaea;
}

button.prev {
  left: 5px;
}

button.next {
  right: 5px;
}

/* Se o carrossel tiver só uma imagem, centra e remove setas */
.carrossel.single .imagens button {
  display: none;
}

.carrossel.single .imagens-wrapper {
  justify-content: center;
}

