:root {
  --rice: #f4efe6;
  --ink: #032b43;
  --signature-red: #d00000;
  --andean-green: #136f63;
  --terracotta: #a44a3f;
  --gold: #ffba08;

  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-soft: 0 10px 30px rgba(3, 43, 67, 0.08);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--rice);
  color: var(--ink);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: #fff;
  background: rgba(208, 0, 0, 0.94);
  backdrop-filter: saturate(135%) blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img {
  width: clamp(108px, 12vw, 140px);
  height: auto;
}

.nav-desktop {
  display: flex;
  gap: 1.25rem;
  font-weight: 500;
  font-size: 0.96rem;
}

.nav-desktop a,
.nav-mobile a {
  text-decoration: none;
  position: relative;
}

.nav-desktop a::after,
.nav-mobile a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: #fff;
  transition: transform 0.24s ease;
}

.nav-desktop a:hover::after,
.nav-mobile a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 1rem 1rem;
}

.nav-mobile.show {
  display: flex;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  max-width: 18ch;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
}

.kicker {
  margin: 0;
  color: var(--andean-green);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 2.4rem;
}

.hero__inner {
  display: grid;
  gap: 1.15rem;
}

.hero__lead {
  margin: 0;
  max-width: 60ch;
  font-size: 1.06rem;
  color: rgba(3, 43, 67, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: var(--radius-md);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--andean-green);
  outline-offset: 2px;
}

.btn--cta {
  font-size: 1.02rem;
  padding: 0.95rem 1.25rem;
  background: var(--signature-red);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--cta span {
  font-family: var(--font-display);
  font-weight: 700;
  margin-left: 0.3ch;
  font-size: 1.18em;
  letter-spacing: 0.01em;
}

.btn--cta:hover {
  transform: translateY(-1px);
  background: #b10000;
}

.btn--glass {
  color: #fff;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 20px rgba(3, 43, 67, 0.1);
}

@supports (backdrop-filter: blur(8px)) {
  .btn--glass,
  .glass {
    backdrop-filter: blur(10px) saturate(130%);
  }
}

.btn--glass:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.26);
}

.destaques {
  padding: 1.4rem 0 3.4rem;
}

.destaques-container {
  max-width: 1200px;
}

.section-head {
  margin-bottom: 1.3rem;
}

.section-head p {
  margin: 0.3rem 0 0;
}

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(3, 43, 67, 0.08);
  transform: translateY(0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-rows: 3fr 1fr;
  aspect-ratio: 4 / 5;
}

.card-image {
  overflow: hidden;
  background: #ede8de;
  aspect-ratio: 4 / 5;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-title {
  margin: 0;
  padding: 1.1rem 1.2rem 1.25rem;
  align-self: center;
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(3, 43, 67, 0.13);
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.destaques-actions {
  margin-top: 1.45rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn--pill {
  border: 1px solid rgba(3, 43, 67, 0.24);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.58rem 1.05rem;
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(3, 43, 67, 0.06);
}

.btn--pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.74);
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card-image img,
  .reveal-hidden,
  .btn--pill {
    transition: none;
  }

  .card:hover,
  .card:hover .card-image img,
  .btn--pill:hover {
    transform: none;
  }
}

.instagram {
  padding: 0.5rem 0 3.6rem;
}

.glass {
  border: 1px solid rgba(3, 43, 67, 0.17);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-soft);
}

.insta-box {
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.insta-box__title {
  margin: 0;
  font-weight: 500;
}

.insta-box__handle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 600;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.93);
  padding: 1.35rem 0;
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -35% -15%;
  background:
    radial-gradient(circle at 14% 72%, rgba(255, 186, 8, 0.34), transparent 41%),
    radial-gradient(circle at 72% 17%, rgba(208, 0, 0, 0.33), transparent 44%),
    radial-gradient(circle at 45% 88%, rgba(255, 186, 8, 0.24), transparent 36%),
    radial-gradient(circle at 88% 78%, rgba(208, 0, 0, 0.23), transparent 33%);
  filter: blur(18px);
  z-index: -1;
  animation: footerHeat 11s ease-in-out infinite alternate;
}

@keyframes footerHeat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.76;
  }

  to {
    transform: translate3d(0, -3%, 0) scale(1.08);
    opacity: 0.98;
  }
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer__inner p {
  margin: 0;
}

.footer__inner a {
  color: #fff;
  text-underline-offset: 3px;
}

#menuToggle {
  display: none;
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  #menuToggle {
    display: inline-flex;
  }

}

@media (max-width: 980px) {
  .destaques-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.3rem));
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn--cta {
    width: 100%;
  }

  .destaques-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .insta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
