/*======================================
=         RESET & VARIÁVEIS GLOBAIS     =
======================================*/

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

/* VARIÁVEIS (Root) */
:root {
  --primary-blue: #0078a8;
  --secondary-blue: #57a3c7;
  --deep-blue: #00406e;
  --light-blue: #e0f4ff;
  --accent-gold: #ffd700;
  --text-light: #ffffff;
  --text-dark: #203040;
  --summer-sand: #f5efe0;
}

/* ESTILOS GLOBAIS */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  background-color: #fff;
  line-height: 1.6;
}

/* TIPOGRAFIA LUXUOSA */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/*======================================
=              CABEÇALHO              =
======================================*/

/* ESTILO BASE DO CABEÇALHO */
.top-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
}

/* VARIAÇÕES DO CABEÇALHO */
.header-transparent {
  background-color: rgba(0, 64, 110, 0.2);
  color: var(--text-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-light {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/*======================================
=        MENUS E INTERAÇÕES (HEADER)    =
======================================*/

/* MENU TRIGGER (BOTÃO MENU) */
.menu-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.menu-trigger:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.menu-icon {
  font-size: 22px;
  margin-right: 10px;
  color: inherit;
}

.menu-text {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: inherit;
  font-weight: 500;
}

/* BOTÃO "MAKE A BOOKING" */
.booking-button {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 3px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-button:hover {
  background-color: var(--accent-gold);
  color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* SIDEBAR (MENU LATERAL) */
.sidebar {
  position: fixed;
  top: 0;
  left: -350px;
  width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--primary-blue) 100%);
  padding: 60px 40px;
  transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1000;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

/* BOTÃO DE FECHAR NO MENU */
.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  font-weight: 300;
  cursor: pointer;
  color: var(--text-light);
  transition: transform 0.3s, color 0.3s;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close-btn:hover {
  transform: rotate(90deg);
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.2);
}

/* LINKS DO MENU */
.nav-links {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.nav-links li {
  margin: 25px 0;
  opacity: 0.9;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.nav-links li:hover {
  opacity: 1;
  transform: translateX(0);
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/*======================================
=              HERO SECTION            =
======================================*/

/*======================================
=              HERO SECTION            =
======================================*/

/*======================================
=              HERO SECTION            =
======================================*/

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
}

/* VÍDEO SEM BORDAS (COVER) - FIXED NO ZOOM */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Garantia de sem efeitos */
  transform: none !important;
  animation: none !important;
  transition: none !important;
  filter: none !important;
}

/* Overlay para contraste */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 55, 0.3);
  z-index: 1;
}

/* ===== HERO TYPO FIX (USER PATCH APPLIED) ===== */

/* Centralização e respiro do bloco */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(32px, 6vh, 72px) 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ===== HERO TYPO FIX (FINAL - CLAMP) ===== */

.hero-title {
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Efeito de entrada suave */
  animation: fadeIn 1.5s ease-out;
}

/* Linhas do título */
.hero-line-1,
.hero-line-2 {
  display: block;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .20);
  transition: transform 0.3s ease;
  /* Suavidade extra */
}

.hero-line-1 {
  /* CASA PÉ NA */
  /* Ajustado para IGUALAR com Areia */
  font-size: clamp(30px, 4vw, 60px);
  letter-spacing: 0.40em;
  margin-bottom: 18px;
  margin-right: -0.40em;
}

.hero-line-2 {
  /* AREIA */
  /* Ajustado para IGUALAR com Casa Pé Na */
  font-size: clamp(30px, 4vw, 60px);
  letter-spacing: 0.34em;
}

/* Subtítulo */
.hero-subtitle {
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-top: 26px;
  text-shadow: none;
  opacity: 0.9;
}

/* Ajuste fino no mobile */
@media (max-width: 480px) {
  .hero-line-1 {
    letter-spacing: 0.28em;
  }

  .hero-line-2 {
    letter-spacing: 0.24em;
  }

  .hero-subtitle {
    letter-spacing: 0.16em;
  }
}


/* ======================================
   FINAL PAGE HEADER STYLES (Consolidated)
   ====================================== */
.page-header {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  margin-top: 80px;
  /* Space for fixed header */
}

/* Layer 0: Parallax Image (Gallery etc) */
.hero-parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Layer 1: Overlay (Dark Blue 40%) - REMOVED AS REQUESTED */
.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  /* Era rgba(0, 32, 55, 0.4) */
  z-index: 1;
  display: none;
  /* Garante que não tem overlay */
}

