﻿:root {
  --color-primary: #2f6b5e;
  --color-primary-dark: #234f45;
  --color-accent: #c68a3f;
  --color-sand: #f4f1ea;
  --color-ink: #1f2d27;
  --color-muted: #50645c;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 40px rgba(22, 50, 40, 0.12);
  --shadow-float: 0 10px 25px rgba(22, 50, 40, 0.12);
  --max-width: 1140px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.wrapper {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  background: rgba(244, 241, 234, 0.95);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(31, 45, 39, 0.08);
  backdrop-filter: blur(8px);
}

.header__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-ink);
}

.brand__logo {
  width: 72px;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-float);
}

.brand__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__subtitle {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.header__spacer {
  flex: 1;
}

.site-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-nav__link {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-muted);
  transition: all 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus {
  color: var(--color-ink);
  background: rgba(47, 107, 94, 0.12);
}

.site-nav__link.is-active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-float);
}

.header__cta {
  margin-left: auto;
}

.lang-switch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}.lang-switch a {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.lang-switch a:hover,
.lang-switch a:focus {
  border-color: rgba(31, 45, 39, 0.25);
  color: var(--color-ink);
}

.lang-switch .is-active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}

.hero {
  position: relative;
  color: #fff;
  padding: 6rem 0 5rem;
  --hero-image: url("../data1/images/quinta1.jpg");
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(31, 45, 39, 0.75), rgba(47, 107, 94, 0.65)), var(--hero-image) center/cover no-repeat;
  z-index: -2;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 36, 31, 0.2) 0%, rgba(21, 36, 31, 0.65) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero__content {
  display: grid;
  gap: 2rem;
  max-width: 700px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: #d7e8e2;
}

.hero__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero__text {
  font-size: 1.05rem;
  color: #eef6f3;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.button:hover {
  transform: translateY(-2px);
}

.button--filled {
  background: var(--color-accent);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-float);
}

.button--filled:hover {
  box-shadow: 0 16px 32px rgba(198, 138, 63, 0.35);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section--light {
  background: #fff;
}

.section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}

.section__intro {
  max-width: 720px;
  font-size: 1rem;
  color: var(--color-muted);
}

.features-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 45, 39, 0.05);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(47, 107, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.feature-card__title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.feature-card__text {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.card-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 45, 39, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(22, 50, 40, 0.2);
  border-color: rgba(47, 107, 94, 0.35);
}

.card__image-link {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.card__image-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.card__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.card:hover .card__image,
.card:focus-within .card__image {
  transform: scale(1.03);
}

.card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ink);
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.card__tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-primary);
}

.amenities {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.amenities li {
  list-style: none;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(47, 107, 94, 0.1);
  color: var(--color-primary-dark);
  font-weight: 600;
}

.story {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.story__text {
  font-size: 1rem;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.table-wrapper {
  margin-top: 2rem;
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 360px;
}

.table th,
.table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 45, 39, 0.08);
}

.table th {
  background: rgba(47, 107, 94, 0.12);
  font-weight: 700;
  color: var(--color-ink);
}

.table td {
  color: var(--color-muted);
}

.table tr:last-child td {
  border-bottom: none;
}

.gallery {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.gallery figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 45, 39, 0) 0%, rgba(31, 45, 39, 0.18) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.gallery figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(22, 50, 40, 0.18);
}

.gallery figure:hover::after {
  opacity: 1;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.25s ease;
}

.gallery figure:hover img {
  transform: scale(1.05);
}

