:root {
  --green: #181817;
  --green-dark: #1f1f1f;
  --gold: #c59a5b;
  --cream: #f7f1e8;
  --sand: #c4b7a5;
  --text: #303030;
  --muted: #77706a;
  --white: #ffffff;
  --border: rgba(47, 79, 58, 0.14);
  --shadow: 0 20px 60px rgba(23, 40, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(23, 40, 29, 0.34);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(23, 40, 29, 0.94);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.header-content {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transform: translateY(6px);
}

.logo img {
  width: 300px;
  max-height: 130px;
  object-fit: contain;
  margin-top: 0;
  margin-left: -120px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.9;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.btn-header,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 0;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-header,
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-header:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-secondary.dark {
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--white);
  margin: 7px auto;
}

/* Hero */

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.88), rgba(23, 40, 29, 0.42)),
    linear-gradient(0deg, rgba(23, 40, 29, 0.45), rgba(23, 40, 29, 0));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 780px;
  color: var(--white);
  padding-top: 86px;
}

.eyebrow,
.section-label {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
  margin-top: 20px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  margin: 0 0 26px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 5%;
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 34px;
  height: 5px;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.dot.active {
  width: 56px;
  background: var(--gold);
}

/* Reserva rápida */

.quick-booking {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.quick-booking-box {
  background: var(--white);
  border-radius: 0;
  padding: 26px 34px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.quick-booking span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 800;
  margin-bottom: 6px;
}

.quick-booking strong {
  color: var(--green-dark);
  font-size: 22px;
}

.quick-booking a {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 0;
  font-weight: 800;
  white-space: nowrap;
}

/* Secções base */

section {
  scroll-margin-top: 100px;
}

.intro-section,
.features-section,
.stay-section,
.experiences-section,
.wine-section,
.gallery-section,
.testimonials-section,
.final-cta {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  color: var(--green-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 18px;
}

p {
  line-height: 1.75;
}

.section-heading p,
.intro-text p,
.stay-content p,
.wine-content p {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

/* Intro */

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.intro-text {
  background: var(--white);
  border-radius: 0;
  padding: 48px;
  box-shadow: var(--shadow);
}

/* Features */

.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 28px;
  min-height: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  margin-bottom: 22px;
  font-size: 22px;
}

.feature-card h3 {
  color: var(--green-dark);
  margin: 0 0 12px;
  font-size: 22px;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

/* Casa Hotel */

.stay-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stay-content {
  padding: 58px;
}

.stay-content h2 {
  color: var(--white);
}

.stay-content p {
  color: rgba(255, 255, 255, 0.8);
}

.stay-content ul {
  padding-left: 20px;
  margin: 24px 0 34px;
  line-height: 1.9;
}

.stay-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

/* Experiências */

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.experience-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.experience-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.experience-card-content {
  padding: 28px;
}

.experience-card-content span {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.experience-card-content h3 {
  color: var(--green-dark);
  margin: 10px 0 12px;
  font-size: 24px;
}

.experience-card-content p {
  color: var(--muted);
  margin-bottom: 22px;
}

.experience-card-content a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

/* Vinhos */

.wine-section {
  background: var(--white);
}

.wine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.wine-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 0;
}

.wine-content {
  max-width: 560px;
}

/* Galeria */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

/* Testemunhos */

.testimonials-section {
  background: var(--green-dark);
  color: var(--white);
}

.testimonials-section h2 {
  color: var(--white);
}

.testimonial-card {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 42px;
  text-align: center;
}

.testimonial-card p {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--gold);
}

.testimonial-card span {
  color: rgba(255, 255, 255, 0.66);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.testimonial-controls button {
  width: 46px;
  height: 46px;
  border-radius: 0;
  border: none;
  background: var(--gold);
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 800;
}

/* CTA final */

.final-cta {
  background: var(--cream);
}

.final-cta-box {
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.72)),
    url("../img/paisagem.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 0;
  padding: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.final-cta-box h2 {
  color: var(--white);
}

.final-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 1050px) {
  .main-nav {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 28px 5%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .stay-card,
  .wine-grid,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .final-cta-box {
    display: block;
  }

  .contact-actions {
    margin-top: 28px;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 701px) and (max-width: 1050px) {
  .header-content {
    height: 96px;
  }

  .logo {
    transform: none;
  }

  .logo img {
    width: 190px;
    max-height: 76px;
    margin-top: 0;
    margin-left: 0;
    object-fit: contain;
  }

  .main-nav {
    top: 96px;
  }
}

@media (max-width: 700px) {
  .header-content {
    height: 76px;
  }

  .logo {
    transform: none;
    max-width: 110px;
    z-index: 60;
  }

  .logo img {
    width: auto;
    max-width: 110px;
    max-height: 44px;
    margin-top: 0;
    margin-left: 0;
    object-fit: contain;
  }

  @media (max-width: 700px) {
  .btn-header {
    display: inline-flex;
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }
}

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .quick-booking-box {
    display: block;
  }

  .quick-booking a {
    display: inline-flex;
    margin-top: 18px;
  }

  .intro-section,
  .features-section,
  .stay-section,
  .experiences-section,
  .wine-section,
  .gallery-section,
  .testimonials-section,
  .final-cta {
    padding: 64px 0;
  }

  .intro-text,
  .stay-content,
  .final-cta-box {
    padding: 34px;
  }

  .intro-image img,
  .wine-image img,
  .stay-image img {
    height: 360px;
    min-height: unset;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .testimonial-card {
    padding: 30px;
  }

  .testimonial-card p {
    font-size: 18px;
  }
}

/* Página Sobre */

.about-page .site-header {
  background: rgba(23, 40, 29, 0.76);
}

/* Hero da página Sobre */

.about-hero-page {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.9), rgba(23, 40, 29, 0.48)),
    linear-gradient(0deg, rgba(23, 40, 29, 0.42), rgba(23, 40, 29, 0));
  z-index: 2;
}

.about-hero-page-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  color: var(--white);
  padding-top: 110px;
}

.about-hero-page h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0 0 26px;
}

.about-hero-page p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
}

/* História */

.about-story-section {
  padding: 100px 0;
  background: var(--cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.about-story-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.about-story-content {
  background: var(--white);
  border-radius: 0;
  padding: 52px;
  box-shadow: var(--shadow);
}

.about-story-content h2 {
  margin-bottom: 22px;
}

.about-story-content p {
  color: var(--muted);
  font-size: 17px;
}

/* Números */

.about-numbers-section {
  margin-top: -38px;
  position: relative;
  z-index: 5;
}

.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-number-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-number-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
}

.about-number-card span {
  color: var(--muted);
  font-size: 15px;
}

/* Highlights dinâmicos */

.about-highlights-section {
  padding: 100px 0;
  background: var(--white);
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.about-highlight-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 34px;
  min-height: 250px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.about-highlight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 154, 91, 0.55);
  box-shadow: var(--shadow);
}

.about-highlight-card .highlight-icon {
  width: 54px;
  height: 54px;
  border-radius: 0;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.about-highlight-card h3 {
  color: var(--green-dark);
  font-size: 24px;
  margin: 0 0 12px;
}

.about-highlight-card p {
  color: var(--muted);
  margin: 0;
}

/* Lugar */

.about-place-section {
  padding: 100px 0;
  background: var(--cream);
}

.about-place-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  background: var(--green-dark);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-place-content {
  padding: 58px;
  color: var(--white);
}

.about-place-content h2 {
  color: var(--white);
}

.about-place-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.about-place-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

/* Galeria Sobre */

.about-gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.about-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.about-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.about-gallery-item:first-child {
  grid-row: span 2;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.about-gallery-item:hover img {
  transform: scale(1.06);
}

.about-gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(23, 40, 29, 0.82);
  color: var(--white);
  border-radius: 0;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
}

/* CTA final Sobre */

.about-cta-section {
  padding: 90px 0;
  background: var(--cream);
}

.about-cta-box {
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.68)),
    url("../img/paisagem.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 0;
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  box-shadow: var(--shadow);
}

.about-cta-box h2 {
  color: var(--white);
}

.about-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 0;
}