/* Layer 2: Text H1 */
.page-header h1 {
  position: relative;
  z-index: 2;
  /* Title Styling - Enforcing White and Standard Case */
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #ffffff !important;
  text-transform: none;
  /* Garante que usa o texto do HTML (Nossa Galeria) */
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* Sombra mais forte para garantir leitura */
  /* Animation restored from legacy block */
  animation: fadeIn 1.5s ease-out, glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  from {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 10px rgba(255, 215, 0, 0.4);
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 40vh;
  }

  .page-header h1 {
    font-size: 32px;
  }
}

/* Seção Genérica */
.section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  line-height: 1.8;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--primary-blue);
  position: relative;
  padding-bottom: 15px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent-gold);
}

.section p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* RODAPÉ */
footer {
  background: linear-gradient(to right, var(--deep-blue), var(--primary-blue));
  color: var(--text-light);
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--accent-gold), var(--light-blue));
}

footer p {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.8;
}

/*======================================
=          RESPONSIVIDADE GERAL        =
======================================*/

@media (max-width: 768px) {
  .top-header {
    padding: 20px 30px;
  }

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

  .primary-text {
    font-size: 32px;
    letter-spacing: 0.45em;
  }

  .hero-content p {
    font-size: 18px;
  }

  .section {
    margin: 60px auto;
    padding: 0 30px;
  }

  .section h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    gap: 12px;
  }

  .primary-text {
    font-size: 28px;
    letter-spacing: 0.35em;
  }

  /* Mobile Header Fixes */
  .top-header {
    padding: 15px 20px;
    gap: 15px;
  }

  .booking-button {
    padding: 8px 15px;
    font-size: 10px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .menu-trigger {
    padding: 6px 12px;
  }

  .menu-text {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .menu-icon {
    font-size: 18px;
  }
}

/*======================================
=             ANIMAÇÕES                =
======================================*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeIn 1s ease-out;
}

/* ======================================
=          PÁGINA SOBRE / ABOUT        =
====================================== */

/* Page Header Styles moved to end of file to avoid conflicts */

.about-section {
  padding: 60px 40px;
}

.about-content {
  display: flex;
  gap: 50px;
  margin: 40px 0;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-feature {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-feature:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-section,
.sustainability-section {
  margin: 50px 0;
  padding: 30px;
  background-color: var(--light-blue);
  border-radius: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.philosophy-section::before,
.sustainability-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background-color: var(--accent-gold);
}

.philosophy-section h3,
.sustainability-section h3 {
  color: var(--primary-blue);
  font-size: 28px;
  margin-bottom: 20px;
}

/* Responsividade para página sobre */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
  }

  .about-image {
    margin-top: 30px;
  }

  .philosophy-section,
  .sustainability-section {
    padding: 20px;
  }
}

/*======================================
=         PÁGINA DE GALERIA           =
======================================*/

.gallery-section {
  padding-bottom: 80px;
}

.gallery-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

.gallery-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0 40px;
}

.gallery-filter {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 120, 168, 0.2);
}

.gallery-filter.active {
  background: var(--primary-blue);
  color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  height: 250px;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 64, 110, 0.8) 0%, rgba(0, 64, 110, 0) 70%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.gallery-info {
  color: #ffffff !important;
  text-align: left;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  z-index: 10;
}

.gallery-info h3,
.gallery-info p {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
}

