/* =========================================================
   01. VARIÁVEIS GLOBAIS
========================================================= */

:root {
  --color-bg: #100d0e;
  --color-bg-2: #1e191b;
  --color-card: rgba(255, 255, 255, 0.065);
  --color-card-strong: rgba(255, 255, 255, 0.1);
  --color-text: #f7f4f0;
  --color-muted: #c9c0ba;
  --color-white: #ffffff;
  --color-red: #ef1b2d;
  --color-blue: #2527a4;
  --color-border: rgba(255, 255, 255, 0.14);

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 26px;
  --header-height: 84px;
  --container: 1180px;

  --mouse-x: 50vw;
  --mouse-y: 50vh;
}


/* =========================================================
   02. RESET E BASE
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at var(--mouse-x) var(--mouse-y),
      rgba(239, 27, 45, 0.13),
      transparent 22rem
    ),
    linear-gradient(135deg, #181313 0%, var(--color-bg) 48%, #090808 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.12rem 0.35rem;
  border-radius: 0.4rem;
}

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


/* =========================================================
   03. ACESSIBILIDADE
========================================================= */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--color-red);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}


/* =========================================================
   04. EFEITOS VISUAIS
========================================================= */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  background: #171314;
  color: var(--color-white);
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader img {
  width: 124px;
  height: 124px;
  object-fit: contain;
  animation: preloaderPulse 1.2s ease-in-out infinite alternate;
}

.preloader span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes preloaderPulse {
  from {
    transform: scale(0.96) rotate(-2deg);
    filter: drop-shadow(0 0 0 rgba(239, 27, 45, 0));
  }

  to {
    transform: scale(1.04) rotate(2deg);
    filter: drop-shadow(0 0 38px rgba(239, 27, 45, 0.42));
  }
}

.cursor-glow {
  position: fixed;
  left: var(--mouse-x);
  top: var(--mouse-y);
  z-index: -1;
  width: 260px;
  height: 260px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(239, 27, 45, 0.2),
      rgba(37, 39, 164, 0.11) 34%,
      transparent 65%
    );
  filter: blur(8px);
}

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

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


/* =========================================================
   05. HEADER E NAVEGAÇÃO
========================================================= */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  min-height: var(--header-height);
  background: rgba(16, 13, 14, 0.74);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.header.scrolled {
  background: rgba(9, 8, 8, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.05;
  font-size: 0.84rem;
}

.brand strong {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-menu .nav-button {
  color: var(--color-white);
  background: linear-gradient(
    135deg,
    var(--color-red),
    #b91322 58%,
    var(--color-blue)
  );
  box-shadow: 0 14px 36px rgba(239, 27, 45, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-white);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.side-scroll {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 15;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.side-scroll a {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.side-scroll a.active,
.side-scroll a:hover {
  transform: scale(1.45);
  background: var(--color-red);
}


/* =========================================================
   06. ESTRUTURA DE SEÇÕES
========================================================= */

.section,
.hero {
  padding: 110px 0;
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at 85% 10%, rgba(37, 39, 164, 0.28), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.section-muted {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-height) + 80px);
}

.hero-grid,
.two-columns,
.location-grid,
.contact-grid,
.reviews-grid,
.professional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}


/* =========================================================
   07. TIPOGRAFIA
========================================================= */

.eyebrow {
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1,
.section-heading h2,
.professional-text h2,
.split-card h2,
.contact-card h2 {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  line-height: 0.98;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4vw;
}

.section-heading h2,
.professional-text h2,
.split-card h2,
.contact-card h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.hero h1::after,
.section-heading h2::after {
  content: "";
  display: block;
  width: 112px;
  height: 7px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-red),
    var(--color-white),
    var(--color-blue)
  );
}

.centered h2::after {
  margin-left: auto;
  margin-right: auto;
}

.typing-line {
  min-height: 32px;
  margin: 24px 0 10px;
  color: var(--color-white);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 900;
}

.typing-cursor {
  color: var(--color-red);
  animation: blink 0.9s infinite;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.hero-text,
.section-heading p,
.about-content p,
.professional-text p,
.split-card p,
.contact-card p {
  color: var(--color-muted);
  font-size: 1.04rem;
}


/* =========================================================
   08. BOTÕES
========================================================= */

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

.btn-primary {
  color: var(--color-white);
  background: linear-gradient(
    135deg,
    var(--color-red),
    #b91322 58%,
    var(--color-blue)
  );
  box-shadow: 0 18px 50px rgba(239, 27, 45, 0.28);
}

.btn-outline {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-border);
}


/* =========================================================
   09. HERO
========================================================= */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-badges span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-card,
.professional-card,
.service-card,
.media-card,
.media-video,
.reviews-widget-placeholder,
.contact-card,
.map-card,
.contact-info,
.split-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  padding: 38px;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.42;
}

.hero-card::before {
  width: 320px;
  height: 320px;
  right: -120px;
  top: -80px;
  background: rgba(239, 27, 45, 0.28);
}

.hero-card::after {
  width: 240px;
  height: 240px;
  left: -70px;
  bottom: -70px;
  background: rgba(37, 39, 164, 0.34);
}

.barber-pole {
  position: absolute;
  inset: auto 12% 16% 12%;
  height: 22px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    135deg,
    var(--color-red) 0 30px,
    var(--color-white) 30px 60px,
    var(--color-blue) 60px 90px
  );
  opacity: 0.78;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(360px, 85%);
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.5));
}