/* Responsive Sobre */

@media (max-width: 1050px) {
  .about-story-grid,
  .about-place-card {
    grid-template-columns: 1fr;
  }

  .about-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-place-image img {
    height: 480px;
  }

  .about-cta-box {
    display: block;
  }

  .about-cta-box .contact-actions {
    margin-top: 28px;
  }
}

@media (max-width: 700px) {
  .about-hero-page {
    min-height: 580px;
  }

  .about-hero-page-content {
    padding-top: 90px;
  }

  .about-hero-page h1 {
    font-size: 42px;
  }

  .about-hero-page p {
    font-size: 17px;
  }

  .about-story-section,
  .about-highlights-section,
  .about-place-section,
  .about-gallery-section,
  .about-cta-section {
    padding: 64px 0;
  }

  .about-story-content,
  .about-place-content,
  .about-cta-box {
    padding: 34px;
  }

  .about-story-image img {
    height: 380px;
  }

  .about-numbers-grid,
  .about-highlights-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .about-gallery-item:first-child {
    grid-row: auto;
  }

  .about-place-image img {
    height: 360px;
  }
}

/* Página Casa Hotel */

.hotel-page .site-header {
  background: rgba(23, 40, 29, 0.76);
}

/* Hero Casa Hotel */

.hotel-hero {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

.hotel-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hotel-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.9), rgba(23, 40, 29, 0.46)),
    linear-gradient(0deg, rgba(23, 40, 29, 0.42), rgba(23, 40, 29, 0));
  z-index: 2;
}

