@import url('https://fonts.googleapis.com/css2?family=Allura&family=Archivo+Black&display=swap');

@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato/Lato-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato/Lato-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato';
}

:root {
  --header-height: 88px;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden
}

main {
  overflow: hidden
}

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

ul {
  list-style: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.desktop-nav,
.mobile-nav {
  height: 100%;
  width: min(1200px, 92%);
  margin: 0 auto;
}

.desktop-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.menu-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu-group:first-child {
  justify-content: flex-end;
}

.menu-group:last-child {
  justify-content: flex-start;
}

.menu-group a {
  font-size: 15px;
  font-weight: 600;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #2c2116;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #b2966a;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: #b2966a;
}

.nav-link.is-active {
  color: #b2966a;
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.menu-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #2c2116;
  background: rgba(178, 150, 106, 0.12);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nav-social-link:hover {
  color: #fff;
  background: #b2966a;
  transform: translateY(-1px);
}

.nav-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  width: auto;
  height: 52px;
  display: block;
}

.mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #111;
  margin-left: auto;
}

.mobile-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu ul {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 14px 0 20px;
  display: grid;
  gap: 12px;
}

.mobile-menu a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 0;
}

.mobile-menu .nav-link,
.mobile-menu .menu-socials {
  display: inline-flex;
}

.mobile-menu .nav-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fullpage {
  height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.fullpage::-webkit-scrollbar {
  width: 0px;
}

.panel {
  width: 100%;
  height: calc(100vh - var(--header-height));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-panel {
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
}

.hero-carousel.is-dragging {
  cursor: grabbing;
}

.drag-cursor-hint {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.42);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-carousel:hover .drag-cursor-hint {
  opacity: 1;
}

.drag-cursor-hint.is-dragging {
  transform: translate(-50%, -50%) scale(0.96);
}

.drag-cursor-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.drag-cursor-text {
  white-space: nowrap;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.carousel-image,
.carousel-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-image {
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-overlay {
  background: linear-gradient(90deg, rgba(8, 17, 31, 0.72) 0%, rgba(8, 17, 31, 0.38) 45%, rgba(8, 17, 31, 0.18) 100%);
}

.carousel-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  max-width: 720px;
  user-select: none;
}

.carousel-kicker {
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
}

.carousel-content h1,
.carousel-content h2 {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 0.98;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.carousel-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.92);
}

.carousel-controls {
  position: absolute;
  inset-inline: 0;
  bottom: 32px;
  z-index: 3;
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: #ffffff6b;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.color-1 { background: #ffffff6b; }
.color-2 { background: #fdf6ec; }

/* ── About ────────────────────────────────────────────── */

.about-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 70vh;
  max-height: 600px;
}

.about-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.about-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.about-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.28);
  backdrop-filter: blur(4px);
}

.about-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.about-dot.is-active {
  background: #fff;
  transform: scale(1.16);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b2966a;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  font-weight: 700;
  color: #b2966a;
}

.about-text {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  color: #6d4a1a;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-image-wrap {
    height: 90vw;
    max-height: 360px;
  }
}
.color-3 { background: #8ac926; }
.color-4 { background: #1982c4; }
.color-5 {
  background-color: #f9f6f1;
}

.color-6 {
  background-color: #f9f6f1;
}

.professionals-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdf6ec;
  padding: clamp(28px, 3.4vw, 48px) 0;
}

.professionals-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  gap: clamp(20px, 2.4vw, 30px);
}

.professionals-heading {
  display: grid;
  gap: 10px;
}

.professionals-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b2966a;
}

.professionals-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  color: #6d4a1a;
}

.professionals-carousel {
  --professionals-gap: 16px;
  overflow: hidden;
  padding: 8px;
  border-radius: 18px;
}

.professionals-track {
  display: flex;
  gap: var(--professionals-gap);
  width: 100%;
  transition: transform 0.55s ease;
}

.professional-card {
  flex: 0 0 calc((100% - (var(--professionals-gap) * 2)) / 3);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(109, 74, 26, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.professionals-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.professionals-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(109, 74, 26, 0.24);
  border-radius: 999px;
  background: #fff;
  color: #6d4a1a;
  cursor: pointer;
}

.professionals-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.professionals-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(178, 150, 106, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.professionals-dot.is-active {
  background: #b2966a;
  transform: scale(1.14);
}

.professional-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.professional-info {
  padding: clamp(16px, 2vw, 22px);
  display: grid;
  gap: 8px;
}

.professional-name {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.2;
  color: #4d3210;
}

.professional-role {
  font-size: 0.96rem;
  font-weight: 700;
  color: #b2966a;
}

.professional-specialty {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #6d4a1a;
}

.contact-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./images/texture.png");
  padding: clamp(24px, 3vw, 42px) 0 94px;
}

.contact-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.contact-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b2966a;
}