.gallery figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.callout {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(47, 107, 94, 0.18), rgba(198, 138, 63, 0.15));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(31, 45, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card strong {
  font-size: 1.1rem;
  color: var(--color-ink);
}

.contact-card a {
  color: var(--color-primary);
  font-weight: 600;
}

.map-embed {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.embed-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.embed-container iframe {
  width: 100%;
  border: 0;
  display: block;
}

.site-footer {
      background-color: #fff; /* Fundo claro conforme a imagem de referência */
      padding: 80px 0 40px;
      color: var(--color-muted);
      border-top: 1px solid rgba(31, 45, 39, 0.08);
      font-size: 0.95rem;
    }

    .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 60px;
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .footer-column {
      flex: 1;
      min-width: 300px;
    }

    /* Títulos estilo Imagem (MORADA, GPS, etc) */
    .footer-column h3 {
      font-family: 'Georgia', serif; /* Serifado conforme imagem */
      font-weight: normal;
      font-size: 1.3rem;
      color: var(--color-muted);
      margin: 0 0 20px 0;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .footer-sub-section {
      margin-bottom: 50px;
    }

    .footer-column p {
      margin: 6px 0;
      line-height: 1.6;
    }

    /* Links e Contactos */
    .footer-column a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
    }

    .footer-column a:hover {
      color: var(--color-primary);
    }

    .label-muted {
      color: var(--color-muted);
      opacity: 0.8;
    }

    /* Botão Livro de Reclamações */
    .complaints-btn {
      display: inline-flex;
      align-items: center;
      background: #000;
      color: #fff !important;
      padding: 12px 24px;
      border-radius: 50px;
      text-decoration: none !important;
      font-weight: bold;
      font-size: 0.75rem;
      margin-top: 25px;
      text-transform: none;
    }

    /* Ícones Sociais */
    .social-links {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }

    .social-links svg {
      width: 28px;
      height: 28px;
      fill: var(--color-ink);
      transition: fill 0.2s;
    }

    .social-links a:hover svg {
      fill: var(--color-primary);
    }

    /* Copyright inferior */
    .footer-copyright {
      width: 100%;
      text-align: center;
      margin-top: 60px;
      padding-top: 30px;
      border-top: 1px solid rgba(31, 45, 39, 0.05);
      font-size: 0.85rem;
      color: var(--color-muted);
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: left;
      }
    }

blockquote {
  margin: 0;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.75);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  box-shadow: var(--shadow-soft);
}

.hero--compact {
  padding: 4.5rem 0 3.5rem;
}

.hero--compact .hero__content {
  max-width: 540px;
}

@media (max-width: 900px) {
  .header__content {
    gap: 1rem;
  }

  .header__cta {
    width: 100%;
    order: 4;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }

  .lang-switch {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand__logo {
    width: 64px;
  }

  .hero {
  position: relative;
  color: #fff;
  padding: 6rem 0 5rem;
  --hero-image: url("../data1/images/quinta1.jpg");
  overflow: hidden;
}

  .hero__actions {
    justify-content: center;
  }
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 3.25rem 0;
  }

  .site-nav {
    gap: 0.5rem;
  }

  .site-nav__link {
    width: 100%;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 27, 23, 0.82);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 3000;
}

.lightbox.is-visible {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: min(960px, 92vw);
  max-height: 90vh;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(12, 24, 20, 0.45);
}

.lightbox__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.lightbox__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__close:focus {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

body.lightbox-open {
  overflow: hidden;
}
.gallery figure a {
  display: block;
  position: relative;
  color: inherit;
}






























}







.lang-floating {
  position: fixed;
  top: 50%;
  left: clamp(1rem, 3vw, 2.5rem);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1rem;
  width: 3.4rem;
  border-radius: 24px;
  background: rgba(18, 32, 27, 0.88);
  box-shadow: 0 22px 45px rgba(12, 24, 20, 0.45);
  color: #e1e9e5;
  z-index: 1200;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-floating__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.lang-floating__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(225, 233, 229, 0.45);
  background: transparent;
  color: #e1e9e5;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lang-floating__item:hover,
.lang-floating__item:focus {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.lang-floating__item.is-active,
.lang-floating__item.is-active:hover,
.lang-floating__item.is-active:focus {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: none;
  cursor: default;
}

@media (max-width: 1024px) {
  .lang-floating {
    display: none;
  }
}





.hero {
  position: relative;
  color: #fff;
  padding: 6rem 0 5rem;
  --hero-image: url("../data1/images/quinta1.jpg");
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}