.hotel-hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  color: var(--white);
  padding-top: 110px;
}

.hotel-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0 0 26px;
}

.hotel-hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

/* Introdução */

.hotel-intro-section {
  padding: 100px 0;
  background: var(--cream);
}

.hotel-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.hotel-intro-content {
  background: var(--white);
  border-radius: 0;
  padding: 52px;
  box-shadow: var(--shadow);
}

.hotel-intro-content h2 {
  margin-bottom: 22px;
}

.hotel-intro-content p {
  color: var(--muted);
  font-size: 17px;
}

.hotel-intro-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

/* Características */

.hotel-features-section {
  padding: 100px 0;
  background: var(--white);
}

.hotel-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.hotel-feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 30px;
  min-height: 220px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.hotel-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(197, 154, 91, 0.55);
}

.hotel-feature-card .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 23px;
}

.hotel-feature-card h3 {
  color: var(--green-dark);
  font-size: 22px;
  margin: 0 0 12px;
}

.hotel-feature-card p {
  color: var(--muted);
  margin: 0;
}

/* Quartos */

.rooms-section {
  padding: 100px 0;
  background: var(--cream);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.room-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(23, 40, 29, 0.18);
}

.room-card-image {
  position: relative;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.05);
}

.room-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(23, 40, 29, 0.86);
  color: var(--white);
  border-radius: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}

.room-card-content {
  padding: 28px;
}

.room-card-content h3 {
  color: var(--green-dark);
  font-size: 26px;
  margin: 0 0 12px;
}

.room-card-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.room-details {
  display: grid;
  gap: 9px;
  margin-bottom: 24px;
}

.room-details span {
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}

.room-card-content a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

/* Experiência */

.hotel-experience-section {
  padding: 100px 0;
  background: var(--white);
}

.hotel-experience-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hotel-experience-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.hotel-experience-content {
  padding: 58px;
}

.hotel-experience-content h2 {
  color: var(--white);
}

.hotel-experience-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.hotel-experience-content ul {
  padding-left: 20px;
  margin: 26px 0 34px;
  line-height: 1.9;
}

/* Galeria Casa Hotel */

.hotel-gallery-section {
  padding: 100px 0;
  background: var(--cream);
}

.hotel-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.hotel-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.hotel-gallery-item:first-child {
  grid-row: span 2;
}

.hotel-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hotel-gallery-item:hover img {
  transform: scale(1.06);
}

.hotel-gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(23, 40, 29, 0.82);
  color: var(--white);
  border-radius: 0;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
}

/* CTA Casa Hotel */

.hotel-cta-section {
  padding: 90px 0;
  background: var(--cream);
}

.hotel-cta-box {
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.68)),
    url("../img/casa-hotel-hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 0;
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  box-shadow: var(--shadow);
}

.hotel-cta-box h2 {
  color: var(--white);
}

.hotel-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 0;
}

/* Responsive Casa Hotel */

@media (max-width: 1050px) {
  .hotel-intro-grid,
  .hotel-experience-card {
    grid-template-columns: 1fr;
  }

  .hotel-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotel-experience-image img {
    min-height: 460px;
  }

  .hotel-cta-box {
    display: block;
  }

  .hotel-cta-box .contact-actions {
    margin-top: 28px;
  }
}

