:root {
  --purple: #6b2e91;
  --purple-dark: #3b185f;
  --yellow: #ffc928;
  --orange: #ff7a00;
  --white: #ffffff;
  --cream: #fff8e8;
  --cream-strong: #fff1c7;
  --text: #2a1f2d;
  --muted: #6a596f;
  --green: #37b24d;
  --line: rgba(59, 24, 95, 0.12);
  --shadow-soft: 0 20px 55px rgba(59, 24, 95, 0.13);
  --shadow-card: 0 14px 35px rgba(59, 24, 95, 0.11);
  --radius-card: 8px;
  --nav-height: 84px;
  --top-contact-height: 40px;
  --header-height: calc(var(--nav-height) + var(--top-contact-height));
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(255, 201, 40, 0.25), transparent 30rem),
    linear-gradient(180deg, var(--cream) 0%, #fffdf8 42%, var(--cream) 100%);
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--purple-dark);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 90px 0;
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.is-disabled-section {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 232, 0.9);
  border-bottom: 1px solid rgba(107, 46, 145, 0.12);
  backdrop-filter: blur(16px);
}

.top-contact-bar {
  max-height: var(--top-contact-height);
  overflow: hidden;
  color: var(--white);
  background: var(--purple-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 1;
  transition:
    max-height 0.24s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.site-header.is-contact-hidden .top-contact-bar {
  max-height: 0;
  border-bottom-color: transparent;
  opacity: 0;
  pointer-events: none;
}

.top-contact-inner {
  display: flex;
  min-height: var(--top-contact-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 900;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.language-button {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.language-button:hover,
.language-button.is-active {
  border-color: var(--yellow);
  color: var(--purple-dark);
  background: var(--yellow);
}

.flag {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 16px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.flag-pt {
  background: linear-gradient(90deg, #046a38 0 42%, #da291c 42% 100%);
}

.flag-pt::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 5px;
  border: 1px solid #ffcd00;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.flag-image {
  object-fit: cover;
}

.flag-en {
  background:
    linear-gradient(90deg, transparent 44%, #ffffff 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 39%, #ffffff 39% 61%, transparent 61%),
    linear-gradient(90deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(33deg, transparent 43%, #ffffff 43% 49%, #c8102e 49% 53%, #ffffff 53% 59%, transparent 59%),
    linear-gradient(-33deg, transparent 43%, #ffffff 43% 49%, #c8102e 49% 53%, #ffffff 53% 59%, transparent 59%),
    #012169;
}

.top-contact-inner > span {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.top-contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.top-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.top-contact-links a:hover {
  color: var(--yellow);
}

.top-contact-links span {
  line-height: 1;
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--purple-dark);
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(107, 46, 145, 0.18);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-menu > a:not(.btn) {
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  color: var(--purple-dark);
  font-size: 0.96rem;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-menu > a:not(.btn):hover {
  color: var(--purple);
  background: rgba(255, 201, 40, 0.26);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--purple);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--purple-dark);
  font-family: "Baloo 2", "Nunito", sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 5.35rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.58rem;
}

p {
  margin: 0;
}

.section-kicker {
  display: block;
  max-width: 100%;
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section-kicker::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--orange);
  vertical-align: middle;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading .section-kicker {
  justify-content: center;
}

.section-heading p:not(.section-kicker) {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 14px 30px rgba(107, 46, 145, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(107, 46, 145, 0.3);
}

.btn-secondary {
  color: var(--purple-dark);
  background: var(--yellow);
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.18);
}

.btn-secondary:hover {
  background: #ffd85b;
}

.btn-small {
  min-height: 44px;
  padding: 0.72rem 1rem;
  font-size: 0.94rem;
}

.hero {
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 50px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -120px;
  width: min(520px, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.12);
  z-index: -1;
}

.hero-grid {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 920px;
}

.hero-text {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.24rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.badge-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(107, 46, 145, 0.12);
  border-radius: 999px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(59, 24, 95, 0.07);
}

.badge-list span::before {
  content: "✓";
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.decor-dot {
  border-radius: 50%;
}

.decor-dot-one {
  top: 17%;
  left: 4%;
  width: 66px;
  height: 66px;
  background: rgba(255, 201, 40, 0.55);
}

.decor-dot-two {
  right: 8%;
  top: 18%;
  width: 42px;
  height: 42px;
  background: rgba(55, 178, 77, 0.24);
}

.decor-star {
  color: var(--orange);
  font-size: 2.9rem;
  line-height: 1;
}

.decor-star-one {
  left: 46%;
  top: 13%;
  transform: rotate(12deg);
}

.decor-star-two {
  left: 7%;
  bottom: 14%;
  color: var(--purple);
  transform: rotate(-15deg);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: stretch;
  gap: 30px;
}

.section-copy p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-copy {
  min-width: 0;
}

.highlight-card,
.service-card,
.product-card,
.timeline-item,
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.highlight-card {
  padding: 2.1rem;
  background:
    linear-gradient(135deg, rgba(255, 201, 40, 0.95), rgba(255, 122, 0, 0.9)),
    var(--yellow);
}

.highlight-card h3 {
  max-width: 360px;
  color: var(--purple-dark);
  font-size: 2.35rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.06rem;
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.82rem;
  line-height: 1;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 248, 232, 0.3)),
    radial-gradient(circle at 100% 20%, rgba(107, 46, 145, 0.12), transparent 26rem);
}

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

.service-card {
  min-height: 242px;
  padding: 1.45rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(59, 24, 95, 0.15);
}

.service-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius-card);
  background: var(--cream-strong);
  font-size: 1.55rem;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.12);
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.product-content p,
.timeline-item p {
  color: var(--muted);
}

.inflatables {
  overflow: hidden;
}

.inflatables::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: var(--purple-dark);
  z-index: -1;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 1.8rem;
}

.product-content h3 {
  margin-bottom: 10px;
}

.price {
  width: fit-content;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  color: var(--purple-dark) !important;
  background: var(--yellow);
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.product-content .btn {
  margin-top: auto;
}

.pricing-note {
  max-width: 760px;
  margin: 26px auto 0;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-card);
  color: var(--white);
  background: rgba(59, 24, 95, 0.88);
  font-weight: 800;
  text-align: center;
}

.steps {
  background: var(--purple-dark);
}

.steps .section-kicker,
.steps h2 {
  color: var(--white);
}

.steps .section-kicker::before {
  background: var(--yellow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  position: relative;
  padding: 1.35rem;
}

.timeline-item span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--purple-dark);
  background: var(--yellow);
  font-family: "Baloo 2", "Nunito", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.partners {
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 201, 40, 0.34), transparent 24rem),
    rgba(255, 255, 255, 0.62);
}

.partners-simple {
  display: grid;
  justify-items: center;
  gap: 30px;
  text-align: center;
}

.partners-simple h2 {
  font-size: 3rem;
}

.partner-logo-simple {
  display: grid;
  width: min(280px, 100%);
  aspect-ratio: 1;
  place-items: center;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.partner-logo-simple img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card);
  object-fit: contain;
}

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

.gallery-item {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--cream-strong);
  box-shadow: var(--shadow-card);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(59, 24, 95, 0.24));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.gallery-item:hover {
  box-shadow: 0 20px 42px rgba(59, 24, 95, 0.16);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.faq {
  background:
    radial-gradient(circle at 12% 88%, rgba(255, 201, 40, 0.32), transparent 24rem),
    rgba(255, 255, 255, 0.55);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.faq-list {
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1.15rem 1.35rem;
  border: 0;
  color: var(--purple-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-question span:first-child {
  overflow-wrap: anywhere;
}

.faq-question span:last-child {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--purple);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
  background: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
}

.final-cta {
  padding: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 201, 40, 0.74), transparent 12rem),
    linear-gradient(135deg, var(--purple), var(--purple-dark));
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0;
  color: var(--white);
}

.final-cta-inner::before,
.final-cta-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.final-cta-inner::before {
  width: 150px;
  height: 150px;
  right: 12%;
  bottom: -74px;
}

.final-cta-inner::after {
  width: 70px;
  height: 70px;
  top: 26px;
  right: 34px;
}

.final-cta-inner h2,
.final-cta-inner .section-kicker {
  color: var(--white);
}

.final-cta-inner .section-kicker::before {
  background: var(--yellow);
}

.final-cta-inner p:not(.section-kicker) {
  position: relative;
  max-width: 690px;
  margin-top: 16px;
  font-size: 1.2rem;
}

.contact-details {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
  margin-top: 26px;
}

.contact-details a,
.contact-details div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.12);
}

.contact-details span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-details a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-footer {
  padding: 52px 0 26px;
  color: var(--white);
  background: var(--purple-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.55fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 12px;
}

.footer-brand h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.8rem;
}

.footer-brand p,
.footer-contact,
.footer-links,
.footer-bottom {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-contact strong,
.footer-links strong {
  color: var(--yellow);
}

.footer-contact a,
.footer-links a {
  width: fit-content;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 90;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(42, 31, 45, 0.22);
}

.floating-whatsapp {
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--green);
  font-size: 1.55rem;
  font-weight: 900;
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.back-to-top {
  right: 88px;
  bottom: 23px;
  width: 48px;
  height: 48px;
  color: var(--purple-dark);
  background: var(--yellow);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1160px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu > a:not(.btn),
  .nav-menu .btn {
    width: 100%;
    justify-content: flex-start;
    border-radius: var(--radius-card);
  }

  h1 {
    font-size: 4.45rem;
  }

  h2 {
    font-size: 2.75rem;
  }

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

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

@media (max-width: 760px) {
  :root {
    --nav-height: 74px;
    --top-contact-height: 104px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .brand {
    gap: 9px;
    font-size: 1.32rem;
  }

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

  .top-contact-inner {
    display: grid;
    justify-content: stretch;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.88rem;
  }

  .top-contact-inner > span {
    display: none;
  }

  .language-switcher {
    justify-content: center;
  }

  .top-contact-links {
    display: grid;
    justify-items: center;
    justify-content: stretch;
    gap: 4px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.34rem;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-decor {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .inflatables-grid,
  .faq-layout,
  .contact-details,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-text,
  .final-cta-inner p:not(.section-kicker) {
    font-size: 1.08rem;
  }

  .partners-simple h2 {
    font-size: 2.34rem;
  }

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

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-heading .section-kicker {
    justify-content: flex-start;
  }

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

  .service-card {
    min-height: auto;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 235px;
  }

  .highlight-card,
  .product-content,
  .service-card,
  .timeline-item {
    padding: 1.2rem;
  }

  .footer-brand {
    display: grid;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.66rem;
  }

  h2 {
    font-size: 2.06rem;
  }

  .section-kicker {
    font-size: 0.78rem;
  }

  .badge-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .badge-list span {
    width: 100%;
    min-width: 0;
  }

  .nav-menu {
    right: 12px;
    left: 12px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    right: 82px;
    width: 44px;
    height: 44px;
  }

  .partners-simple h2 {
    font-size: 2.2rem;
  }

  .partner-logo-simple {
    width: min(230px, 100%);
  }
}