/* =========================================================
   10. SOBRE
========================================================= */

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 4px;
  color: var(--color-muted);
}


/* =========================================================
   11. SERVIÇOS
========================================================= */

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

.service-card {
  min-height: 292px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.service-card a {
  display: block;
  height: 100%;
  padding: 28px;
}

.service-card:hover,
.media-card:hover,
.professional-card:hover {
  border-color: rgba(239, 27, 45, 0.48);
  background: linear-gradient(
    145deg,
    rgba(239, 27, 45, 0.12),
    rgba(255, 255, 255, 0.045)
  );
}

.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 18px;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-red), var(--color-blue));
  font-size: 1.6rem;
  font-weight: 900;
}

.service-card h3,
.media-card h3,
.instagram-box h3,
.reviews-widget-placeholder h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.service-card p,
.media-card p,
.instagram-box p,
.reviews-widget-placeholder p,
.contact-info span {
  color: var(--color-muted);
}

.service-card strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--color-white);
}


/* =========================================================
   12. MÍDIAS
========================================================= */

.media-grid {
  grid-template-columns: repeat(4, 1fr);
}

.media-card {
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
  border-bottom: 1px solid var(--color-border);
}

.media-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(239, 27, 45, 0.14);
  color: var(--color-white);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.instagram-box {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(239, 27, 45, 0.16), transparent),
    rgba(255, 255, 255, 0.05);
}


/* =========================================================
   13. AVALIAÇÕES
========================================================= */

.reviews-grid {
  align-items: stretch;
}

.reviews-widget-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  border-style: dashed;
}

.stars {
  color: #ffd166;
  font-size: 2rem;
  letter-spacing: 0.12em;
}


/* =========================================================
   14. LOCALIZAÇÃO E CONTATO
========================================================= */

.map-card {
  min-height: 420px;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.85) contrast(1.08);
}