@media (max-width: 700px) {
  .hotel-hero {
    min-height: 580px;
  }

  .hotel-hero-content {
    padding-top: 90px;
  }

  .hotel-hero h1 {
    font-size: 42px;
  }

  .hotel-hero p {
    font-size: 17px;
  }

  .hotel-intro-section,
  .hotel-features-section,
  .rooms-section,
  .hotel-experience-section,
  .hotel-gallery-section,
  .hotel-cta-section {
    padding: 64px 0;
  }

  .hotel-intro-content,
  .hotel-experience-content,
  .hotel-cta-box {
    padding: 34px;
  }

  .hotel-intro-image img {
    height: 380px;
  }

  .hotel-features-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .hotel-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .hotel-gallery-item:first-child {
    grid-row: auto;
  }

  .hotel-experience-image img {
    min-height: 360px;
  }
}

/* Footer global */

.site-footer {
  background: var(--green-dark);
  color: var(--white);
  padding-top: 76px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
}

.footer-logo img {
  width: 170px;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-brand p,
.footer-column p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--green-dark);
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 0;
  font-weight: 800;
  transition: transform 0.25s ease;
}

.footer-whatsapp:hover {
  transform: translateY(-2px);
}

.footer-column h3 {
  color: var(--gold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 0 0 22px;
}

.footer-links,
.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-contact-list a,
.footer-map-link {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact-list a:hover,
.footer-map-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-bottom-content div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-content a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.footer-bottom-content a:hover {
  color: var(--gold);
}

/* Página Contactos */

.contact-page .site-header {
  background: rgba(23, 40, 29, 0.76);
}

.contact-hero {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.48)),
    linear-gradient(0deg, rgba(23, 40, 29, 0.42), rgba(23, 40, 29, 0));
  z-index: 2;
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  color: var(--white);
  padding-top: 110px;
}

.contact-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0 0 26px;
}

.contact-hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.contact-info-section {
  padding: 100px 0;
  background: var(--cream);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 30px;
  box-shadow: var(--shadow);
  min-height: 230px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(23, 40, 29, 0.16);
  border-color: rgba(197, 154, 91, 0.55);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green);
  color: var(--white);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}

.contact-card h3 {
  color: var(--green-dark);
  margin: 0 0 12px;
  font-size: 22px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.contact-map-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-map-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: stretch;
}

.contact-map-content {
  background: var(--cream);
  border-radius: 0;
  padding: 46px;
  box-shadow: var(--shadow);
}

.contact-map-content p {
  color: var(--muted);
  font-size: 17px;
}

.contact-address-box {
  display: grid;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 22px;
  margin: 28px 0;
}

.contact-address-box strong {
  color: var(--green-dark);
}

.contact-address-box span {
  color: var(--muted);
}

.contact-map-wrapper {
  min-height: 520px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-office-section {
  padding: 90px 0;
  background: var(--cream);
}

.contact-office-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 0;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-office-card h2 {
  color: var(--white);
}

.contact-office-card p {
  color: rgba(255, 255, 255, 0.78);
}

.office-details {
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.office-details strong {
  color: var(--gold);
}

.office-details span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-cta-section {
  padding: 90px 0;
  background: var(--cream);
}

.contact-cta-box {
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.68)),
    url("../img/paisagem.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 0;
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  box-shadow: var(--shadow);
}

.contact-cta-box h2 {
  color: var(--white);
}

.contact-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 0;
}

/* Responsive Footer e Contactos */

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-map-grid,
  .contact-office-card {
    grid-template-columns: 1fr;
  }

  .contact-cta-box {
    display: block;
  }

  .contact-cta-box .contact-actions {
    margin-top: 28px;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding-top: 56px;
  }

  .footer-grid,
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    display: block;
  }

  .footer-bottom-content div {
    margin-top: 14px;
  }

  .contact-hero {
    min-height: 580px;
  }

  .contact-hero-content {
    padding-top: 90px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero p {
    font-size: 17px;
  }

  .contact-info-section,
  .contact-map-section,
  .contact-office-section,
  .contact-cta-section {
    padding: 64px 0;
  }

  .contact-map-content,
  .contact-office-card,
  .contact-cta-box {
    padding: 34px;
  }

  .contact-map-wrapper {
    min-height: 380px;
  }
}