.gallery-info p {
  font-size: 14px;
  opacity: 1;
  /* Aumentar opacidade */
  margin: 0;
}

/* Category Navigation Styling */
.category-navigation {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: var(--light-blue);
  border-radius: 8px;
}

.category-navigation h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--primary-blue);
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.category-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: #ffffff;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-button:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 50, 100, 0.15);
}

.category-button i {
  font-size: 18px;
}

/* Personalização do Lightbox */
.lb-data .lb-caption {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
}

.lb-data .lb-number {
  font-family: 'Montserrat', sans-serif;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 0.5;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
  opacity: 1;
}

/* Responsividade para galeria */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-info h3 {
    font-size: 16px;
  }

  .gallery-info p {
    font-size: 12px;
  }

  .gallery-categories {
    gap: 10px;
    margin: 25px 0 30px;
  }

  .gallery-filter {
    padding: 8px 15px;
    font-size: 12px;
  }
}

/* Animações para galeria */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-item {
  animation: fadeInScale 0.6s ease forwards;
  opacity: 0;
}

/* Atraso progressivo na animação dos itens da galeria */
.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-item:nth-child(7) {
  animation-delay: 0.7s;
}

.gallery-item:nth-child(8) {
  animation-delay: 0.8s;
}

/*======================================
=          PÁGINA DE SUÍTES            =
======================================*/

.suites-section {
  padding-bottom: 100px;
}

.suites-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Container de Suítes */
.suites-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 80px;
}

/* Card de Suíte */
.suite-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.animations-enabled .suite-card {
  opacity: 0;
  transform: translateY(30px);
}

body.animations-enabled .suite-card.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Para os cards ímpares, inverter layout em telas grandes */
.suite-card:nth-child(odd) {
  flex-direction: row-reverse;
}

/* Slider de imagens */
.suite-slider {
  flex: 1;
  min-height: 400px;
  position: relative;
}

.suite-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Personalização dos controles do Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: var(--accent-gold);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--accent-gold);
  opacity: 1;
}

/* Conteúdo da Suíte */
.suite-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.suite-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 64, 110, 0.1);
}

.suite-header h3 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.suite-price {
  font-size: 16px;
  color: var(--text-dark);
}

.suite-price span {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-blue);
}

.suite-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-dark);
}

/* Features da Suíte */
.suite-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: var(--accent-gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.feature span {
  font-size: 14px;
  color: var(--text-dark);
}

/* Botão da Suíte */
.suite-button {
  align-self: flex-start;
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
  margin-top: auto;
}

.suite-button:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 120, 168, 0.3);
}

