/* ==========================================================================
   WR Pro Painters — Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-navy: #0B1F3A;
  --color-navy-light: #14294B;
  --color-navy-lighter: #1D3660;
  --color-white: #FFFFFF;
  --color-offwhite: #F7F5F0;
  --color-gold: #D9A544;
  --color-gold-light: #E6C177;
  --color-gold-dark: #B8863A;
  --color-text: #1C2230;
  --color-text-muted: #5B6270;
  --color-text-on-navy: #E9EDF5;
  --color-text-muted-on-navy: #A9B3C7;
  --color-border: #E4E1D8;

  /* Typography */
  --font-display: 'Fredoka', sans-serif;
  --font-heading: 'Merriweather', serif;
  --font-body: 'Lora', serif;

  --fs-hero: clamp(2.25rem, 5vw + 1rem, 4rem);
  --fs-h2: clamp(1.75rem, 2.5vw + 1rem, 2.75rem);
  --fs-h3: clamp(1.25rem, 1vw + 1rem, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container-width: 1200px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.14);
  --shadow-lg: 0 20px 48px rgba(11, 31, 58, 0.22);
  --transition-base: 0.25s ease;
}

/* --------------------------------------------------------------------------
   2. Reset & Base
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-xs);
}

.section-tag--on-dark {
  color: var(--color-gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-body);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  filter: brightness(0.93);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-navy {
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn-navy:hover {
  background-color: var(--color-navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Foco visível via teclado — mesmo anel dourado em qualquer fundo (claro, navy ou dourado). */
.btn:focus-visible,
.hero__link:focus-visible,
.header__menu a:focus-visible,
.header__toggle:focus-visible,
.footer__col a:focus-visible,
.footer__social a:focus-visible,
.faq__question:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-navy);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.1;
}

.header__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__menu a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-on-navy);
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition-base);
}

.header__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--color-gold);
  transition: width var(--transition-base);
}

.header__menu a:hover {
  color: var(--color-gold-light);
}

.header__menu a:hover::after {
  width: 100%;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 0.5rem;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .header__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--color-navy-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
  }

  .header__menu.is-open {
    max-height: 600px;
  }

  .header__menu a {
    width: 100%;
    padding: 1rem var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header__nav {
    position: static;
  }

  .header__nav .btn-gold {
    display: none;
  }

  .header__toggle {
    display: flex;
  }
}

/* Faixa apertada entre o fim do menu mobile e o desktop largo: com 8 itens
   no menu, precisa encolher um pouco o espaçamento pra não quebrar linha. */
@media (min-width: 901px) and (max-width: 1150px) {
  .header .container {
    padding: 0 var(--space-sm);
  }

  .header__nav {
    gap: var(--space-md);
  }

  .header__menu {
    gap: 0.85rem;
  }

  .header__menu a {
    font-size: 0.85rem;
    padding: 0.5rem 0.1rem;
  }

  .header__nav .btn-gold {
    padding: 0.75rem 1.1rem;
    font-size: 0.9rem;
  }
}

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-color: var(--color-navy);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/img/wr-pro-painters-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: heroKenBurns 20s linear infinite alternate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.88) 0%, rgba(11, 31, 58, 0.78) 45%, rgba(11, 31, 58, 0.92) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: var(--space-2xl) 0;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__line:nth-child(1) { animation-delay: 0.1s; }
.hero__line:nth-child(2) { animation-delay: 0.25s; }
.hero__line:nth-child(3) { animation-delay: 0.4s; }

.hero__headline .highlight {
  position: relative;
  display: inline-block;
  color: var(--color-gold);
}

.hero__headline .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background-color: var(--color-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: heroUnderline 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.15s;
}

.hero__subheadline {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.2vw + 0.6rem, 1.35rem);
  color: var(--color-gold-light);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}

.hero__support {
  font-size: 1.05rem;
  color: var(--color-text-on-navy);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.35s;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.55s;
}

