:root {
  --bg: #111116;
  --bg-soft: #181820;
  --card: #fff8ed;

  --text: #fff8ed;
  --text-dark: #111116;
  --muted: rgba(255, 248, 237, 0.68);
  --muted-dark: rgba(17, 17, 22, 0.66);

  --accent: #ffb000;
  --accent-two: #64f4ac;
  --accent-three: #ff5f8f;

  --line: rgba(255, 248, 237, 0.16);
  --line-dark: rgba(17, 17, 22, 0.14);

  --shadow-dark: #050507;
  --focus-ring: rgba(255, 176, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(255, 95, 143, 0.13), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: var(--accent);
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  max-width: 100%;
}

button,
a {
  cursor: pointer;
}

.site-page {
  min-height: 100vh;
  overflow: hidden;
}

.site-container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 22, 0.78);
  backdrop-filter: blur(18px);
}

.site-nav {
  position: relative;
  width: min(1180px, calc(100% - 1.5rem));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 1rem;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--shadow-dark);
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.1;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-dark);
  padding: 0 1.2rem;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--shadow-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--shadow-dark);
}

.menu-button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 248, 237, 0.08);
}

.menu-button span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  display: none;
  width: min(290px, calc(100vw - 2rem));
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: #20202a;
  padding: 0.65rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.mobile-panel.is-open {
  display: grid;
}

.mobile-panel a {
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 850;
}

.mobile-panel a:hover {
  background: rgba(255, 248, 237, 0.08);
}

.mobile-panel .mobile-cta {
  margin-top: 0.35rem;
  background: var(--accent);
  color: var(--text-dark);
  text-align: center;
  font-weight: 950;
}

@media (min-width: 900px) {
  .desktop-nav,
  .nav-cta {
    display: flex;
  }

  .menu-button {
    display: none;
  }
}

/* COMMON */
.section-block {
  padding: 5.5rem 0;
}

.section-soft {
  background: rgba(255, 248, 237, 0.04);
}

.section-contrast {
  background:
    radial-gradient(circle at top right, rgba(100, 244, 172, 0.16), transparent 30rem),
    #0c0c10;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.offer-card h2,
.contact-panel h2,
.final-card h2 {
  margin: 0.75rem 0 0;
  color: var(--text);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading p,
.offer-card p,
.contact-panel p,
.final-card p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.75;
}

.section-kicker,
.eyebrow,
.mini-label {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 950;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--text-dark);
  box-shadow: 5px 5px 0 var(--shadow-dark);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.08);
  color: var(--text);
}

.btn-light {
  border: 2px solid var(--card);
  background: var(--card);
  color: var(--text-dark);
  box-shadow: 5px 5px 0 var(--shadow-dark);
}

.btn-dark-outline {
  border: 1px solid rgba(255, 248, 237, 0.22);
  background: transparent;
  color: var(--text);
}

.card-number {
  display: inline-flex;
  color: var(--accent-three);
  font-size: 0.82rem;
  font-weight: 950;
}

/* HERO */
.hero-section {
  position: relative;
  padding: 8.5rem 0 5.5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-role {
  margin: 1.5rem 0 0;
  color: var(--accent-two);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
}

.hero-title {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--text);
  font-size: clamp(4.5rem, 18vw, 10.5rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero-description {
  max-width: 650px;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.highlight-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.highlight-card {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 248, 237, 0.06);
  padding: 1rem;
}

.highlight-card strong {
  display: block;
  color: var(--text);
  font-size: 1.8rem;
  font-weight: 950;
  line-height: 1;
}

.highlight-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 2rem;
  background: var(--bg-soft);
  box-shadow: 18px 18px 0 var(--shadow-dark);
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 22, 0.92), transparent 55%);
}

.hero-card-content {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 2;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 1.4rem;
  background: rgba(17, 17, 22, 0.74);
  padding: 1rem;
  backdrop-filter: blur(14px);
}

.hero-card-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card-content h2 {
  margin: 0.45rem 0 0;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: none;
  border: 2px solid var(--text-dark);
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-dark);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 6px 6px 0 var(--shadow-dark);
}

.note-one {
  left: -1rem;
  bottom: 4rem;
  transform: rotate(-5deg);
}

.note-two {
  right: -1rem;
  top: 5rem;
  background: var(--accent-two);
  transform: rotate(5deg);
}

.shape {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
}

.shape-one {
  top: 8rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 176, 0, 0.22);
}

.shape-two {
  left: -10rem;
  bottom: 3rem;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 95, 143, 0.12);
}