/* Responsividade para página de suítes */
@media (max-width: 1100px) {

  .suite-card,
  .suite-card:nth-child(odd) {
    flex-direction: column;
  }

  .suite-slider {
    min-height: 300px;
  }

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

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

@media (max-width: 768px) {
  .suites-container {
    gap: 60px;
  }

  .suite-content {
    padding: 30px 20px;
  }

  .suite-header h3 {
    font-size: 24px;
  }

  .suite-price span {
    font-size: 20px;
  }

  .suite-description {
    font-size: 15px;
  }

  .suite-features {
    gap: 15px;
  }

  .feature span {
    font-size: 13px;
  }

  .extras-section {
    padding: 40px 20px;
  }

  .extras-section h3 {
    font-size: 28px;
  }

  .extras-section>p {
    font-size: 16px;
  }
}

/*======================================
=           SEÇÃO DE EXTRAS            =
======================================*/

.extras-section {
  background-color: var(--light-blue);
  padding: 60px 40px;
  border-radius: 10px;
  margin-top: 80px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.extras-section h3 {
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.extras-section>p {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.extra-item {
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.6s ease;
}

body.animations-enabled .extra-item {
  opacity: 0;
  transform: translateY(20px);
}

body.animations-enabled .extra-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.extra-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.extra-item i {
  font-size: 36px;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.extra-item h4 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.extra-item p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Atraso para animação dos itens extras */
.extra-item:nth-child(1) {
  transition-delay: 0.1s;
}

.extra-item:nth-child(2) {
  transition-delay: 0.2s;
}

.extra-item:nth-child(3) {
  transition-delay: 0.3s;
}

.extra-item:nth-child(4) {
  transition-delay: 0.4s;
}

/*======================================
=          PÁGINA DE OFERTAS           =
======================================*/

.offers-intro-section {
  padding-bottom: 40px;
}

.offers-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

.offers-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.filter-button {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 120, 168, 0.2);
}

.filter-button.active {
  background: var(--primary-blue);
  color: white;
}

.offers-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 40px 0;
}

/* Card de Oferta */
.offer-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Para os cards ímpares, inverter layout em telas grandes */
.offer-card:nth-child(odd) {
  flex-direction: row-reverse;
}

/* Imagem da Oferta */
.offer-image {
  flex: 1;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.offer-tag {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: var(--primary-blue);
  color: white;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  z-index: 1;
}

.highlight-tag {
  background-color: var(--accent-gold);
  color: var(--deep-blue);
}

/* Conteúdo da Oferta */
.offer-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.offer-content h3 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.offer-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 64, 110, 0.1);
}

.offer-duration {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-duration i {
  color: var(--accent-gold);
}

.offer-price {
  text-align: right;
}

.old-price {
  display: block;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.current-price {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-blue);
}

.discount {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--deep-blue);
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
}

.offer-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: var(--text-dark);
}

/* Inclusos na Oferta */
.offer-includes {
  margin-bottom: 25px;
}

.offer-includes h4 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.offer-includes ul {
  list-style: none;
  padding: 0;
}

.offer-includes li {
  margin-bottom: 8px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-includes li i {
  color: var(--accent-gold);
  font-size: 14px;
}

/* CTA da Oferta */
.offer-cta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offer-button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer-button:hover {
  background-color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-button.limited {
  background-color: var(--accent-gold);
  color: var(--deep-blue);
}

.offer-button.limited:hover {
  background-color: #e6c200;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.offer-validity {
  font-size: 13px;
  color: #777;
  font-style: italic;
}

/* Responsividade para página de ofertas */
@media (max-width: 1100px) {

  .offer-card,
  .offer-card:nth-child(odd) {
    flex-direction: column;
  }

  .offer-image {
    min-height: 300px;
  }

  .offer-cta {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .offer-validity {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .offers-filter {
    flex-wrap: wrap;
    gap: 10px;
  }

  .filter-button {
    font-size: 13px;
    padding: 8px 15px;
  }

  .offer-content {
    padding: 30px 20px;
  }

  .offer-content h3 {
    font-size: 24px;
  }

  .offer-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .offer-price {
    text-align: left;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    border-radius: 4px;
  }

  .faq-question h3 {
    font-size: 16px;
  }
}

/*======================================
=    PÁGINA DE PROMOÇÃO NEWSLETTER     =
======================================*/

.promotion-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin: 80px 0;
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 64, 110, 0.9), rgba(0, 120, 168, 0.8));
}

.promotion-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.promotion-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.promotion-content h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-gold);
  margin: 20px auto 0;
}

.promotion-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  padding: 0 24px;
  background-color: var(--accent-gold);
  color: var(--deep-blue);
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #e6c200;
}

.promotion-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.promotion-note i {
  color: var(--accent-gold);
}

/*======================================
=                FAQ                   =
======================================*/

.faq-section {
  margin-bottom: 80px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(0, 64, 110, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: var(--light-blue);
}

.faq-question h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin: 0;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: white;
  font-size: 12px;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: var(--accent-gold);
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 20px;
  transition: all 1s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Responsividade FAQ */
@media (max-width: 768px) {
  .faq-question h3 {
    font-size: 16px;
  }
}

/*======================================
=         PÁGINA DE RECREAÇÃO          =
======================================*/

.recreation-intro-section {
  padding-bottom: 40px;
}

.recreation-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Filtro de Atividades */
.activities-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.activity-filter {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.activity-filter:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 120, 168, 0.2);
}

