/* ============================= */
/* CORES GERAIS DO SITE */
/* ============================= */
:root {
  --bg: #0f0f0f;        /* Fundo principal */
  --bg-soft: #181818;   /* Fundo das secções */
  --gold: #B08D57;      /* Bronze premium */
  --gold-dark: #8D6E3F; /* Bronze escuro */
  --blue: #0b4a73;      /* Azul premium */
  --text: #ffffff;      /* Texto branco */
  --muted: #d1d1d1;     /* Texto cinzento */
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: 88%;
  max-width: 1280px;
  margin: auto;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  padding: 12px 16px;
  background: var(--gold);
  color: #111;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-140%);
  z-index: 3000;
}

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

/* ============================= */
/* TOPO */
/* ============================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid rgba(176, 141, 87, 0.25);
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand h3 {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, serif;
}

.brand p {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 18px;
  font-weight: 600;
  padding: 10px 0;
}

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

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(176, 141, 87, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

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

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

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

@media (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }
}

.btn-header,
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

/* ============================= */
/* HERO */
/* ============================= */
.hero {
  min-height: 100vh;
  padding-top: 120px;
  background:
    linear-gradient(rgba(0,0,0,0.84), rgba(0,0,0,0.94)),
    url("imagens/logo2.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid rgba(176,141,87,.35);
  border-radius: 30px;
  color: var(--gold);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(10px);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(34,197,94,.8);
  animation: pulseOnline 2s infinite;
}

@keyframes pulseOnline {
  0% {
    box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(34,197,94,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
  }
}

.hero h1 {
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1;
  font-family: Georgia, serif;
  margin: 35px 0 25px;
}

.hero h1 span,
.section-title span,
.about-text span,
.contact h2 span {
  color: var(--gold);
}

.hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-highlights svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.btn-outline {
  color: #fff;
  border: 1px solid var(--blue);
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 470px;
  height: auto;
  border: none;
  filter: drop-shadow(0 0 25px rgba(176,141,87,.18));
}

.parallax-logo {
  transition: transform 0.08s linear;
  will-change: transform;
}

/* ============================= */
/* PROVA SOCIAL */
/* ============================= */
.social-proof {
  background: #111;
}

.testimonials-marquee {
  --testimonial-gap: 22px;
  --testimonial-gap-half: 11px;
  margin-top: 56px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.testimonials-track {
  display: flex;
  width: max-content;
  gap: var(--testimonial-gap);
  animation: testimonials-scroll 42s linear infinite;
}

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

.testimonials-grid {
  display: flex;
  gap: var(--testimonial-gap);
}

.testimonial-card {
  flex: 0 0 clamp(230px, 23vw, 285px);
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.26);
  border-radius: 12px;
  background: linear-gradient(145deg, #1b1b1b, #121212);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.testimonial-card img {
  width: calc(100% - 34px);
  aspect-ratio: 4 / 3;
  margin: 17px auto 0;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}

.testimonial-content {
  padding: 20px;
}

.testimonial-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 22px;
}

.testimonial-service {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@keyframes testimonials-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--testimonial-gap-half)));
  }
}

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

/* ============================= */
/* SECÇÕES */
/* ============================= */
.section {
  padding: 110px 0;
}

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 13px;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: clamp(42px, 5vw, 70px);
  font-family: Georgia, serif;
  margin: 15px 0;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 21px;
  max-width: 760px;
  margin: 0 auto;
}

/* ============================= */
/* SERVIÇOS */
/* ============================= */
.services-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card,
.why-card,
.about-card,
.contact-box {
  background: linear-gradient(145deg, #1b1b1b, #141414);
  border: 1px solid var(--blue);
  border-radius: 14px;
  padding: 45px;
}

.service-card {
  min-height: 250px;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(176,141,87,.18);
}

.icon {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.icon svg {
  width: 34px;
  height: 34px;
  stroke: #111;
  stroke-width: 2.4;
}

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 28px;
}

.service-card p,
.about-text p,
.about-card p,
.contact-box p,
.process-step p,
.coverage-box p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

/* ============================= */
/* COMO FUNCIONA */
/* ============================= */
.process {
  background: #0d0d0d;
}

.process-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-step {
  padding: 34px;
  border: 1px solid rgba(176, 141, 87, 0.24);
  border-radius: 12px;
  background: #141414;
}

.process-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #111;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 24px;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 26px;
}

.process-step p {
  margin: 0;
}

