:root {
  --bg: #fffdf7;
  --surface: #ffffff;
  --surface-alt: #fff6de;
  --text: #2f2a1f;
  --muted: #6f6243;
  --primary: #fda802;
  --primary-strong: #e09300;
  --accent: #ffd25a;
  --border: #f2dfad;
  --shadow: 0 14px 34px rgba(92, 69, 22, 0.12);
  --radius: 18px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(253, 168, 2, 0.18), transparent 45%),
    radial-gradient(circle at 90% 0%, rgba(255, 210, 90, 0.2), transparent 35%),
    var(--bg);
  line-height: 1.6;
}

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

img[data-lightbox-image] {
  cursor: zoom-in;
}

img[data-lightbox-image]:focus-visible {
  outline: 3px solid rgba(253, 168, 2, 0.8);
  outline-offset: 2px;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(10, 14, 22, 0.88);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-preview {
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.image-lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: #111;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  top: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(8px);
  background: #0f1924;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
}

.brand img {
  height: 148px;
  width: auto;
  max-width: 640px;
  object-fit: contain;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.58rem 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: none;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: inline-block;
  padding: 0.54rem 0.8rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.main-nav .menu-parent {
  display: inline-block;
  border: 0;
  background: transparent;
  padding: 0.54rem 0.8rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font: inherit;
  cursor: default;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active,
.main-nav .menu-parent.active,
.main-nav .has-submenu:hover .menu-parent,
.main-nav .has-submenu:focus-within .menu-parent {
  background: rgba(253, 168, 2, 0.24);
  color: #ffffff;
}

.main-nav .submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 190px;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f1924;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 40;
}

.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu:focus-within .submenu {
  display: flex;
}

.main-nav .submenu a {
  width: 100%;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 0.78rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #2f2a1f;
  box-shadow: 0 8px 22px rgba(253, 168, 2, 0.42);
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.hero {
  padding: 3.8rem 0 2.8rem;
}

.hero-home {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #070d14;
}

.hero-home-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-home-video-mobile {
  display: none;
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.18) 0%, rgba(8, 14, 22, 0.7) 58%, rgba(8, 14, 22, 0.9) 100%),
    linear-gradient(110deg, rgba(253, 168, 2, 0.18) 0%, transparent 38%);
  z-index: 1;
}

.hero-home-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 2.4rem;
}

.hero-home-card {
  width: min(100%, 760px);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(9, 16, 25, 0.55);
  backdrop-filter: blur(3px);
}