.activity-filter.active {
  background: var(--primary-blue);
  color: white;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

/* Card de Atividade */
.activity-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Imagem da Atividade */
.activity-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.activity-difficulty {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(0, 64, 110, 0.8);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  z-index: 1;
}

.premium-activity {
  background-color: var(--accent-gold);
  color: var(--deep-blue);
}

/* Conteúdo da Atividade */
.activity-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.activity-content h3 {
  font-size: 22px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.activity-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 64, 110, 0.1);
}

.activity-duration {
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-duration i {
  color: var(--accent-gold);
}

.activity-rating {
  color: var(--accent-gold);
  font-size: 14px;
}

.activity-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-dark);
  flex-grow: 1;
}

/* Features da Atividade */
.activity-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 20px;
}

.activity-features span {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.activity-features i {
  color: var(--accent-gold);
  font-size: 14px;
}

/* Botão da Atividade */
.activity-button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.activity-button:hover {
  background-color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.premium-button {
  background-color: var(--accent-gold);
  color: var(--deep-blue);
}

.premium-button:hover {
  background-color: #e6c200;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Destaque de Recreação */
.recreation-highlight {
  position: relative;
  padding: 100px 0;
  margin: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.recreation-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 64, 110, 0.85), rgba(0, 120, 168, 0.7));
}

.highlight-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.highlight-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.highlight-content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.highlight-button {
  background-color: var(--accent-gold);
  color: var(--deep-blue);
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.highlight-button:hover {
  background-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Informações da Recreação */
.recreation-info-section {
  margin-bottom: 80px;
}

.info-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.info-column {
  background-color: var(--light-blue);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.info-column i {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  display: block;
}

.info-column h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.info-column p,
.info-column ul {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

.info-column ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.info-column li {
  margin-bottom: 10px;
}

.info-button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.info-button:hover {
  background-color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade para Recreação */
@media (max-width: 1100px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .activities-filter {
    flex-wrap: wrap;
    gap: 10px;
  }

  .activity-filter {
    font-size: 13px;
    padding: 8px 15px;
  }

  .activity-image {
    height: 200px;
  }

  .activity-content {
    padding: 20px;
  }

  .activity-content h3 {
    font-size: 20px;
  }

  .activity-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .highlight-content h2 {
    font-size: 28px;
  }

  .highlight-content p {
    font-size: 16px;
  }

  .info-column {
    padding: 30px 20px;
  }
}

/* Animação para os cards de atividade */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.activity-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/*======================================
=           PÁGINA DE CULTURA           =
======================================*/

.culture-intro-section {
  padding-bottom: 40px;
}

.culture-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Estilo para Citação */
.culture-quote {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
  position: relative;
  padding: 30px 40px;
}

.culture-quote i {
  font-size: 40px;
  color: var(--accent-gold);
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
}

.culture-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-blue);
  margin: 0;
}

.quote-author {
  font-size: 16px;
  color: var(--text-dark);
  margin-top: 15px;
  font-weight: 500;
}

/* Grid de Aspectos Culturais */
.culture-grid-section {
  padding: 60px 40px;
  background-color: var(--light-blue);
  margin: 60px 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.culture-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.culture-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.culture-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-icon i {
  font-size: 32px;
  color: white;
}

.culture-item h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.culture-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.culture-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.culture-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.culture-link:hover {
  color: var(--accent-gold);
}

.culture-link:hover::after {
  width: 100%;
}

/* Experiências Culturais */
.culture-experiences-section {
  margin: 80px auto;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

.experiences-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.experience-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Para os cards alternados, inverter layout em telas grandes */
.experience-card:nth-child(even) {
  flex-direction: row-reverse;
}

.experience-image {
  flex: 1;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.experience-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.experience-content h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.experience-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.experience-details {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.detail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail i {
  color: var(--accent-gold);
}

.experience-button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.experience-button:hover {
  background-color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Calendário Cultural */
.culture-calendar-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin: 80px 0;
}

.culture-calendar-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 64, 110, 0.9), rgba(0, 120, 168, 0.8));
}

.calendar-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  color: white;
  padding: 0 20px;
  z-index: 1;
}

.calendar-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.calendar-content>p {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: center;
}

.events-timeline {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
}

.timeline-event {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
  position: relative;
}

.timeline-event:last-child {
  margin-bottom: 0;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: 85px;
  top: 15px;
  bottom: -25px;
  width: 2px;
  background-color: var(--accent-gold);
}

.timeline-event:last-child::before {
  display: none;
}

.event-date {
  width: 80px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 16px;
  padding-top: 5px;
}

.event-info {
  flex: 1;
  padding-left: 30px;
  position: relative;
}

.event-info::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.2);
}

.event-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.event-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.calendar-button {
  display: block;
  margin: 0 auto;
  background-color: var(--accent-gold);
  color: var(--deep-blue);
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-button:hover {
  background-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Passeios Culturais */
.culture-tours-section {
  margin-bottom: 80px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.tour-item {
  position: relative;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-item:hover img {
  transform: scale(1.05);
}

.tour-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  transition: all 0.3s ease;
}

.tour-item:hover .tour-overlay {
  padding-bottom: 30px;
}

.tour-overlay h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tour-overlay p {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.tour-distance {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.8;
}

.tours-note {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--light-blue);
  padding: 20px 30px;
  border-radius: 8px;
  margin-top: 20px;
}

.tours-note i {
  font-size: 24px;
  color: var(--primary-blue);
}

.tours-note p {
  font-size: 15px;
  color: var(--text-dark);
  margin: 0;
}

/* Modal de Informação Cultural */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background-color: white;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  position: relative;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.is-active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #777;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-blue);
}

.modal-content h2 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  text-align: center;
}

.modal-body {
  color: var(--text-dark);
}

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

.modal-body p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Responsividade para cultura */
@media (max-width: 1100px) {
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-card,
  .experience-card:nth-child(even) {
    flex-direction: column;
  }

  .experience-image {
    min-height: 250px;
  }

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

@media (max-width: 768px) {
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .culture-item {
    padding: 30px 20px;
  }

  .culture-icon {
    width: 70px;
    height: 70px;
  }

  .culture-icon i {
    font-size: 28px;
  }

  .experience-content {
    padding: 30px 20px;
  }

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

  .culture-quote blockquote {
    font-size: 18px;
  }

  .culture-quote i {
    font-size: 30px;
  }

  .calendar-content h2 {
    font-size: 28px;
  }

  .events-timeline {
    padding: 20px;
  }

  .event-date {
    width: 70px;
    font-size: 14px;
  }

  .timeline-event::before {
    left: 75px;
  }

  .modal-content {
    padding: 20px;
    width: 95%;
  }
}

/* Animações para Cultura */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.culture-item,
.experience-card,
.tour-item {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

/*======================================
=     PÁGINA DE EVENTOS ESPECIAIS       =
======================================*/

.events-intro-section {
  padding-bottom: 60px;
}

.events-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* Declaração de Estilo */
.events-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 60px auto 0;
}

.statement-line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 120, 168, 0), rgba(0, 120, 168, 0.5));
}

.statement-line:last-child {
  background: linear-gradient(to left, rgba(0, 120, 168, 0), rgba(0, 120, 168, 0.5));
}

.events-statement h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--primary-blue);
  text-align: center;
  white-space: nowrap;
}