/* Formulário de contacto */

.contact-form-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.contact-form-content {
  background: var(--cream);
  border-radius: 0;
  padding: 46px;
  box-shadow: var(--shadow);
}

.contact-form-content p {
  color: var(--muted);
  font-size: 17px;
}

.contact-direct-box {
  display: grid;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 24px;
  margin-top: 30px;
}

.contact-direct-box strong {
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-direct-box a {
  color: var(--green);
  text-decoration: none;
  font-weight: 800;
}

.contact-direct-box a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 38px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 0;
  padding: 15px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 154, 91, 0.15);
  background: var(--white);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 0;
}

.contact-hours-box {
  display: grid;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 22px;
  margin: 0 0 28px;
}

.contact-hours-box strong {
  color: var(--green-dark);
}

.contact-hours-box span {
  color: var(--muted);
}

.office-details a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
  margin-top: 10px;
}

@media (max-width: 1050px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-form-section {
    padding: 64px 0;
  }

  .contact-form-content,
  .contact-form {
    padding: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Página Experiências */

.experiences-page .site-header {
  background: rgba(23, 40, 29, 0.76);
}

/* Hero Experiências */

.experiences-hero {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

.experiences-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.experiences-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.45)),
    linear-gradient(0deg, rgba(23, 40, 29, 0.44), rgba(23, 40, 29, 0));
  z-index: 2;
}

.experiences-hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  color: var(--white);
  padding-top: 110px;
}

.experiences-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0 0 26px;
}

.experiences-hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

/* Intro */

.experiences-intro-section {
  padding: 100px 0;
  background: var(--cream);
}

.experiences-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.experiences-intro-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.experiences-intro-content {
  background: var(--white);
  border-radius: 0;
  padding: 52px;
  box-shadow: var(--shadow);
}

.experiences-intro-content p {
  color: var(--muted);
  font-size: 17px;
}

/* Tabs + experiência principal */

.experience-main-section {
  padding: 100px 0;
  background: var(--white);
}

.experience-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.experience-tab {
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--green-dark);
  padding: 12px 24px;
  border-radius: 0;
  cursor: pointer;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.experience-tab:hover,
.experience-tab.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

.experience-feature-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--cream);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.experience-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.experience-feature-content {
  padding: 54px;
}

.experience-feature-content h3 {
  font-size: 42px;
  line-height: 1.08;
  color: var(--green-dark);
  margin: 0 0 18px;
}

.experience-feature-content p {
  color: var(--muted);
  font-size: 17px;
}

.experience-feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 32px;
}

.experience-feature-list span {
  color: var(--green-dark);
  font-weight: 800;
}

/* Cards detalhe */

.experience-cards-section {
  padding: 100px 0;
  background: var(--cream);
}

.experience-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.experience-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.experience-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(23, 40, 29, 0.16);
}

.experience-detail-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.experience-detail-content {
  padding: 32px;
}

.experience-detail-content span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  font-weight: 800;
}

.experience-detail-content h3 {
  color: var(--green-dark);
  font-size: 30px;
  margin: 10px 0 14px;
}

.experience-detail-content p {
  color: var(--muted);
  margin-bottom: 22px;
}

.experience-detail-content a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

/* Processo */

.experience-process-section {
  padding: 100px 0;
  background: var(--white);
}

.process-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 0;
  padding: 58px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  box-shadow: var(--shadow);
}

.process-content h2 {
  color: var(--white);
}

.process-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 22px;
}

.process-step strong {
  width: 42px;
  height: 42px;
  border-radius: 0;
  background: var(--gold);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  color: var(--white);
  margin: 0 0 6px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

/* Galeria */

.experience-gallery-section {
  padding: 100px 0;
  background: var(--cream);
}

.experience-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}

.experience-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.experience-gallery-item:first-child {
  grid-row: span 2;
}

.experience-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.experience-gallery-item:hover img {
  transform: scale(1.06);
}

.experience-gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(23, 40, 29, 0.82);
  color: var(--white);
  border-radius: 0;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
}

/* CTA */

.experience-cta-section {
  padding: 90px 0;
  background: var(--cream);
}

.experience-cta-box {
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.68)),
    url("../img/prova-vinhos.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 0;
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  box-shadow: var(--shadow);
}

.experience-cta-box h2 {
  color: var(--white);
}

