/* Estilos globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navegação */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

/* Logo na navegação */
.logo {
  height: 60px;
}

/* Logotipo na secção herói */
.hero-logo {
  width: 160px;
  height: auto;
  margin: 0 auto 1rem;
}

.logo {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.menu a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #cda347;
}

/* Herói */
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Ajustar vídeo local na secção herói */
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Botões de partilha permanentes */
.social-buttons {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1100;
}

.social-buttons a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-buttons a img:hover {
  transform: scale(1.15);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #cda347;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #cda347;
  color: #0a0a0a;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #b58d3e;
}

/* Secções */
section {
  padding: 4rem 2rem;
}

section:nth-of-type(even) {
  background-color: #0d0d0d;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #cda347;
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
}

/* Listas */
#pontos ul,
#acabamentos ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

#pontos li,
#acabamentos li {
  background-color: #111;
  border: 1px solid #cda347;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#pontos li strong,
#acabamentos li strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #cda347;
}

#pontos li p,
#acabamentos li p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Galeria */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Localização */
#localizacao img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

#localizacao p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Preço */
#preco .preco {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #cda347;
  text-align: center;
}

#preco p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Contactos */
.contact-list {
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

.contact-list a {
  color: #cda347;
  text-decoration: none;
}

/* Rodapé */
footer {
  background-color: #0d0d0d;
  color: #888;
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}