/* Tipos de Eventos */
.events-types-section {
  margin-bottom: 80px;
}

.events-types {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.event-type {
  display: flex;
  gap: 50px;
}



.event-type.reverse {
  flex-direction: row-reverse;
}

.event-type-image {
  flex: 1;
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.event-type:hover .event-type-image img {
  transform: scale(1.05);
}

.event-type-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 64, 110, 0.3), rgba(0, 64, 110, 0.6));
  opacity: 1;
  transition: all 0.3s ease;
}

.event-type-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 215, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.event-type:hover .event-type-icon {
  transform: scale(1.1);
}

.event-type-icon i {
  font-size: 30px;
  color: var(--deep-blue);
}

.event-type-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-type-content h3 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.event-type-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

.event-type-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.event-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.event-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-dark);
}

.event-features li i {
  color: var(--accent-gold);
}

.event-link {
  display: inline-block;
  background-color: var(--primary-blue);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.event-link:hover {
  background-color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Espaços para Eventos */
.event-spaces-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin: 80px 0;
}

.spaces-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 64, 110, 0.9), rgba(0, 120, 168, 0.8));
}

.spaces-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
  text-align: center;
  z-index: 1;
}

.spaces-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.spaces-content>p {
  font-size: 18px;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.space-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.space-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.space-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: white;
}