.hero__ctas .btn-gold {
  position: relative;
  overflow: hidden;
}

.hero__ctas .btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  animation: heroSheen 1s ease-in-out forwards;
  animation-delay: 3.25s;
  pointer-events: none;
}

.hero__link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero__link:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--space-md);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-on-navy);
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__chip svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold-light);
  flex-shrink: 0;
}

.hero__chip:nth-child(1) { animation-delay: 1.8s; }
.hero__chip:nth-child(2) { animation-delay: 1.95s; }
.hero__chip:nth-child(3) { animation-delay: 2.1s; }

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroUnderline {
  to { transform: scaleX(1); }
}

@keyframes heroSheen {
  to { left: 140%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
    transform: scale(1);
  }

  .hero__line,
  .hero__subheadline,
  .hero__support,
  .hero__ctas,
  .hero__chip {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__headline .highlight::after {
    transform: scaleX(1);
    animation: none;
  }

  .hero__ctas .btn-gold::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 90vh;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }
}

/* Telas muito estreitas: os 3 chips empilham em vez de ficarem apertados
   lado a lado (pode "quebrar feio" com 2 numa linha + 1 sozinho). */
@media (max-width: 420px) {
  .hero__chips {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__chip {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   5. Trust Strip (3 cards)
   -------------------------------------------------------------------------- */
.trust {
  background-color: var(--color-offwhite);
  padding: var(--space-xl) 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.trust__card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust__card--highlight {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
}

.trust__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-navy);
  margin-bottom: var(--space-md);
}

.trust__card--highlight .trust__icon {
  background-color: var(--color-gold);
}

.trust__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-gold);
}

.trust__card--highlight .trust__icon svg {
  stroke: var(--color-navy);
}

.trust__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.trust__card--highlight .trust__title {
  color: var(--color-white);
}

.trust__text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.trust__card--highlight .trust__text {
  color: var(--color-text-muted-on-navy);
}

@media (max-width: 900px) {
  .trust__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   6. About Us
   -------------------------------------------------------------------------- */
.about {
  padding: var(--space-2xl) 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__media {
  position: relative;
  padding-bottom: var(--space-xl);
}

.about__decor {
  position: absolute;
  top: 0;
  right: 6%;
  width: 72%;
  height: 78%;
  background-color: var(--color-gold);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about__img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about__img--main {
  width: 80%;
  z-index: 1;
}

.about__img--secondary {
  position: absolute;
  bottom: var(--space-xl);
  right: 0;
  width: 55%;
  border: 6px solid var(--color-white);
  z-index: 2;
}

.about__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--color-navy);
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 3;
  font-family: var(--font-display);
  line-height: 1.3;
}

.about__badge-title {
  display: block;
  font-weight: 700;
  color: var(--color-gold-light);
  font-size: 1rem;
}

.about__badge-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-on-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about__title {
  font-size: var(--fs-h2);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.about__subtitle {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-text);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.about__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.about__checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-lg);
}

.about__checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.95rem;
}

.about__checklist svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--color-gold-dark);
  background-color: rgba(217, 165, 68, 0.15);
  border-radius: 50%;
  padding: 4px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    max-width: 480px;
    margin: 0 auto var(--space-md);
  }
}