.contact-card,
.contact-info {
  padding: 32px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info a,
.contact-info div {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.contact-info a:hover {
  transform: translateX(4px);
  border-color: rgba(239, 27, 45, 0.5);
}

.contact-info strong {
  color: var(--color-white);
}


/* =========================================================
   15. RODAPÉ
========================================================= */

.footer {
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
  background: #080707;
  color: #b9b9b9;
  text-align: center;
  font-size: 0.9rem;
}

.footer-credit {
  margin-top: 8px;
  color: var(--color-white);
}

.footer-credit:hover {
  color: #f7baba;
}


/* =========================================================
   16. BOTÕES FIXOS
========================================================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--color-white);
  background: #25d366;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.28);
}

.whatsapp-float img {
  width: 25px;
  height: 25px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 50;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

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


/* =========================================================
   17. RESPONSIVIDADE
========================================================= */

/* Tablets e telas intermediárias */
@media (max-width: 1060px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(9, 8, 8, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

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

  .nav-menu a {
    justify-content: flex-start;
  }

  .side-scroll {
    display: none;
  }

  .hero-grid,
  .two-columns,
  .location-grid,
  .contact-grid,
  .reviews-grid,
  .professional-grid,
  .split-card {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .media-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Celulares e telas pequenas */
@media (max-width: 700px) {
  :root {
    --header-height: 68px;
    --radius: 18px;
  }

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

  .section,
  .hero {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }

  .navbar {
    min-height: var(--header-height);
  }

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

  .brand span {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .nav-menu {
    left: 12px;
    right: 12px;
    top: calc(var(--header-height) + 8px);
    gap: 4px;
    padding: 12px;
    border-radius: 18px;
  }

  .nav-menu a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero-grid,
  .two-columns,
  .location-grid,
  .contact-grid,
  .reviews-grid {
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.4rem);
    line-height: 0.95;
  }

  .section-heading h2,
  .professional-text h2,
  .split-card h2,
  .contact-card h2 {
    font-size: clamp(2rem, 8.5vw, 3rem);
    line-height: 1;
  }

  .hero h1::after,
  .section-heading h2::after {
    width: 76px;
    height: 5px;
    margin-top: 14px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero-text,
  .section-heading p,
  .about-content p,
  .professional-text p,
  .split-card p,
  .contact-card p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .typing-line {
    min-height: 26px;
    margin: 16px 0 8px;
    font-size: 0.92rem;
  }

  .hero-actions,
  .location-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .hero-badges {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-badges span {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .hero-card {
    min-height: 300px;
    padding: 24px;
  }

  .hero-logo {
    width: min(240px, 78%);
  }

  .barber-pole {
    height: 16px;
    inset: auto 12% 14% 12%;
  }

  .feature-list {
    gap: 10px;
    margin-top: 20px;
  }

  .feature-list div {
    padding: 14px;
    border-radius: 14px;
  }

  .feature-list strong {
    font-size: 0.9rem;
  }

  .feature-list span {
    font-size: 0.82rem;
  }

  .section-heading.centered {
    margin-bottom: 30px;
  }

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

  .service-card {
    min-height: auto;
    border-radius: 18px;
  }

  .service-card a {
    padding: 16px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 13px;
    font-size: 1.25rem;
  }

  .service-card h3,
  .media-card h3,
  .instagram-box h3,
  .reviews-widget-placeholder h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .service-card p,
  .media-card p,
  .instagram-box p,
  .reviews-widget-placeholder p,
  .contact-info span {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .service-card strong {
    margin-top: 10px;
    font-size: 0.78rem;
  }

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

  .media-card {
    border-radius: 18px;
  }

  .media-card img {
    aspect-ratio: 1 / 0.78;
  }

  .instagram-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .reviews-widget-placeholder {
    min-height: 250px;
    padding: 20px;
    border-radius: 18px;
  }

  .map-card {
    min-height: 300px;
    border-radius: 18px;
  }

  .map-card iframe {
    height: 300px;
  }

  .contact-card,
  .contact-info {
    padding: 20px;
    border-radius: 18px;
  }

  .contact-info {
    gap: 10px;
  }

  .contact-info a,
  .contact-info div {
    padding: 14px;
    border-radius: 14px;
  }

  .contact-info strong {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .footer {
    padding: 22px 12px;
    font-size: 0.78rem;
  }

  .whatsapp-logot {
    display: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 46px;
    min-height: 46px;
    padding: 0 12px;
  }

  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }

  .back-to-top {
    right: 14px;
    bottom: 72px;
    width: 40px;
    height: 40px;
  }
}

/* Celulares muito pequenos */
@media (max-width: 420px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .hero h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .section-heading h2,
  .professional-text h2,
  .split-card h2,
  .contact-card h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .hero-card {
    min-height: 260px;
  }

  .hero-logo {
    width: min(210px, 76%);
  }

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

  .service-card a {
    padding: 18px;
  }

  .service-card h3 {
    font-size: 1.08rem;
  }

  .service-card p {
    font-size: 0.84rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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


/* =========================================================
   18. ACESSIBILIDADE DE MOVIMENTO
========================================================= */

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

  .cursor-glow {
    display: none;
  }
}