/* ═══════════════════════════════════════════════════
   POUSADA GIRASSOL — style.css
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C9A84C;
  --gold-light: #F5C518;
  --gold-dark: #9C7A2E;
  --brown: #7B4F1E;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --text-dark: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-light: #888888;
  --header-bg: rgba(240, 237, 232, 0.82);
  --section-alt: #F3EDE3;
  --green-badge: #2E7D50;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius: 12px;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Outfit', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-sans);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  /* Aumentado de 1000 para garantir que fique sobre a logo-strip e outros */
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(240, 237, 232, 0.96);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-logo-mobile {
  display: none;
}

.header-logo-mobile img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.4rem;
}

.nav-links a {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold-dark);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 1rem;
  z-index: 2100;
  /* Acima do menu mobile se necessário */
  width: 44px;
  height: 44px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(16px);
  padding: 1.5rem 2rem 2rem;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
  z-index: 2000;
  /* Garante que fique acima de tudo */
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: block;
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold-dark);
}

/* ─── LOGO STRIP ─── */
.logo-strip {
  position: relative;
  z-index: 100;
  /* Aumentado para garantir que fique sobre o paralax */
  margin-top: 70px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  /* Garante que o scale não vaze para outras seções */
}

.logo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.logo-img {
  display: block;
  width: auto;
  height: 240px;
  /* Reduzido levemente de 260px para melhor equilíbrio */
  max-width: 90%;
  object-fit: contain;
  transform: scale(1.15);
  /* Reduzido de 1.25 para evitar sombras indesejadas */
  margin: 2.5rem 0;
  /* Aumentado para conter o scale dentro do logo-strip */
  transition: transform var(--transition);
}

/* ─── PARALLAX HERO ─── */
.parallax-hero {
  position: relative;
  z-index: 1;
  /* Garante que fique abaixo da logo-strip */
  height: 80vh;
  min-height: 520px;
  background-image: url('images/background.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.45) 60%,
      rgba(0, 0, 0, 0.65) 100%);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.parallax-badge {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.parallax-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.8rem;
}

.parallax-sub {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.btn-reserve {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45);
}

.btn-reserve:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.55);
}

/* ─── SECTION BASE ─── */
.section {
  padding: 6rem 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  text-align: center;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.15;
  text-align: center;
}

.section-title.gold {
  color: var(--gold-dark);
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ─── SOBRE ─── */
.sobre-section {
  background: var(--cream);
  text-align: center;
}

.sobre-container {
  max-width: 900px;
}

.sobre-text {
  max-width: 800px;
  margin: 0 auto;
}

.sobre-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.sobre-text strong {
  color: var(--brown);
  font-weight: 600;
}

/* ─── SUITES ─── */
.suites-section {
  background: var(--section-alt);
  overflow: hidden;
  text-align: center;
}

.suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 1rem;
}

.suite-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.suite-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.suite-img-wrap img {
  transition: transform 0.6s ease;
}

.suite-card:hover .suite-img-wrap img {
  transform: scale(1.06);
}

.suite-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.gold-badge {
  background: var(--gold-dark);
}

.green-badge {
  background: var(--green-badge);
}

.suite-info {
  padding: 1.4rem 1.6rem 1.8rem;
}

.suite-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.9rem;
}

.suite-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.suite-features li {
  font-size: 0.88rem;
  color: var(--text-mid);
}

.btn-suite {
  display: inline-block;
  padding: 0.65rem 1.8rem;
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-suite:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

/* ─── SERVIÇOS ─── */
.servicos-section {
  background: var(--cream);
  text-align: center;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.servico-icon {
  margin-bottom: 1.2rem;
  color: var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform var(--transition);
}

.servico-card:hover .servico-icon {
  transform: scale(1.1) translateY(-2px);
  color: var(--gold-dark);
}

.servico-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 0.7rem;
}

.servico-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── GALERIA ─── */
.galeria-section {
  background: var(--section-alt);
  text-align: center;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.galeria-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.galeria-item img {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s ease;
}

.galeria-item:hover .galeria-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.galeria-item:hover img {
  transform: scale(1.07);
}

.galeria-expand {
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.galeria-item:hover .galeria-expand {
  opacity: 1;
  transform: scale(1);
}

/* Gallery crossfade animation */
/* O efeito de fade agora é controlado via reveal no JS */
.galeria-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}



/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 8, 5, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.lightbox-img-wrap img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 1.1rem;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* ─── CONTATO ─── */
.contato-section {
  background: var(--cream);
  text-align: center;
}

.contato-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

.contato-item:hover {
  color: var(--gold-dark);
}

.contato-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contato-sep {
  width: 1px;
  height: 24px;
  background: rgba(201, 168, 76, 0.35);
}

/* FORM */
.contato-form {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  /* Keep form labels/inputs aligned left for usability */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.3rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.55rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-sans);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C9A84C'%3E%3Cpath d='M5 8l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 20px;
  padding-right: 2.5rem;
}

.form-submit-row {
  margin-top: 1.5rem;
  text-align: center;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: all var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.55);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

.form-success {
  margin-top: 1.2rem;
  padding: 1rem 1.4rem;
  background: #e6f9ee;
  border: 1px solid #2E7D50;
  border-radius: 8px;
  color: var(--green-badge);
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
}

/* ─── MAPA ─── */
.mapa-section {
  background: var(--section-alt);
}

.mapa-container {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  filter: grayscale(15%) contrast(1.05);
}

.mapa-container iframe {
  width: 100%;
  display: block;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #1A1208;
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 2rem 0;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
}

.footer-sub {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .sobre-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-container {
    justify-content: space-between;
    padding: 0 1rem;
  }

  .site-header {
    background: #fdfbf8;
    /* Mais opaco no mobile para evitar sombras do paralax */
  }

  .header-logo-mobile {
    display: none;
    /* Esconde o logo pequeno pois vamos mostrar o strip no mobile também */
  }

  .logo-strip {
    display: flex;
    margin-top: 70px;
    padding: 0.8rem 0;
    z-index: 100;
  }

  .logo-img {
    height: 90px;
    transform: none;
    margin: 0.5rem 0;
  }

  .hamburger {
    display: flex;
    position: static;
  }

  .parallax-hero {
    margin-top: 0;
    height: 70vh;
    background-attachment: scroll;
  }

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

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

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

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .galeria-item {
    height: 200px;
  }

  .contato-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .contato-sep {
    display: none;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

@media (max-width: 450px) {
  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .galeria-item {
    height: 240px;
  }

  .section {
    padding: 4rem 0;
  }
}

/* Section scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}