.hero-home .heading-serif {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.hero-home .heading-serif,
.hero-home .lead,
.hero-home .stat,
.hero-home .stat span,
.hero-home .stat strong,
.hero-home .kicker {
  color: #ffffff;
}

.hero-home .kicker::before {
  background: #ffd166;
}

.hero-home .stat {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.hero-home .hero-stats {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.hero-home .btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-home .btn-outline:hover,
.hero-home .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.hero-home-badge {
  display: inline-block;
  position: static;
  margin-top: 1rem;
}

@media (max-width: 1800px) and (min-width: 961px) {
  .hero-home-video-desktop {
    object-fit: cover;
    object-position: center center;
  }

  .hero-home-content {
    padding-bottom: 1.8rem;
  }

  .hero-home-card {
    width: min(100%, 680px);
    padding: 1.25rem;
  }

  .hero-home .heading-serif {
    font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  }
}

@media (max-width: 1280px) and (min-width: 961px) {
  .hero-home-card {
    width: min(100%, 600px);
    padding: 1.1rem;
  }

  .hero-home-content {
    padding-bottom: 1.3rem;
  }

  .hero-home .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.hero-grid > * {
  min-width: 0;
}

.hero-card,
.panel {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.kicker::before {
  content: '';
  width: 16px;
  height: 2px;
  border-radius: 10px;
  background: var(--accent);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 0.7rem;
}

h2 {
  font-size: clamp(1.5rem, 2.7vw, 2.1rem);
}

h3 {
  font-size: 1.16rem;
}

.heading-serif {
  font-family: Georgia, 'Times New Roman', serif;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 1rem;
}

.hero-cta {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-stats {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat {
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

.stat strong {
  display: block;
  font-size: 1.1rem;
}

.hero-media {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-floating {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(47, 39, 23, 0.9);
  color: #fff;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  font-size: 0.88rem;
}

.hero-home .hero-home-badge {
  position: static;
  left: auto;
  bottom: auto;
  display: block;
  width: fit-content;
  margin-top: 1rem;
}

.section {
  padding: 1.5rem 0 2.5rem;
}

.section-head {
  margin-bottom: 1.2rem;
}

.grid-3,
.grid-2,
.cards-grid {
  display: grid;
  gap: 1rem;
}

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

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

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

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

.home-benefit-media {
  padding: 0;
  overflow: hidden;
  align-self: start;
}

.home-benefit-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.list-clean li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
}

.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.local-links a {
  border: 1px solid var(--border);
  padding: 0.46rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--primary-strong);
  font-weight: 600;
}

.notice {
  padding: 1rem;
  background: #fffaf0;
  border: 1px solid #efd9a9;
  border-radius: 12px;
  color: #6a5426;
}

.cta-banner {
  background: linear-gradient(125deg, #fda802, #ffbd2b 58%, #ffe29a);
  color: #2f2a1f;
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.cta-banner p {
  margin: 0.8rem 0 1rem;
  color: rgba(47, 42, 31, 0.9);
}

form {
  display: grid;
  gap: 0.72rem;
}

label {
  font-weight: 600;
  font-size: 0.94rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #e9d29c;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  margin-top: 1.7rem;
  background: #fda802;
  color: #2f2a1f;
  padding: 2rem 0;
}

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

.footer-grid a {
  color: #2f2a1f;
}

.small {
  color: #5f4a1e;
  font-size: 0.9rem;
}

.article img {
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-masonry .card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  break-inside: avoid;
  padding: 0.6rem;
}

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

.breadcrumbs {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.breadcrumbs a {
  color: var(--primary-strong);
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 185;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.56rem 1rem;
  font-weight: 700;
  color: #ffffff;
  background: #1fa855;
  box-shadow: 0 12px 24px rgba(20, 110, 57, 0.35);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #158546;
}

.cookie-open-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 180;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 200;
  padding: 1rem;
  background: rgba(15, 25, 36, 0.48);
}

.cookie-banner__box {
  width: min(100%, 980px);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(16, 21, 30, 0.28);
  padding: 1rem;
}

.cookie-banner__box h2 {
  margin: 0;
  font-size: 1.2rem;
}

.cookie-banner__box p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.cookie-banner__toggles {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
  background: var(--surface-alt);
}

.cookie-toggle-row small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch span {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: #c9c5bb;
  transition: background 0.2s ease;
  position: relative;
}

.cookie-switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(31, 35, 45, 0.25);
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + span {
  background: #0f1924;
}

.cookie-switch input:checked + span::after {
  transform: translateX(24px);
}

.cookie-switch input:disabled + span {
  opacity: 0.7;
}

.cookie-banner__links {
  margin-top: 0.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner__links a {
  color: var(--primary-strong);
  font-weight: 600;
}

.cookie-banner__actions {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    right: 1rem;

  .main-nav li {
    position: static;
  }
    left: 1rem;
    border: 1px solid var(--border);
    background: #0f1924;
    border-radius: 14px;

  .main-nav .menu-parent {
    width: 100%;
    text-align: left;
    cursor: default;
  }

  .main-nav .submenu {
    position: static;
    display: flex;
    min-width: 0;
    margin-top: 0.2rem;
    padding: 0.25rem 0 0 0.55rem;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
    box-shadow: var(--shadow);
    display: none;
    padding: 0.6rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a {
    width: 100%;
  }

  .hero-copy {
    padding: 1.3rem;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-home {
    min-height: auto;
    display: block;
    padding-top: 0;
  }

  .hero-home-video-desktop {
    display: none;
  }

  .hero-home-video-mobile {
    display: block;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }

  .hero-home-overlay {
    display: none;
  }

  .hero-home-content {
    padding: 1rem 0 1.4rem;
    background: #0f1924;
  }

  .hero-home-card {
    padding: 1rem;
    width: 100%;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
  }

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

  .hero-home-badge {
    display: none;
  }

  .nav-wrap {
    min-height: 82px;
  }

  .brand img {
    height: 60px;
    width: auto;
    max-width: 250px;
  }

  .main-nav {
    top: 82px;
  }

  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .gallery-masonry {
    column-count: 1;
  }
}

@media (min-width: 961px) {
  .home-benefits-grid {
    align-items: start;
  }

  .home-benefit-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .hero-home-content {
    padding: 0.8rem 0 1.2rem;
  }

  .hero-home .heading-serif {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .hero-home .lead {
    font-size: 0.96rem;
  }

  .hero-home .hero-cta {
    gap: 0.55rem;
  }

  .hero-home .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-home-video-mobile {
    aspect-ratio: 9 / 16;
    min-height: 68vh;
  }

  .hero-home-card {
    padding: 0.86rem;
  }

  .cookie-banner {
    padding: 0.6rem;
  }

  .cookie-banner__box {
    padding: 0.8rem;
  }

  .cookie-toggle-row {
    align-items: flex-start;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}