.experience-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 0;
}

/* Responsive Experiências */

@media (max-width: 1050px) {
  .experiences-intro-grid,
  .experience-feature-card,
  .process-card {
    grid-template-columns: 1fr;
  }

  .experience-detail-grid {
    grid-template-columns: 1fr;
  }

  .experience-feature-image img {
    min-height: 420px;
  }

  .experience-cta-box {
    display: block;
  }

  .experience-cta-box .contact-actions {
    margin-top: 28px;
  }
}

@media (max-width: 700px) {
  .experiences-hero {
    min-height: 580px;
  }

  .experiences-hero-content {
    padding-top: 90px;
  }

  .experiences-hero h1 {
    font-size: 42px;
  }

  .experiences-hero p {
    font-size: 17px;
  }

  .experiences-intro-section,
  .experience-main-section,
  .experience-cards-section,
  .experience-process-section,
  .experience-gallery-section,
  .experience-cta-section {
    padding: 64px 0;
  }

  .experiences-intro-content,
  .experience-feature-content,
  .process-card,
  .experience-cta-box {
    padding: 34px;
  }

  .experiences-intro-image img,
  .experience-feature-image img {
    height: 360px;
    min-height: unset;
  }

  .experience-feature-content h3 {
    font-size: 34px;
  }

  .experience-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .experience-gallery-item:first-child {
    grid-row: auto;
  }
}

/* Página Produtos */

.products-page .site-header {
  background: rgba(23, 40, 29, 0.76);
}

.products-hero {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--green-dark);
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.48)),
    linear-gradient(0deg, rgba(23, 40, 29, 0.42), rgba(23, 40, 29, 0));
  z-index: 2;
}

.products-hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  color: var(--white);
  padding-top: 110px;
}

.products-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 0 0 26px;
}

.products-hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

/* Intro Produtos */

.products-intro-section {
  padding: 100px 0;
  background: var(--cream);
}

.products-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.products-intro-content {
  background: var(--white);
  border-radius: 0;
  padding: 52px;
  box-shadow: var(--shadow);
}

.products-intro-content p {
  color: var(--muted);
  font-size: 17px;
}

.products-intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

/* Lista de produtos */

.products-list-section {
  padding: 100px 0;
  background: var(--white);
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 42px;
}

.product-filter {
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--green-dark);
  padding: 12px 24px;
  border-radius: 0;
  cursor: pointer;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.product-filter:hover,
.product-filter.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(23, 40, 29, 0.16);
  border-color: rgba(197, 154, 91, 0.55);
}

.product-image {
  position: relative;
  background: var(--white);
}

.product-image img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  padding: 28px;
}

.product-category {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(23, 40, 29, 0.88);
  color: var(--white);
  border-radius: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}

.product-content {
  padding: 28px;
}

.product-content h3 {
  color: var(--green-dark);
  font-size: 25px;
  margin: 0 0 12px;
}

