:root {
  --teal: #0a87b6;
  --deep-blue: #0e4f87;
  --navy: #103a64;
  --orange: #ee7b3a;
  --gold: #d8a54c;
  --sand: #f8efe3;
  --ivory: #fffaf4;
  --ink: #19324b;
  --muted: #5f7488;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 58, 100, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf9 0%, #f3fbff 40%, #fff8ef 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.section-tag::before {
  content: '';
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head h2, .intro h2, .story-copy h2, .video-copy h2, .contact-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.96;
  margin: 0 0 16px;
  color: var(--navy);
}
.section-head p, .intro p, .story-copy p, .video-copy p, .contact-copy p { color: var(--muted); line-height: 1.7; }
.language-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  display: inline-flex;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(14,79,135,0.12);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lang-btn {
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--navy);
}
.lang-btn.active { background: linear-gradient(135deg, var(--deep-blue), var(--teal)); color: var(--white); }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  box-shadow: 0 16px 35px rgba(31, 168, 85, 0.35);
  font-weight: 700;
}
.whatsapp-float svg { width: 22px; fill: currentColor; }
.site-header { position: relative; min-height: 100vh; }
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.55);
  box-shadow: 0 12px 24px rgba(16, 58, 100, 0.2);
}
.brand strong {
  display: block;
  font-size: 1.2rem;
  color: var(--white);
}
.brand span {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--white);
  font-weight: 600;
}
.cta-mini {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff !important;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}
.hero { position: relative; min-height: calc(100vh - 108px); display: grid; align-items: center; }
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(110deg, rgba(7,31,55,0.82) 12%, rgba(11,82,127,0.48) 46%, rgba(238,123,58,0.28) 100%);
}
.hero-content { position: relative; z-index: 1; padding-bottom: 72px; }
.glass-card {
  max-width: 700px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
}
.hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  margin: 0 0 16px;
  color: #fff;
}
.hero-copy p:not(.eyebrow) { color: rgba(255,255,255,0.9); line-height: 1.75; font-size: 1.06rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  box-shadow: 0 18px 30px rgba(216,165,76,0.25);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.intro-grid, .story-grid, .video-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.panel {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.stats { display: grid; gap: 18px; }
.stats div {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(10,135,182,0.08), rgba(238,123,58,0.1));
}
.stats strong { display: block; font-size: 1.15rem; color: var(--navy); margin-bottom: 6px; }
.stats span { color: var(--muted); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.offer-card, .gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.offer-card img, .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.offer-card::after, .gallery-item::after {
  content: 'Ampliar';
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16,58,100,0.76);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}
html[lang="en"] .offer-card::after, html[lang="en"] .gallery-item::after { content: 'Expand'; }
.offer-card:hover img, .gallery-item:hover img { transform: scale(1.05); }
.story-media {
  background: radial-gradient(circle at top, rgba(10,135,182,0.18), rgba(255,255,255,0));
  border-radius: 40px;
  padding: 28px;
}
.story-media img {
  width: min(420px, 100%);
  margin: 0 auto;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 600;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 18px;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.video-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.social-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.social-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.social-card-head img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.social-card-head strong { display: block; color: var(--navy); }
.social-card-head span { color: var(--muted); font-size: 0.95rem; }
.embed-shell {
  min-height: 420px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7fcff, #fff9f3);
  border: 1px solid rgba(16,58,100,0.08);
  overflow: hidden;
}
.embed-shell iframe { width: 100%; max-width: 100%; }
.instagram-fallback {
  display: grid;
  place-items: center;
  padding: 20px;
}
.embed-fallback-note { padding: 0 10px 10px; text-align: center; color: var(--muted); }
.social-link {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14,79,135,0.08), rgba(238,123,58,0.14));
  color: var(--navy);
  font-weight: 800;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-list a {
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(16,58,100,0.08);
}
.contact-list strong { display: block; color: var(--orange); margin-bottom: 4px; }
.contact-list span { color: var(--ink); }
.contact-form {
  padding: 30px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.contact-form label { display: grid; gap: 8px; }
.contact-form span { font-weight: 700; color: var(--navy); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16,58,100,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fffdfa;
  color: var(--ink);
}
.site-footer {
  padding: 30px 0 48px;
  background: #112e4e;
  color: rgba(255,255,255,0.82);
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-wrap strong { color: #fff; display: block; margin-bottom: 8px; }
.footer-wrap p { margin: 0; }
.footer-wrap a { color: #fff; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 30, 0.88);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 90;
  padding: 24px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 2rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
  .offers-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .social-grid, .intro-grid, .story-grid, .video-grid, .contact-grid { grid-template-columns: 1fr; }
  .video-frame { min-height: 360px; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; position: relative; z-index: 12; }
  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, calc(100vw - 32px));
    padding: 18px;
    border-radius: 22px;
    background: rgba(17, 46, 78, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .25s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .hero-copy h1 { font-size: clamp(2.7rem, 12vw, 4.3rem); }
  .glass-card { padding: 26px; }
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .language-switch { top: auto; bottom: 86px; }
}
@media (max-width: 540px) {
  .section { padding: 72px 0; }
  .brand span { display: none; }
  .brand img { width: 60px; height: 60px; }
  .offers-grid, .masonry { grid-template-columns: 1fr; }
  .masonry { grid-auto-rows: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .video-frame { min-height: 260px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 15px; border-radius: 50%; }
}