.space-details {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
}

.space-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.space-details i {
  color: var(--accent-gold);
}

.space-card p {
  font-size: 14px;
  line-height: 1.6;
}

.spaces-button {
  background-color: var(--accent-gold);
  color: var(--deep-blue);
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.spaces-button:hover {
  background-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/*======================================
=             SERVIÇOS               =
======================================*/

.services-section {
  margin-bottom: 80px;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.7;
}

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

.service-item {
  background-color: var(--light-blue);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon i {
  font-size: 32px;
  color: white;
}

.service-item h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.service-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
}

/*======================================
=            DEPOIMENTOS             =
======================================*/

.events-testimonials-section {
  background-color: var(--light-blue);
  padding: 80px 0;
  margin: 80px 0;
}

.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.testimonials-container h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 50px;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-content i {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 30px;
  color: var(--accent-gold);
  opacity: 0.3;
}

.testimonial-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  text-align: right;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  color: var(--primary-blue);
}

.testimonial-author span {
  font-size: 14px;
  color: #777;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 120, 168, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-blue);
}

/*======================================
=       SOLICITAÇÃO DE ORÇAMENTO       =
======================================*/

.quote-section {
  margin-bottom: 80px;
}

.quote-container {
  display: flex;
  gap: 50px;
  margin-top: 50px;
}

.quote-form {
  flex: 2;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-blue);
  outline: none;
}

