/* ============================================
   CATARATA CENTER — Site Institucional
   Design: Forster Filmes
   Stack: HTML + CSS + JS (Apple-inspired)
   Paleta: Teal + Marsala + Dourado
   Tipografia: Playfair Display + Inter
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta Catarata Center */
  --teal: #1a7f7f;
  --teal-dark: #145f5f;
  --teal-light: #e8f4f4;
  --teal-subtle: #f2f9f9;

  --marsala: #7a2d3a;
  --marsala-light: #9b4050;

  --gold: #c9a84c;
  --gold-light: #f5ecd4;

  --white: #ffffff;
  --off-white: #fafafa;
  --gray-50: #f8f8f8;
  --gray-100: #f2f2f2;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Layout */
  --container: 1140px;
  --gutter: clamp(1.5rem, 5vw, 4rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Typography --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.5);
}

.title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  text-wrap: balance;
}

.title em {
  font-style: italic;
  color: var(--teal);
}

.title--light {
  color: var(--white);
}

.title--light em {
  color: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(26, 127, 127, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  transition: all 0.4s var(--ease-smooth);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.875rem var(--gutter);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.nav__logo-img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s var(--ease-smooth);
}

.nav--scrolled .nav__logo-img {
  filter: none;
  height: 52px;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}

.nav__links a:hover {
  color: var(--white);
}

.nav--scrolled .nav__links a {
  color: var(--gray-500);
}

.nav--scrolled .nav__links a:hover {
  color: var(--gray-800);
}

.nav__cta {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

.nav--scrolled .nav__cta {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.nav--scrolled .nav__cta:hover {
  background: var(--teal-dark);
}

/* Hamburger (mobile) */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav--scrolled .nav__hamburger span {
  background: var(--gray-800);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu--open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: color 0.2s ease;
}

.mobile-menu__link:hover {
  color: var(--teal);
}

.mobile-menu__cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.875rem 2rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 40%, #1a8f7f 100%);
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(122, 45, 58, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
}

.hero__bg-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 900px;
}

.hero__content > * {
  animation: heroFadeIn 1s var(--ease-out) both;
}

.hero__content > *:nth-child(1) { animation-delay: 0.2s; }
.hero__content > *:nth-child(2) { animation-delay: 0.4s; }
.hero__content > *:nth-child(3) { animation-delay: 0.6s; }
.hero__content > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero — números integrados */
.hero__numeros {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.hero__numero-value {
  display: block;
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
}

.hero__numero-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Hero — video background (ready for compiled video) */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* When video is active, gradient becomes overlay */
.hero__bg-video + .hero__bg-gradient {
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* (Números agora integrados no hero) */

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--gray-50);

  display: flex;
  align-items: center;
}

.sobre .container {
  width: 100%;
}

.sobre__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.sobre .title {
  margin-bottom: 2.5rem;
}

.sobre__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.sobre__body--highlight {
  color: var(--teal-dark);
  font-weight: 500;
  padding-left: 1.25rem;
  border-left: 2px solid var(--teal);
  margin-top: 1.5rem;
}

.sobre__video {
  border-radius: 20px;
  overflow: hidden;
}

.sobre__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.sobre__text {
  align-self: center;
}

.sobre__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--teal-light), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* ============================================
   SERVIÇOS
   ============================================ */
.servicos {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);

  display: flex;
  align-items: center;
}

.servicos .container {
  width: 100%;
}

.servicos__header {
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servico-card {
  padding: 2.5rem 2rem;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out);
}

.servico-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border-color: var(--teal-light);
}

.servico-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  border: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
  align-items: start;
}

.servico-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(26, 127, 127, 0.2);
}

.servico-card--featured .servico-card__icon {
  grid-row: 1 / 3;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.servico-card--featured .servico-card__title {
  color: var(--white);
}

.servico-card--featured .servico-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.servico-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.servico-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.servico-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ============================================
   EQUIPE
   ============================================ */
.equipe {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--gray-50);

  display: flex;
  align-items: center;
}

.equipe .container {
  width: 100%;
}

.equipe__header {
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.equipe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.equipe__card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
}

.equipe__photo {
  width: 160px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.equipe__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.equipe__card:nth-child(2) .equipe__photo img {
  object-position: center 30%;
}

.equipe__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--teal-light), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gray-400);
}

.equipe__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.equipe__role {
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.equipe__social {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.equipe__social:hover {
  color: var(--teal);
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);

  display: flex;
  align-items: center;
}

.depoimentos .container {
  width: 100%;
}

.depoimentos__header {
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimento-card {
  padding: 2.5rem 2rem;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.depoimento-card__text {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.depoimento-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.depoimento-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}

.depoimento-card__detail {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--teal-subtle);

  display: flex;
  align-items: center;
}

.cta-final .container {
  width: 100%;
}

.cta-final__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.cta-final__title em {
  font-style: italic;
  color: var(--teal);
}

.cta-final__body {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ============================================
   CONTATO
   ============================================ */
.contato {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--gray-900);
  color: var(--white);

  display: flex;
  align-items: center;
}

.contato .container {
  width: 100%;
}

.contato__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contato__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contato__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.contato__value {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contato__value--link {
  color: var(--gold);
  transition: opacity 0.2s ease;
}

.contato__value--link:hover {
  opacity: 0.7;
}

.contato__map-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 300px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.contato__map-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.contato__map-pin {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 2rem;
}

.contato__map-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contato__map-address {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.contato__map-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.contato__map-card:hover .contato__map-action {
  opacity: 0.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer__credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.footer__credit a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s var(--ease-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servico-card--featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .sobre,
  .servicos,
  .equipe,
  .depoimentos,
  .cta-final,
  .contato {
    min-height: auto;
  }

  /* Nav */
  .nav {
    justify-content: center;
  }

  .nav__logo-img {
    height: 54px;
  }

  .nav--scrolled .nav__logo-img {
    height: 42px;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    position: absolute;
    right: var(--gutter);
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero__sub br {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--ghost {
    border-color: rgba(255, 255, 255, 0.25);
  }

  /* Números no hero — mobile */
  .hero__numeros {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .hero__numero-value {
    font-size: 1.5rem;
  }

  .hero__numero-label {
    font-size: 0.6875rem;
  }

  /* Sobre */
  .sobre__layout {
    grid-template-columns: 1fr;
  }

  .sobre__video {
    aspect-ratio: 16 / 9;
    order: -1;
    overflow: hidden;
  }

  /* Serviços */
  .servicos__grid {
    grid-template-columns: 1fr;
  }

  .servico-card--featured {
    grid-template-columns: 1fr;
  }

  .servico-card--featured .servico-card__icon {
    grid-row: auto;
  }

  /* Títulos centralizados no mobile */
  .servicos__header,
  .equipe__header,
  .depoimentos__header,
  .sobre__text {
    text-align: center;
  }

  .sobre__body--highlight {
    text-align: left;
  }

  /* Equipe */

  .equipe__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Depoimentos */
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }

  /* Contato */
  .contato__layout {
    grid-template-columns: 1fr;
  }

  .contato__info {
    text-align: center;
  }

  .contato__details {
    align-items: center;
  }

  .contato__item {
    align-items: center;
  }

  .contato__map-card {
    text-align: center;
    align-items: center;
  }

  .contato__map {
    min-height: 280px;
  }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {

  .servico-card {
    padding: 2rem 1.5rem;
  }

  .hero__eyebrow {
    font-size: 0.6875rem;
  }
}