/* ============================= */
/* SOBRE */
/* ============================= */
.about {
  background: #101010;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pg-box {
  width: 95px;
  height: 95px;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-family: Georgia, serif;
  font-weight: bold;
  border-radius: 10px;
  margin-top: -70px;
}

.about-card h3 {
  color: var(--gold);
  font-size: 30px;
  font-family: Georgia, serif;
}

.stats {
  display: flex;
  gap: 80px;
  margin-top: 45px;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 38px;
  font-family: Georgia, serif;
}

.stats span {
  color: var(--muted);
}

.about-text .section-label {
  text-align: left;
}

.about-text h2,
.contact h2 {
  font-size: clamp(42px, 5vw, 66px);
  font-family: Georgia, serif;
  line-height: 1.05;
}

.about-text a {
  color: var(--gold);
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
}

/* ============================= */
/* PORQUÊ NÓS */
/* ============================= */
.why {
  background: var(--bg-soft);
}

.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.why-card {
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-card svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  stroke-width: 2.4;
}

/* ============================= */
/* ZONA DE ATUAÇÃO */
/* ============================= */
.coverage {
  background: #101010;
}

.coverage-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 12px;
  background: linear-gradient(145deg, #1a1a1a, #111);
}

.coverage-box .section-label {
  text-align: left;
  margin-top: 0;
}

.coverage-box h2 {
  margin: 0 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.coverage-box p {
  margin: 0;
  max-width: 760px;
}

/* ============================= */
/* FAQ */
/* ============================= */
.faq {
  background: var(--bg-soft);
}

.faq-grid {
  max-width: 900px;
  margin: 56px auto 0;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: #121212;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
}

.faq-item summary::marker {
  color: var(--gold);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

/* ============================= */
/* CONTACTO */
/* ============================= */
.contact {
  background: #0d0d0d;
}

.contact-box {
  text-align: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin: 55px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-info svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  stroke-width: 2.2;
  margin-bottom: 15px;
}

.contact-info strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

.contact-info a {
  color: var(--muted);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--gold);
}

.contact-form {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form label:not(.checkbox) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid var(--blue);
  background: #111;
  color: #fff;
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 120px;
}

.checkbox {
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

/* ============================= */
/* RODAPÉ */
/* ============================= */
.footer {
  background: #111;
  border-top: 1px solid var(--blue);
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo {
  width: 120px;
  margin: 0;
}

.footer-location {
  color: var(--gold);
  font-size: 15px;
  margin: 0;
}

.footer-copy {
  color: #bdbdbd;
  font-size: 14px;
  margin: 0;
}

/* ============================= */
/* WHATSAPP */
/* ============================= */
.whatsapp-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 0 0 18px;
  background: #fff;
  border-radius: 27px;
  color: #3f3f3f;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  z-index: 2000;
  cursor: pointer;
  transition: 0.3s ease;
}

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

.whatsapp-icon {
  width: 66px;
  height: 66px;
  margin-left: 10px;
  margin-right: -7px;
  background: #39e56c;
  border: 5px solid #39e56c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 0 0 10px rgba(57, 229, 108, 0.16);
  pointer-events: none;
}

.whatsapp-btn svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}

/* ============================= */
/* ANIMAÇÃO AO ROLAR */
/* ============================= */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.8s ease;
}

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

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .services-grid,
  .process-grid,
  .why-grid,
  .contact-info,
  .coverage-box {
    grid-template-columns: 1fr;
  }

  .testimonials-marquee {
    --testimonial-gap: 18px;
    --testimonial-gap-half: 9px;
  }

  .testimonial-card {
    flex-basis: 270px;
  }

  .hero {
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-highlights {
    justify-content: center;
  }

  .about-text .section-label {
    text-align: center;
  }

  .coverage-box {
    text-align: center;
  }

  .coverage-box .section-label {
    text-align: center;
  }

  .hero-image img {
    max-width: 340px;
  }
}