.form-button {
  background-color: var(--primary-blue);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.form-button:hover {
  background-color: var(--deep-blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quote-contact {
  flex: 1;
  background-color: var(--light-blue);
  padding: 40px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.quote-contact h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.quote-contact p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background-color: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item span {
  font-size: 16px;
  color: var(--text-dark);
}

.response-time {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #777;
  margin-top: auto;
  font-style: italic;
}

.response-time i {
  color: var(--primary-blue);
}

/*======================================
=      MODAL DE GALERIA DE ESPAÇOS     =
======================================*/

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.modal-content {
  background-color: white;
  width: 90%;
  max-width: 1000px;
  border-radius: 10px;
  position: relative;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.is-active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #777;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-blue);
}

.modal-content h2 {
  font-size: 28px;
  color: var(--primary-blue);
  margin-bottom: 30px;
  text-align: center;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: white;
  font-size: 16px;
}

/* Responsividade Modal */
@media (max-width: 1100px) {
  .modal-gallery {
    grid-template-columns: 1fr;
  }
}

/*======================================
=         MEDIA QUERIES GERAIS         =
======================================*/

/* Adicione ou ajuste media queries conforme necessário */
@media (max-width: 576px) {
  .suite-features {
    grid-template-columns: 1fr;
  }

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

/* Adicione estes estilos ao seu arquivo style.css */

/* Melhorando a visibilidade dos botões de navegação do Lightbox */
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 0.7 !important;
  transition: all 0.3s ease;
}

.lb-nav a.lb-prev:hover,
.lb-nav a.lb-next:hover {
  opacity: 1 !important;
}

/* Estilizando o botão de fechar */
.lb-data .lb-close {
  opacity: 0.8 !important;
  transition: all 0.3s ease;
  transform: scale(1.2);
}

.lb-data .lb-close:hover {
  opacity: 1 !important;
  transform: scale(1.3);
}

/* Ajustando o container do Lightbox */
.lb-outerContainer {
  border-radius: 5px;
}

/* Melhorando a visibilidade da legenda */
.lb-data .lb-caption {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

/* Adicionando indicadores visuais para os botões */
.lb-nav a.lb-prev::before,
.lb-nav a.lb-next::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.lb-nav a.lb-prev::before {
  left: 10px;
}

.lb-nav a.lb-next::before {
  right: 10px;
}

/*======================================
=            PÁGINA DE CONTATO         =
======================================*/

/* Cabeçalho claro – já existe .header-light */

/* Hero / título da página */
.page-header {
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 80px;
  /* para não ficar por baixo do header */
}

.page-header h1 {
  color: var(--text-light);
  font-size: 42px;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Introdução */
.contact-intro-section {
  text-align: center;
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-intro-section h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.contact-intro-section .contact-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* Área principal: formulário + cartão de info */
.contact-main-section .contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .contact-main-section .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Formulário */
.contact-form-wrapper {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.submit-button {
  background: var(--accent-gold);
  color: var(--deep-blue);
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.submit-button:hover {
  background: #e6c200;
}

/* Card de informações */
.contact-info-wrapper .contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon i {
  font-size: 24px;
  color: var(--primary-blue);
}

.contact-details h4 {
  font-size: 16px;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.whatsapp-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--secondary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.whatsapp-link:hover {
  color: var(--accent-gold);
}

/* FIX MOBILE LAYOUT FOR SPECIAL EVENTS - MOVED TO END TO OVERRIDE */
@media (max-width: 900px) {
  .event-type {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .event-type.reverse {
    flex-direction: column !important;
  }

  .event-type-image {
    height: 300px;
    border-radius: 10px 10px 0 0;
  }

  .event-type-content {
    padding: 30px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
}

/* ======================================
   BEACH PAGE REDESIGN v45
   ====================================== */

.beach-info {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-top: 60px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.beach-info h3 {
  background: var(--primary-blue);
  color: white;
  margin: 0;
  padding: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  text-align: center;
  letter-spacing: 1px;
}

.info-content {
  padding: 50px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.info-text {
  flex: 2;
}

.info-text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: justify;
}

.tide-schedule {
  flex: 1;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.tide-schedule h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.tide-schedule p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #666;
}

.tide-button {
  background: var(--accent-gold);
  color: var(--deep-blue);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  /* Ensure link looks like button */
}

.tide-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
  background: #e6c23c;
  color: var(--deep-blue);
}

.tide-button i {
  font-size: 20px;
}

@media (max-width: 900px) {
  .info-content {
    flex-direction: column;
    padding: 30px;
    gap: 40px;
  }

  .tide-schedule {
    width: 100%;
    border-left: none;
    border-top: 4px solid var(--accent-gold);
  }
}

/* ======================================
   PROPERTY PAGE REDESIGN v44
   ====================================== */

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  height: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Darker gradient for better text readability */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h3 {
  color: #ffffff !important;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  font-weight: 600;
}

.gallery-info p {
  color: #f0f0f0 !important;
  font-size: 14px;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.1s;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

.gallery-item:hover .gallery-info h3,
.gallery-item:hover .gallery-info p {
  transform: translateY(0);
}

/* --- Features Section (Text at End) --- */
.property-features {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  padding: 100px 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.property-features h3 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.property-features h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin: 15px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

.feature-item i {
  font-size: 42px;
  color: var(--accent-gold);
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.1) rotate(5deg);
}

.feature-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.feature-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .property-features h3 {
    font-size: 28px;
  }
}