.product-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.product-price {
  display: block;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 22px;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-actions button,
.product-actions a {
  border: none;
  border-radius: 0;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.product-actions button {
  background: var(--green);
  color: var(--white);
}

.product-actions a {
  background: var(--gold);
  color: var(--green-dark);
}

/* Modal Produto */

.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(23, 40, 29, 0.76);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.product-modal.active {
  display: flex;
}

.product-modal-content {
  width: min(980px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
  border-radius: 0;
  position: relative;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.product-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: var(--green-dark);
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.product-modal-image {
  background: var(--cream);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-image img {
  max-height: 560px;
  object-fit: contain;
}

.product-modal-info {
  padding: 54px;
}

.product-modal-info h3 {
  color: var(--green-dark);
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.product-modal-info .product-price {
  margin-bottom: 24px;
}

.product-description {
  color: var(--muted);
  font-size: 17px;
}

.product-details-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 32px;
}

.product-details-list span {
  color: var(--green-dark);
  font-weight: 800;
}

/* CTA Produtos */

.products-cta-section {
  padding: 90px 0;
  background: var(--cream);
}

.products-cta-box {
  background:
    linear-gradient(90deg, rgba(23, 40, 29, 0.92), rgba(23, 40, 29, 0.68)),
    url("../img/produtos-intro.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: 0;
  padding: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  box-shadow: var(--shadow);
}

.products-cta-box h2 {
  color: var(--white);
}

.products-cta-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 0;
}

/* Responsive Produtos */

@media (max-width: 1050px) {
  .products-intro-grid,
  .product-modal-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-cta-box {
    display: block;
  }

  .products-cta-box .contact-actions {
    margin-top: 28px;
  }
}

@media (max-width: 700px) {
  .products-hero {
    min-height: 580px;
  }

  .products-hero-content {
    padding-top: 90px;
  }

  .products-hero h1 {
    font-size: 42px;
  }

  .products-hero p {
    font-size: 17px;
  }

  .products-intro-section,
  .products-list-section,
  .products-cta-section {
    padding: 64px 0;
  }

  .products-intro-content,
  .products-cta-box,
  .product-modal-info {
    padding: 34px;
  }

  .products-intro-image img {
    height: 360px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-image {
    padding: 34px;
  }
}

/* Header social icons */
.header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-socials a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  color: var(--white);
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.header-socials a:hover {
  color: var(--gold);
  border-color: rgba(197, 154, 91, 0.72);
  opacity: 1;
  transform: translateY(-2px);
}

.header-socials svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

/* Homepage videos */
.home-videos-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--cream), #fffaf2);
}

.home-videos-section .section-heading p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.home-videos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.video-card-list {
  display: grid;
  gap: 24px;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  box-shadow: none;
  text-align: left;
  appearance: none;
}

.video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.video-card:hover img {
  transform: scale(1.04);
}

.video-card-featured {
  min-height: 560px;
}

.video-card-small {
  min-height: 170px;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 40, 29, 0.05), rgba(23, 40, 29, 0.82)),
    linear-gradient(90deg, rgba(23, 40, 29, 0.46), rgba(23, 40, 29, 0.08));
  z-index: 1;
}

.video-play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.video-card-small .video-play-button {
  width: 52px;
  height: 52px;
}

.video-card:hover .video-play-button {
  background: var(--gold);
  color: var(--green-dark);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-play-button svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  margin-left: 3px;
}

.video-card-small .video-play-button svg {
  width: 25px;
  height: 25px;
}

.video-card-content {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: grid;
  gap: 8px;
}

.video-card-content span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 800;
}

.video-card-content strong {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.video-card-small .video-card-content {
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.video-card-small .video-card-content strong {
  font-size: 20px;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(15, 18, 14, 0.84);
  backdrop-filter: blur(8px);
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox-content {
  position: relative;
  width: min(1080px, calc(100vw - 56px));
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.video-lightbox-close {
  position: absolute;
  top: -52px;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.video-lightbox-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
}

body.video-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .header-socials {
    gap: 8px;
  }

  .header-socials a {
    width: 28px;
    height: 28px;
  }

  .header-socials svg {
    width: 15px;
    height: 15px;
  }

  .home-videos-grid {
    grid-template-columns: 1fr;
  }

  .video-card-featured {
    min-height: 480px;
  }

  .video-card-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-card-small {
    min-height: 230px;
  }
}

@media (max-width: 700px) {
  .header-content {
    gap: 8px;
  }

  .header-socials {
    gap: 5px;
  }

  .header-socials a {
    width: 22px;
    height: 22px;
    border-color: rgba(255, 255, 255, 0.22);
    opacity: 0.76;
  }

  .header-socials svg {
    width: 12px;
    height: 12px;
  }

  .home-videos-section {
    padding: 68px 0;
  }

  .video-card-featured {
    min-height: 380px;
  }

  .video-card-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-card-small {
    min-height: 190px;
  }

  .video-play-button {
    width: 58px;
    height: 58px;
  }

  .video-card-small .video-play-button {
    width: 46px;
    height: 46px;
  }

  .video-card-content,
  .video-card-small .video-card-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .video-card-content strong {
    font-size: 24px;
  }

  .video-card-small .video-card-content strong {
    font-size: 19px;
  }

  .video-lightbox {
    padding: 16px;
  }

  .video-lightbox-content {
    width: calc(100vw - 32px);
  }

  .video-lightbox-close {
    top: -46px;
    right: 0;
    width: 38px;
    height: 38px;
    font-size: 26px;
  }
}

@media (max-width: 430px) {
  .header-socials a {
    width: 20px;
    height: 20px;
  }

  .header-socials svg {
    width: 11px;
    height: 11px;
  }
}