@media (max-width: 480px) {
  .about__checklist {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   7. Our Services
   -------------------------------------------------------------------------- */
.services {
  padding: var(--space-2xl) 0;
  background-color: var(--color-offwhite);
}

.services__header {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.services__title {
  font-size: var(--fs-h2);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.services__text {
  color: var(--color-text-muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card__icon {
  position: absolute;
  bottom: 0;
  left: var(--space-md);
  transform: translateY(50%);
  width: 56px;
  height: 56px;
  background-color: var(--color-gold);
  border: 4px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-navy);
}

.service-card__body {
  padding: var(--space-lg) var(--space-md) var(--space-md);
  flex: 1;
}

.service-card__title {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
}

.service-card__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.service-card__accent {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   8. Our Process
   -------------------------------------------------------------------------- */
.process {
  padding: var(--space-2xl) 0;
  background-color: var(--color-white);
}

.process__header {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.process__title {
  font-size: var(--fs-h2);
  color: var(--color-navy);
}

.process__timeline {
  position: relative;
}

.process__connector {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 0;
  pointer-events: none;
}

.process__connector::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 3px dashed var(--color-gold);
  transform: translateX(-50%);
}

.process__connector--mobile {
  display: none;
}

.process__diamond {
  width: 14px;
  height: 14px;
  background-color: var(--color-gold);
  transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.process__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--space-xl);
  row-gap: var(--space-lg);
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.process__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 2px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__step-title {
  font-size: 1.1rem;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.process__step-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .process__grid {
    grid-template-columns: 1fr;
    row-gap: var(--space-lg);
  }

  .process__connector--desktop {
    display: none;
  }

  .process__connector--mobile {
    display: flex;
    align-items: flex-start;
    padding-left: 19px;
  }

  .process__connector--mobile::before {
    left: 7px;
  }
}

/* --------------------------------------------------------------------------
   9. Why Choose Us
   -------------------------------------------------------------------------- */
.why {
  position: relative;
  padding: var(--space-2xl) 0;
  background: linear-gradient(160deg, var(--color-navy) 0%, var(--color-navy-light) 55%, var(--color-navy-lighter) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='2' cy='2' r='1.4' fill='%23D9A544'/%3E%3C/svg%3E");
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}

.why__header {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.why__title-main {
  font-size: var(--fs-h2);
  color: var(--color-white);
}

.why__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.why__card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.why__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.why__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-navy);
}

.why__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.why__text {
  color: var(--color-text-muted-on-navy);
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   10. Before & After + Gallery Marquee
   -------------------------------------------------------------------------- */
.before-after {
  padding: var(--space-2xl) 0;
  background-color: var(--color-white);
}

.before-after__header {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.before-after__title {
  font-size: var(--fs-h2);
  color: var(--color-navy);
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.before-after__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.before-after__caption {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-navy);
  text-align: center;
}

@media (max-width: 900px) {
  .before-after__grid {
    grid-template-columns: 1fr;
  }
}

.compare {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}

.compare__image {
  position: absolute;
  inset: 0;
}

.compare__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.compare__image--after {
  z-index: 1;
}

.compare__image--before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.compare__label {
  position: absolute;
  bottom: var(--space-md);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background-color: rgba(11, 31, 58, 0.75);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare__label--before {
  left: var(--space-md);
}

.compare__label--after {
  right: var(--space-md);
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 0;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
}

.compare__handle::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--color-white);
  transform: translateX(-50%);
  box-shadow: var(--shadow-sm);
}

.compare__handle-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.compare.is-dragging .compare__handle-icon {
  transform: scale(1.1);
}

.compare__handle-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-navy);
}

/* Pulso de convite ao arrasto — dispara uma única vez quando o card entra na
   tela pela primeira vez (reaproveita a classe .is-visible do scroll-reveal,
   que agora vive no .before-after__card — cada um dos 3 cards tem seu próprio
   reveal independente — e nunca é removida, então a animação nunca repete). */
@keyframes handlePulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 165, 68, 0.55); }
  25% { box-shadow: 0 0 0 12px rgba(217, 165, 68, 0); }
  50% { box-shadow: 0 0 0 0 rgba(217, 165, 68, 0.45); }
  75% { box-shadow: 0 0 0 12px rgba(217, 165, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 165, 68, 0); }
}

.before-after__card.is-visible .compare__handle-icon {
  animation: handlePulse 1.6s ease-out 0.5s 1;
}

@media (prefers-reduced-motion: reduce) {
  .before-after__card.is-visible .compare__handle-icon {
    animation: none;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: var(--space-xl) 0 0;
  margin-top: var(--space-xl);
}

.marquee__track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .marquee__item {
    width: 200px;
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   11. Contact
   -------------------------------------------------------------------------- */
.contact {
  padding: var(--space-2xl) 0;
  background-color: var(--color-offwhite);
}

.contact__header {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.contact__title {
  font-size: var(--fs-h2);
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.contact__text {
  color: var(--color-text-muted);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__form {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.form__field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(217, 165, 68, 0.2);
}

.form__field textarea {
  resize: vertical;
  min-height: 120px;
}

.form__error {
  display: none;
  color: #c0392b;
  font-size: 0.8rem;
}

.form__field.has-error input,
.form__field.has-error select,
.form__field.has-error textarea {
  border-color: #c0392b;
}

.form__field.has-error .form__error {
  display: block;
}

.form__status {
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.2em;
}

.form__status.is-success {
  color: #2e7d32;
}

.form__status.is-error {
  color: #c0392b;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background-color: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact__info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
}

.contact__info-item h3 {
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}

.contact__info-item a,
.contact__info-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact__info-item a:hover {
  color: var(--color-gold-dark);
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-navy);
  color: var(--color-text-on-navy);
  padding-top: var(--space-2xl);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer__brand img {
  height: 56px;
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  color: var(--color-text-muted-on-navy);
  margin-bottom: var(--space-md);
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.footer__social a:hover {
  background-color: var(--color-gold);
  color: var(--color-navy);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.footer__social svg.footer__social-icon--fill {
  stroke: none;
  fill: currentColor;
}

.footer__col h3 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.footer__col ul li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  display: inline-block;
  position: relative;
  color: var(--color-text-muted-on-navy);
  transition: color var(--transition-base);
}

.footer__col a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--color-gold-light);
  transition: width var(--transition-base);
}

.footer__col a:hover {
  color: var(--color-gold-light);
}

.footer__col a:hover::after {
  width: 100%;
}

.footer__col p {
  color: var(--color-text-muted-on-navy);
  margin-bottom: 0.4rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  text-align: center;
  margin-top: var(--space-lg);
}

.footer__bottom p {
  color: var(--color-text-muted-on-navy);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   13b. Hover de elevação dos cards (só em dispositivos com mouse de verdade)
   -------------------------------------------------------------------------- */
/* Trust, Service, Why Choose Us e Process não são clicáveis — são cartões
   decorativos. Em touch, :hover fica "preso" depois do toque até o usuário
   tocar em outro lugar, o que pareceria um estado quebrado/confuso sem
   nenhum ganho (nada acontece ao "clicar" neles). Por isso esses hovers de
   elevação só existem quando o dispositivo tem hover de verdade (mouse). Já
   os elementos realmente clicáveis (botões, links, ícones sociais, FAQ)
   mantêm :hover normal, porque tocá-los já realiza a ação mesmo assim. */
@media (hover: hover) {
  /* Seletores prefixados pela seção/grid (em vez de só ".card:hover") de
     propósito: esses cards também levam a classe .reveal do scroll-reveal, e
     ".reveal.js-reveal.is-visible" (3 classes) fixa "transform: translateY(0)"
     depois da entrada. Um ".card:hover" comum (1 classe + pseudo-classe) tem
     especificidade menor e perderia a disputa, então o hover baixaria a
     sombra mas o card nunca subiria visualmente. Prefixar com a seção + grid
     eleva a especificidade o suficiente pra vencer, sem !important. */
  .trust .trust__grid .trust__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .services .services__grid .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }

  .services .services__grid .service-card:hover .service-card__media img {
    transform: scale(1.05);
  }

  .why .why__grid .why__card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
  }

  .process .process__grid .process__step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    background-color: var(--color-offwhite);
  }
}

/* --------------------------------------------------------------------------
   13. Reviews
   -------------------------------------------------------------------------- */
.reviews {
  padding: var(--space-2xl) 0;
  background-color: var(--color-offwhite);
}

.reviews__header {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.reviews__title {
  font-size: var(--fs-h2);
  color: var(--color-navy);
}

.reviews__invite {
  max-width: 640px;
  margin: 0 auto;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.reviews__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.reviews__google-icon {
  width: 40px;
  height: 40px;
}

.reviews__stars {
  display: flex;
  gap: 0.3rem;
}

.reviews__stars svg {
  width: 22px;
  height: 22px;
  fill: var(--color-gold);
}

.reviews__invite-text {
  font-size: 1.05rem;
  color: var(--color-text);
  max-width: 460px;
  margin: 0 auto var(--space-lg);
}

.reviews__cta {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq {
  padding: var(--space-2xl) 0;
  background-color: var(--color-white);
}

.faq__header {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.faq__title {
  font-size: var(--fs-h2);
  color: var(--color-navy);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq__item {
  background-color: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq__item.is-open {
  border-color: var(--color-gold);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-md);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq__question:hover {
  background-color: rgba(217, 165, 68, 0.08);
  color: var(--color-gold-dark);
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.faq__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold-dark);
  transition: transform var(--transition-base);
}

.faq__item.is-open .faq__icon svg {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__answer-inner {
  overflow: hidden;
  padding: 0 var(--space-md) 0;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item.is-open .faq__answer-inner {
  padding: 0 var(--space-md) var(--space-md);
}

.faq__answer-inner p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   15. Location
   -------------------------------------------------------------------------- */
.location {
  padding: var(--space-2xl) 0;
  background-color: var(--color-offwhite);
}

.location__header {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.location__title {
  font-size: var(--fs-h2);
  color: var(--color-navy);
}

.location__map {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* --------------------------------------------------------------------------
   16. Scroll Reveal
   -------------------------------------------------------------------------- */
/* .reveal por si só deixa o elemento totalmente visível — é a base segura
   caso o JS falhe ou demore. Só quando main.js roda (e o usuário não pediu
   less motion) a classe .js-reveal é adicionada, criando o estado inicial
   oculto que a IntersectionObserver depois reverte com .is-visible. */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal.js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Atraso escalonado dentro de cada grid de cards/passos. */
.trust__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.trust__grid .reveal:nth-child(2) { --reveal-delay: 120ms; }
.trust__grid .reveal:nth-child(3) { --reveal-delay: 240ms; }

.services__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.services__grid .reveal:nth-child(2) { --reveal-delay: 120ms; }
.services__grid .reveal:nth-child(3) { --reveal-delay: 240ms; }

.why__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.why__grid .reveal:nth-child(2) { --reveal-delay: 100ms; }
.why__grid .reveal:nth-child(3) { --reveal-delay: 200ms; }
.why__grid .reveal:nth-child(4) { --reveal-delay: 300ms; }

.process__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.process__grid .reveal:nth-child(2) { --reveal-delay: 80ms; }
.process__grid .reveal:nth-child(3) { --reveal-delay: 160ms; }
.process__grid .reveal:nth-child(4) { --reveal-delay: 240ms; }
.process__grid .reveal:nth-child(5) { --reveal-delay: 320ms; }
.process__grid .reveal:nth-child(6) { --reveal-delay: 400ms; }

.faq__list .reveal:nth-child(1) { --reveal-delay: 0ms; }
.faq__list .reveal:nth-child(2) { --reveal-delay: 80ms; }
.faq__list .reveal:nth-child(3) { --reveal-delay: 160ms; }
.faq__list .reveal:nth-child(4) { --reveal-delay: 240ms; }
.faq__list .reveal:nth-child(5) { --reveal-delay: 320ms; }

.before-after__grid .reveal:nth-child(1) { --reveal-delay: 0ms; }
.before-after__grid .reveal:nth-child(2) { --reveal-delay: 120ms; }
.before-after__grid .reveal:nth-child(3) { --reveal-delay: 240ms; }