.contact-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 58px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1f1430;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.contact-title {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.08;
  color: #6d4a1a;
}

.contact-list {
  display: grid;
  gap: 10px;
  color: #6d4a1a;
  line-height: 1.7;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 74, 26, 0.24);
  color: #6d4a1a;
  background: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
  animation: whatsapp-pulse 1.8s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.46);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.42);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.contact-map {
  height: 100%;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  border: solid 2px #fdf6ec;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

.services-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f6f1;
}

.services-carousel {
  position: relative;
  width: min(1200px, 92%);
  margin: 0 auto;
}

.service-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.service-slide.is-active {
  display: grid;
}

.service-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.service-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b2966a;
}

.service-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  font-weight: 700;
  color: #b2966a;
}

.service-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  color: #6d4a1a;
  max-width: 560px;
}

.service-description p {
  margin: 0;
}

.service-description-structured {
  display: grid;
  gap: 14px;
}

.service-description strong {
  color: #4d3210;
}

.service-values {
  display: grid;
  gap: 8px;
}

.service-values ul {
  margin: 0;
  padding-left: 20px;
}

.service-values li + li {
  margin-top: 4px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #b2966a;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.service-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.service-image-wrap {
  width: 100%;
  height: min(65vh, 540px);
  border-radius: 12px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 26px;
}

.services-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(109, 74, 26, 0.24);
  border-radius: 999px;
  background: #fff;
  color: #6d4a1a;
  cursor: pointer;
}

.services-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  gap: 10px;
  max-width: min(100%, 680px);
}

.services-dots::-webkit-scrollbar {
  display: none;
}

.services-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(178, 150, 106, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.services-dot.is-active {
  background: #b2966a;
  transform: scale(1.14);
}

.reviews-panel {
  height: calc(100vh - var(--header-height));
  min-height: calc(100vh - var(--header-height));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: clamp(24px, 4vw, 44px) 0;
  background: #f3f0ea;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.reviews-panel::before {
  content: 'Instituto do movimento';
  position: absolute;
  top: 50%;
  left: clamp(10px, 2vw, 24px);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: sideways;
  white-space: nowrap;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: rgba(178, 150, 106, 0.109);
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 0;
}

.reviews-content {
  width: min(1200px, 92%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(12px, 2vh, 24px);
  position: relative;
  z-index: 1;
}

.reviews-title {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.05;
  font-family: 'Allura', cursive;
  font-weight: 400;
  text-align: center;
  color: #b2966a;
  margin-bottom: clamp(12px, 2.4vh, 28px);
}

.reviews-subtitle {
  color: #6d4a1a;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.65;
  max-width: 700px;
  margin-bottom: 18px;
}

.reviews-carousel {
  --reviews-gap: 16px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0;
  padding: 8px;
  border-radius: 18px;
  cursor: grab;
  touch-action: pan-y;
}

.reviews-carousel.is-dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: var(--reviews-gap);
  width: 100%;
  transition: transform 0.55s ease;
}

.review-card {
  flex: 0 0 calc((100% - (var(--reviews-gap) * 2)) / 3);
  min-height: 180px;
  padding: clamp(18px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.reviews-controls {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.reviews-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(178, 150, 106, 0.42);
  cursor: default;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-dot.is-active {
  background: #b2966a;
  transform: scale(1.14);
}

.company-media-gallery {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.company-media-gallery.is-carousel {
  display: flex;
  overflow: hidden;
  grid-template-columns: none;
  transition: transform 0.5s ease;
  will-change: transform;
}

.company-media-gallery.is-carousel .company-media-tile {
  flex: 0 0 calc((100% - 60px) / 7);
}

.company-media-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.company-media-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.company-media-tile:hover .company-media-thumb {
  transform: scale(1.04);
}

.company-media-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
}

.company-media-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.74);
}

.company-media-modal[hidden] {
  display: none;
}

.company-media-modal-content {
  width: min(100%, 1080px);
  max-height: 84vh;
}

.company-media-modal-content img,
.company-media-modal-content video {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  background: #111;
}

.company-media-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  cursor: pointer;
}

.review-stars {
  letter-spacing: 0.08em;
  color: #f4b400;
  font-size: 1.02rem;
}

.review-text {
  line-height: 1.6;
  color: #5b452d;
  font-size: 0.97rem;
}

.review-author {
  font-size: 0.86rem;
  color: #8d7960;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .logo {
    height: 46px;
  }

  .carousel-content {
    max-width: 100%;
  }

  .service-slide {
    gap: 36px;
  }

  .professional-card {
    flex: 0 0 calc((100% - var(--professionals-gap)) / 2);
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 340px;
  }

  .review-card {
    flex: 0 0 calc((100% - var(--reviews-gap)) / 2);
  }

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

  .company-media-gallery.is-carousel .company-media-tile {
    flex: 0 0 calc((100% - 20px) / 3);
  }
}