/* ============================= */
/* TELEMÓVEL */
/* ============================= */
@media (max-width: 1024px) {
  .container {
    width: min(92%, 100% - 28px);
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: fixed;
    top: 16px;
    right: 14px;
    width: 50px;
    height: 50px;
    background: #111;
    border-color: var(--gold);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
  }

  .nav {
    min-height: 82px;
    justify-content: space-between;
    position: relative;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .menu {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(176, 141, 87, 0.22);
    border-radius: 0 0 10px 10px;
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

  .menu a {
    margin: 0;
    padding: 13px 14px;
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
  }

  .brand h3 {
    font-size: 18px;
  }

  .brand p {
    font-size: 9px;
    letter-spacing: 2px;
    line-height: 1.4;
  }

  .logo {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 56px;
    text-align: center;
    background-position: center top !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .badge {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 10px 14px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.06;
    margin: 26px 0 18px;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .hero-image img {
    max-width: 220px;
  }

  .section {
    padding: 64px 0;
  }

  .section-label {
    letter-spacing: 3px;
    line-height: 1.5;
  }

  .section-title {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.12;
  }

  .section-subtitle {
    font-size: 17px;
  }

  .testimonials-marquee {
    margin-top: 36px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .testimonials-marquee::-webkit-scrollbar {
    display: none;
  }

  .testimonials-track {
    display: flex;
    width: max-content;
    padding: 0 2px;
    animation: none;
    transform: none;
  }

  .testimonials-grid {
    display: flex;
    gap: 18px;
  }

  .testimonials-grid[aria-hidden="true"] {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: center;
  }

  .service-card,
  .why-card,
  .about-card,
  .process-step,
  .contact-box {
    padding: 24px;
    border-radius: 10px;
  }

  .services-grid,
  .process-grid,
  .why-grid,
  .contact-info {
    gap: 18px;
    margin-top: 36px;
  }

  .icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
  }

  .icon svg {
    width: 28px;
    height: 28px;
  }

  .service-card h3 {
    font-size: 24px;
    margin: 0 0 12px;
  }

  .service-card p,
  .about-text p,
  .about-card p,
  .contact-box p,
  .process-step p,
  .coverage-box p,
  .faq-item p {
    font-size: 16px;
  }

  .process-step h3 {
    font-size: 23px;
  }

  .coverage-box {
    padding: 26px;
  }

  .coverage-box h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .faq-grid {
    margin-top: 34px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 17px;
  }

  .faq-item p {
    padding: 0 20px 18px;
  }

  .stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 32px;
  }

  .pg-box {
    width: 78px;
    height: 78px;
    margin-top: -52px;
    font-size: 28px;
  }

  .about-text h2,
  .contact h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.12;
  }

  .why-card {
    font-size: 17px;
    align-items: flex-start;
  }

  .why-card svg {
    flex: 0 0 24px;
    margin-top: 1px;
  }

  .contact-info {
    margin: 36px 0;
  }

  .contact-form {
    width: 100%;
  }

  .checkbox {
    line-height: 1.45;
  }

  .footer-logo {
    width: 90px;
  }

  .whatsapp-btn {
    right: 18px;
    bottom: 18px;
    min-height: 46px;
    padding-left: 14px;
    border-radius: 23px;
    font-size: 16px;
  }

  .whatsapp-icon {
    width: 56px;
    height: 56px;
    margin-left: 8px;
    margin-right: -6px;
    border-width: 4px;
  }

  .whatsapp-btn svg {
    width: 30px;
    height: 30px;
  }
}

/* ============================= */
/* TELEMÓVEL PEQUENO */
/* ============================= */
@media (max-width: 480px) {
  .container {
    width: min(94%, 100% - 22px);
  }

  .brand {
    gap: 10px;
  }

  .brand p {
    max-width: 190px;
    letter-spacing: 1.4px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-image img {
    max-width: 180px;
  }

  .badge {
    font-size: 10px;
    max-width: 100%;
    line-height: 1.35;
  }

  .service-card,
  .why-card,
  .about-card,
  .process-step,
  .contact-box {
    padding: 20px;
  }

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

  .hero-highlights li {
    justify-content: center;
  }

  .coverage-box {
    padding: 22px;
  }

  .testimonials-marquee {
    --testimonial-gap: 16px;
    --testimonial-gap-half: 8px;
  }

  .testimonial-card {
    flex-basis: min(84vw, 300px);
  }

  .testimonial-content {
    padding: 18px;
  }

  .contact-info p {
    overflow-wrap: anywhere;
  }

  .whatsapp-btn {
    right: 12px;
    bottom: 14px;
    min-height: 42px;
    padding-left: 12px;
    font-size: 14px;
  }

  .whatsapp-icon {
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn svg {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 1024px) {
  .header .menu-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 16px !important;
    right: 14px !important;
    z-index: 5000 !important;
  }
}

@media (min-width: 1025px) {
  .header .menu-toggle {
    display: none !important;
  }
}
