:root {
  --ink: #083747;
  --ink-soft: #235060;
  --orange: #ff7f2a;
  --orange-dark: #d95f14;
  --green: #97cf3f;
  --green-dark: #6da51e;
  --peach: #ffe1cd;
  --cream: #fff8f2;
  --paper: #ffffff;
  --line: rgba(8, 55, 71, 0.12);
  --shadow: 0 24px 60px rgba(8, 55, 71, 0.14);
  --site-max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 6% 4%, rgba(255, 127, 42, 0.16), transparent 28rem),
    radial-gradient(circle at 96% 18%, rgba(151, 207, 63, 0.18), transparent 24rem),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 38%, #fff7ef 100%);
}

body::selection {
  color: #fff;
  background: var(--orange);
}

.topbar,
main,
.footer {
  width: 100%;
  max-width: var(--site-max);
  margin-inline: auto;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 92px;
  padding: 14px clamp(16px, 4vw, 64px);
  background: rgba(255, 250, 245, 0.88);
  border-bottom: 1px solid rgba(8, 55, 71, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(255, 127, 42, 0.18);
}

.brand span {
  white-space: nowrap;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 0.94rem;
  font-weight: 800;
}

.menu a {
  position: relative;
  color: rgba(8, 55, 71, 0.78);
}

.menu a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.menu a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.top-cta,
.button,
.hero-slide a,
.sticky-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(8, 55, 71, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.top-cta,
.button.primary,
.hero-slide a {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.button.light {
  color: var(--ink);
  background: #fff7ed;
}

.top-cta:hover,
.button:hover,
.hero-slide a:hover,
.sticky-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(8, 55, 71, 0.18);
}

main {
  width: 100%;
}

.hero {
  position: relative;
  width: 100vw;
  max-width: none;
  min-height: calc(100svh - 92px);
  margin-left: calc(50% - 50vw);
  background: #082c38;
}

.slider {
  position: relative;
  min-height: calc(100svh - 92px);
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: calc(100svh - 92px);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 700ms ease, visibility 700ms ease, transform 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 35, 46, 0.88) 0%, rgba(5, 35, 46, 0.62) 42%, rgba(5, 35, 46, 0.1) 100%),
    linear-gradient(0deg, rgba(5, 35, 46, 0.36), rgba(5, 35, 46, 0));
}

.slide-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
  padding: clamp(34px, 7vw, 90px);
  color: #fff;
}

.logo-chip {
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  margin-bottom: 26px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22));
}

.logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.slide-content > span,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slide-content h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.8rem, 7.2vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.slide-content p {
  max-width: 600px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.35rem);
  line-height: 1.58;
}

.slide-controls {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: clamp(24px, 5vw, 62px);
  z-index: 5;
  display: flex;
  gap: 12px;
}

.slide-controls button {
  width: 46px;
  height: 7px;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  border: 0;
  border-radius: 999px;
}

.slide-controls button.is-active {
  background: #fff;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-strip div {
  min-height: 138px;
  padding: clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
}

.intro-strip span {
  color: rgba(8, 55, 71, 0.68);
  font-weight: 750;
}

.section {
  width: 100%;
  padding: clamp(56px, 8vw, 116px) clamp(18px, 5vw, 76px);
}

.split,
.loja-real,
.editorial,
.store,
.about-hero,
.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.copy h2,
.loja-real-copy h2,
.section-title h2,
.desapegue h2,
.store h2,
.about-hero h1,
.about-cta h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.copy p,
.loja-real-copy p,
.section-title p,
.desapegue p,
.store p,
.about-hero p,
.about-cta p,
.story-card p {
  color: rgba(8, 55, 71, 0.74);
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.72;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article,
.faq-grid article,
.story-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(8, 55, 71, 0.08);
}

.steps span,
.story-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--green), var(--orange));
  border-radius: 16px;
}

.steps h3,
.faq-grid h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.steps p,
.faq-grid p {
  margin: 0;
  color: rgba(8, 55, 71, 0.7);
  line-height: 1.6;
}

.loja-real {
  min-height: 84svh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 55, 71, 0.92), rgba(8, 55, 71, 0.74)),
    linear-gradient(135deg, var(--ink), #123f4d);
}

.loja-real .eyebrow,
.editorial .eyebrow {
  color: #ffd1b4;
}

.loja-real p,
.editorial p {
  color: rgba(255, 255, 255, 0.82);
}