@media (min-width: 720px) {
  .hero-actions,
  .center-actions {
    flex-direction: row;
  }

  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.78fr);
    align-items: center;
  }

  .floating-note {
    display: inline-flex;
  }
}

/* SERVICES */
.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 248, 237, 0.07);
  padding: 1.25rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 248, 237, 0.1);
}

.service-card h3 {
  margin: 1.35rem 0 0;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-card p {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* OFFER */
.offer-card {
  display: grid;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.14), rgba(255, 95, 143, 0.1)),
    rgba(255, 248, 237, 0.06);
  padding: 1.5rem;
}

.offer-card h2 {
  max-width: 760px;
}

.offer-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--accent-two);
}

.offer-price-card {
  border-radius: 1.5rem;
  background: var(--card);
  color: var(--text-dark);
  padding: 1.4rem;
}

.price-label {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price {
  margin: 0.75rem 0 1.25rem;
  color: var(--text-dark);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.included-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.included-card {
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 248, 237, 0.06);
  padding: 1.2rem;
}

.included-card span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 950;
}

.included-card h3 {
  margin: 0.9rem 0 0;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 950;
}

.included-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .offer-card {
    grid-template-columns: 1fr 0.42fr;
    align-items: center;
    padding: 2rem;
  }

  .included-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* GALLERY */
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: var(--bg-soft);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 22, 0.9), transparent 60%);
}

.gallery-card div {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 2;
}

.gallery-card p {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0.45rem 0 0;
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .gallery-card:first-child {
    grid-row: span 2;
  }
}

/* PROCESS */
.process-grid {
  display: grid;
  gap: 1rem;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 248, 237, 0.06);
  padding: 1.25rem;
}

.process-card span {
  color: var(--accent-three);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 1.2rem 0 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1.08;
}

.process-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.55;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  border-radius: 1.5rem;
  background: var(--card);
  color: var(--text-dark);
  padding: 1.25rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.65;
}

.testimonial-card div {
  margin-top: 1.2rem;
}

.testimonial-card strong {
  display: block;
  color: var(--text-dark);
  font-weight: 950;
}

.testimonial-card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted-dark);
  font-size: 0.84rem;
  font-weight: 750;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CONTACT */
.contact-grid {
  display: grid;
  gap: 1rem;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 248, 237, 0.06);
  padding: 1.4rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.availability-box {
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 248, 237, 0.06);
  padding: 1rem;
}

.availability-box p:last-child {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.6;
}

.location-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--bg-soft);
}

.location-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.15) contrast(1.05) brightness(0.8);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 22, 0.95),
    rgba(17, 17, 22, 0.45),
    rgba(17, 17, 22, 0.12)
  );
}

.location-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.location-content h3 {
  margin: 0.7rem 0 0;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.location-content p {
  max-width: 420px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.location-content span {
  margin-top: 0.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 950;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .contact-panel {
    padding: 2rem;
  }

  .contact-actions {
    flex-direction: row;
  }
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 248, 237, 0.06);
  padding: 1.1rem;
}

.faq-item summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--accent);
  font-size: 1.35rem;
  transition: transform 0.2s ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 650;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .faq-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FINAL CTA */
.final-cta {
  padding: 5.5rem 0;
  background:
    radial-gradient(circle at center, rgba(255, 176, 0, 0.2), transparent 32rem),
    #0c0c10;
}

.final-card {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 248, 237, 0.06);
  padding: 1.5rem;
  text-align: center;
}

.final-card p {
  max-width: 640px;
  margin-inline: auto;
}

.center-actions {
  justify-content: center;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--line);
  background: #08080b;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 950;
}

.footer-brand strong {
  color: var(--text);
  font-weight: 950;
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 248, 237, 0.45);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.65;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: rgba(255, 248, 237, 0.38);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer a {
  display: table;
  margin-top: 0.65rem;
  color: rgba(255, 248, 237, 0.62);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 0.7fr;
  }
}

/* FLOATING */
.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-dark);
  padding: 0.85rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--shadow-dark);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

/* ACCESSIBILITY */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--focus-ring);
  outline-offset: 4px;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 640px) {
  .site-container {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero-section {
    padding-top: 7rem;
  }

  .section-block,
  .final-cta {
    padding-block: 4.25rem;
  }

  .hero-title {
    font-size: clamp(4.2rem, 22vw, 6.5rem);
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    box-shadow: 10px 10px 0 var(--shadow-dark);
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .brand-copy small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .nav-cta,
  .service-card,
  .gallery-card img,
  .floating-whatsapp {
    transition: none;
  }
}