@media (max-width: 768px) {
  .reviews-panel::before {
    left: 4px;
    font-size: clamp(6rem, 12vw, 10rem);
    opacity: 0.8;
  }

  .drag-cursor-hint {
    display: none;
  }

  .hero-carousel,
  .carousel-slide,
  .carousel-image,
  .carousel-overlay {
    width: 100vw;
    max-width: 100vw;
  }

  .carousel-content {
    width: 100%;
    justify-content: flex-end;
    padding-inline: 16px;
    padding-bottom: 120px;
  }

  .carousel-content h1,
  .carousel-content h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .carousel-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .carousel-controls {
    width: 100%;
    padding-inline: 16px;
    bottom: 20px;
  }

  .services-panel {
    padding: 30px 0;
  }

  .professionals-panel {
    padding: 28px 0;
  }

  .professional-card {
    flex: 0 0 100%;
  }

  .professional-image {
    aspect-ratio: 16 / 10;
  }

  .professionals-controls {
    gap: 10px;
  }

  .professionals-arrow {
    width: 40px;
    height: 40px;
  }

  .contact-panel {
    padding: 24px 0 88px;
  }

  .contact-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }

  .contact-map {
    min-height: 280px;
  }

  .service-slide.is-active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-image-wrap {
    order: -1;
    height: 80vw;
    max-height: 320px;
  }

  .service-description {
    max-width: 100%;
  }

  .reviews-subtitle {
    margin-bottom: 16px;
  }

  .review-card {
    flex: 0 0 100%;
    min-height: 168px;
  }

  .company-media-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .company-media-gallery.is-carousel {
    gap: 8px;
  }

  .company-media-gallery.is-carousel .company-media-tile {
    flex: 0 0 calc((100% - 8px) / 3);
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

[data-reveal] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

[data-reveal="fade-up"] {
  transform: translateY(44px);
}

[data-reveal="fade-left"] {
  transform: translateX(-48px);
}

[data-reveal="fade-right"] {
  transform: translateX(48px);
}

[data-reveal="fade-scale"] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Disable fullpage scroll-snap on mobile/tablet */
@media (max-width: 1024px) {
  html,
  body {
    overflow: auto;
    height: auto;
  }

  .fullpage {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
    margin-top: var(--header-height);
  }

  .panel,
  .reviews-panel {
    height: auto;
    min-height: auto;
    scroll-snap-align: none;
    scroll-snap-stop: unset;
  }

  .hero-panel {
    height: calc(100vh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
  }

  .about-panel {
    padding-top: 24px;
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   PAGE-LOAD ANIMATIONS  (header + hero)
   ============================================ */

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up-in {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header slides in from top */
.site-header {
  animation: slide-down 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hero — only the active slide's children animate so re-triggers work */
.carousel-slide.is-active .carousel-kicker {
  animation: fade-up-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.carousel-slide.is-active h1,
.carousel-slide.is-active h2 {
  animation: fade-up-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.carousel-slide.is-active .carousel-subtitle {
  animation: fade-up-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

.carousel-controls {
  animation: fade-up-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

/* Respect reduced-motion for load animations too */
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .carousel-slide.is-active .carousel-kicker,
  .carousel-slide.is-active h1,
  .carousel-slide.is-active h2,
  .carousel-slide.is-active .carousel-subtitle,
  .carousel-controls {
    animation: none;
  }
}