.loja-real-image,
.editorial-image,
.about-hero-image {
  position: relative;
  min-height: min(720px, 74svh);
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.loja-real-image img,
.editorial-image img,
.about-hero-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery-section {
  background: linear-gradient(180deg, #fff 0%, #fff8f0 100%);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(20px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 72px);
}

.section-title.compact {
  display: block;
  max-width: 850px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.gallery figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(8, 55, 71, 0.1);
}

.gallery figure.large {
  grid-row: span 2;
  min-height: 740px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  color: #fff;
  font-weight: 900;
  background: rgba(8, 55, 71, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(14px);
}

.groups {
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 127, 42, 0.38), transparent 28rem),
    linear-gradient(135deg, #083747, #0d4a5c);
}

.groups .section-title p {
  color: rgba(255, 255, 255, 0.76);
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.group-grid a {
  min-height: 260px;
  padding: clamp(24px, 4vw, 40px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.group-grid span,
.group-grid small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.group-grid strong {
  display: block;
  margin: 22px 0 52px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.editorial {
  min-height: 90svh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 55, 71, 0.06), rgba(8, 55, 71, 0)),
    var(--ink);
}

.editorial-image {
  order: -1;
}

.desapegue {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(151, 207, 63, 0.36), transparent 24rem),
    linear-gradient(135deg, var(--orange), #e86618);
}

.desapegue .eyebrow {
  color: #fff6d6;
}

.desapegue p {
  color: rgba(255, 255, 255, 0.86);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-gallery img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 42px rgba(91, 39, 9, 0.22);
}

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.faq-grid article {
  display: block;
}

.store {
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--green-dark), var(--green));
  border-top: 0;
  border-bottom: 0;
}

.store .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.store h2,
.store p {
  color: #fff;
}

.store .button.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.store .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 34px rgba(28, 84, 22, 0.2);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 34px clamp(18px, 5vw, 76px) 98px;
  color: #fff;
  background: #062f3d;
}

.footer img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.footer p {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.76);
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social a {
  padding: 10px 13px;
  font-size: 0.9rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 54px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #138a43);
}

.about-page {
  width: 100%;
  background: linear-gradient(180deg, #fff8f0, #ffffff);
}

.about-hero {
  min-height: calc(100svh - 92px);
  padding: clamp(54px, 8vw, 118px) clamp(18px, 5vw, 76px);
}

.about-hero-copy {
  max-width: 820px;
}

.about-hero h1 {
  font-size: clamp(2.6rem, 6vw, 6.6rem);
}

.about-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  padding: clamp(54px, 7vw, 104px) clamp(18px, 5vw, 76px);
  background: #fff;
}

.story-card {
  grid-template-columns: auto 1fr;
  min-height: 280px;
}

.story-card.featured {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #0f566a);
}

.story-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.about-cta {
  margin: clamp(18px, 5vw, 76px);
  padding: clamp(32px, 5vw, 66px);
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #e76516);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-cta p {
  color: rgba(255, 255, 255, 0.86);
}

body.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

body.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.reveal-ready .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .menu {
    gap: 14px;
    font-size: 0.86rem;
  }

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

  .gallery figure.large {
    grid-row: auto;
    grid-column: span 2;
    min-height: 560px;
  }

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

@media (max-width: 920px) {
  .topbar {
    min-height: 78px;
    gap: 12px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .menu {
    display: none;
  }

  .hero,
  .slider,
  .hero-slide,
  .about-hero {
    min-height: calc(100svh - 78px);
  }

  .slide-shade {
    background:
      linear-gradient(0deg, rgba(5, 35, 46, 0.88) 0%, rgba(5, 35, 46, 0.46) 70%, rgba(5, 35, 46, 0.14) 100%);
  }

  .slide-content {
    align-self: end;
    width: 100%;
    padding: 0 20px 86px;
  }

  .slide-content h1 {
    font-size: clamp(2.65rem, 14vw, 4.8rem);
  }

  .logo-chip {
    width: 96px;
    height: 96px;
    margin-bottom: 18px;
  }

  .logo-chip img {
    width: 100%;
    height: 100%;
  }

  .slide-controls {
    right: 20px;
    bottom: 28px;
    left: 20px;
  }

  .slide-controls button {
    flex: 1;
  }

  .intro-strip,
  .split,
  .loja-real,
  .editorial,
  .desapegue,
  .store,
  .about-hero,
  .about-cta,
  .section-title {
    grid-template-columns: 1fr;
  }

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

  .intro-strip div {
    min-height: 116px;
    border-bottom: 1px solid var(--line);
  }

  .loja-real,
  .editorial {
    min-height: auto;
  }

  .loja-real-image,
  .editorial-image,
  .about-hero-image {
    min-height: 62svh;
  }

  .editorial-image {
    order: 0;
  }

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

  .group-grid a {
    min-height: 210px;
  }

  .mini-gallery img {
    min-height: 300px;
  }

  .store-actions {
    justify-content: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .social {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar {
    padding: 10px 14px;
  }

  .brand span {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .slide-content p {
    margin: 18px 0 24px;
    font-size: 1rem;
  }

  .hero-slide a,
  .button,
  .sticky-whatsapp {
    width: 100%;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
  }

  .section {
    padding: 48px 16px;
  }

  .copy h2,
  .loja-real-copy h2,
  .section-title h2,
  .desapegue h2,
  .store h2,
  .about-hero h1,
  .about-cta h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .steps article,
  .story-card {
    grid-template-columns: 1fr;
  }

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

  .gallery figure,
  .gallery figure.large {
    grid-column: auto;
    min-height: 420px;
  }

  .mini-gallery,
  .faq-grid,
  .about-story {
    grid-template-columns: 1fr;
  }

  .mini-gallery img {
    min-height: 360px;
  }

  .about-cta {
    margin: 16px;
    border-radius: 24px;
  }

  .sticky-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
    width: auto;
  }
}
