:root {
  --yellow: #ffc400;
  --yellow-strong: #ffb400;
  --black: #050505;
  --panel: #111111;
  --panel-2: #171717;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f5f5f5;
  --muted: #b6b6b6;
  --dark-muted: #727272;
  --max: 1140px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 196, 0, 0.08), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 48%, #050505 100%);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

body::selection {
  color: #050505;
  background: var(--yellow);
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

svg.line-svg,
svg.brand-svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

svg.line-svg {
  stroke-width: 3.6;
}

svg.brand-svg {
  stroke-width: 3.7;
}

svg.brand-svg circle {
  fill: currentColor;
  stroke: none;
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 3, 3, 0.97);
  border-bottom: 1px solid rgba(255, 196, 0, 0.11);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--yellow);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2rem, 2.6vw, 2.55rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.3vw, 34px);
  flex: 1;
}

.main-nav a {
  color: #e9e9e9;
  font-size: 0.83rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.main-nav a:first-child,
.main-nav a:hover {
  color: var(--yellow);
}

.header-phone {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 7px;
  color: #070707;
  background: var(--yellow);
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: 0 0 0 1px rgba(255, 196, 0, 0.28), 0 14px 34px rgba(255, 196, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.header-phone:hover {
  transform: translateY(-2px);
  background: #ffd138;
}

.nav-toggle,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 670px;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../img/hero-guincho.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.84) 35%, rgba(0, 0, 0, 0.33) 66%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.20) 58%, #090909 100%);
}

.hero-content {
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: 78px 0 156px;
}

.hero-copy {
  width: min(535px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow {
  margin-bottom: 22px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 196, 0, 0.58);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.42);
}

.eyebrow svg {
  font-size: 1rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.7vw, 4.65rem);
  line-height: 0.95;
}

mark {
  color: var(--yellow);
  background: transparent;
}

.hero-copy p {
  max-width: 470px;
  margin-bottom: 28px;
  color: #e2e2e2;
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions,
.call-inner,
.trust-line,
.client {
  display: flex;
  align-items: center;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-size: 0.83rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-primary {
  color: #050505;
  background: var(--yellow);
  box-shadow: 0 15px 35px rgba(255, 196, 0, 0.22);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 196, 0, 0.8);
  background: rgba(0, 0, 0, 0.22);
}

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

.btn-primary:hover {
  background: #ffd33d;
}

.btn-outline:hover {
  color: #050505;
  background: var(--yellow);
}

.trust-line {
  gap: 14px;
}

.trust-line p {
  margin: 0;
  color: #c9c9c9;
  font-size: 0.82rem;
  line-height: 1.35;
}

.trust-line strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span,
.client span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #161616;
  background: linear-gradient(135deg, #f7f7f7, #bcbcbc);
  border: 2px solid #2e2e2e;
  font-size: 0.6rem;
  font-weight: 950;
}

.avatar-stack span + span {
  margin-left: -10px;
}

.servicos-guincho {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  margin: -72px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: #121416;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

.servico {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.servico:last-child {
  border-right: 0;
}

.icone {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: #F2C300;
}

.icone img {
  width: 96px;
  height: 96px;
  display: block;
  object-fit: contain;
}

.servico h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.servico p {
  max-width: 190px;
  margin: 0;
  color: #b8b8b8;
  font-size: 0.78rem;
  line-height: 1.45;
}

.why-section {
  padding: 86px 0 78px;
  background: linear-gradient(180deg, #0a0a0a 0%, #070707 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.why-copy p,
.about-box p,
.section-head p,
.faq-list p {
  color: var(--muted);
}

.why-copy p {
  max-width: 520px;
  margin-bottom: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #e2e2e2;
  font-size: 0.94rem;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0a0a0a;
  background: var(--yellow);
  font-size: 0.76rem;
  font-weight: 950;
}

.photo-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: 560px;
}

.photo-collage img {
  width: 100%;
  height: 276px;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.photo-collage img:first-child {
  object-position: center;
}

.round-badge {
  position: absolute;
  left: -30px;
  top: 50%;
  width: 152px;
  height: 152px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  background: #080808;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.round-badge span {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.round-badge strong {
  margin-top: -5px;
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: 0.84;
}

.round-badge small {
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
}

.call-strip {
  color: #060606;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 35%),
    linear-gradient(90deg, #ffbe00, #ffd01e 48%, #f5ae00),
    var(--yellow);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.28), inset 0 -1px rgba(0, 0, 0, 0.18);
}

.call-inner {
  min-height: 122px;
  gap: 22px;
  justify-content: center;
  padding: 22px 0;
}

.call-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: #050505;
  font-size: 2.05rem;
}

.call-inner span {
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.call-inner strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.call-number {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 44px;
  padding: 0 32px;
  border-radius: 8px;
  color: #fff;
  background: #050505;
  font-size: 1.18rem;
  font-weight: 950;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.call-number:hover {
  transform: translateY(-2px);
}

.stats-section {
  padding: 40px 0 54px;
  background: #090909;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: linear-gradient(180deg, #141414, #0d0d0d);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
}

.stats-grid article {
  min-height: 130px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 15px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid span {
  grid-row: span 2;
  align-self: center;
  color: var(--yellow);
  font-size: 2.95rem;
}

.stats-grid strong {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2.45rem;
  line-height: 0.92;
}

.stats-grid p {
  margin: 3px 0 0;
  color: #d5d5d5;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.25;
}

.about-section {
  padding: 40px 0 28px;
  background: #090909;
}

.about-box {
  max-width: 900px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-box h2 {
  max-width: 810px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
}

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

.testimonials {
  padding: 64px 0 68px;
  background: #090909;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 330px);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.section-head p {
  margin-bottom: 11px;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  min-height: 226px;
  padding: 34px 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #101010);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 196, 0, 0.42);
}

.stars {
  margin-bottom: 15px;
  color: var(--yellow);
  font-size: 1.18rem;
  letter-spacing: 1px;
}

.testimonial-card p {
  margin-bottom: 24px;
  color: #ededed;
  font-size: 0.95rem;
}

.client {
  gap: 12px;
}

.client strong {
  display: grid;
  color: #fff;
  line-height: 1.15;
}

.client small {
  color: #c9c9c9;
  font-size: 0.76rem;
  font-weight: 700;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 29px;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3d3d3d;
}

.slider-dots span:first-child {
  background: var(--yellow);
}

.faq-section {
  padding: 20px 0 72px;
  background: #090909;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-grid h2 {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: linear-gradient(180deg, #151515, #101010);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: #fff;
  font-weight: 950;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--yellow);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -6px 24px 22px;
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.03), transparent 38%),
    #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr 0.9fr 1.15fr;
  gap: 46px;
  padding: 52px 0 42px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-grid h3 {
  margin: 0 0 17px;
  color: var(--yellow);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-grid a:not(.brand):not(.footer-contact),
.footer-brand p,
.address {
  color: #cfcfcf;
  font-size: 0.92rem;
}

.footer-grid a:not(.brand):not(.footer-contact) {
  display: block;
  margin-bottom: 10px;
  transition: color 180ms ease;
}

.footer-grid a:not(.brand):not(.footer-contact):hover {
  color: var(--yellow);
}

.footer-brand p {
  max-width: 300px;
  margin: 20px 0 18px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #050505 !important;
  background: var(--yellow);
  font-size: 0.66rem !important;
  font-weight: 950;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 950;
}

.footer-contact svg {
  color: var(--yellow);
  font-size: 1.3rem;
}

.address {
  margin: 18px 0 0;
  line-height: 1.5;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.copyright p {
  margin: 0;
  padding: 18px 20px;
  color: #898989;
  font-size: 0.79rem;
}

@media (max-width: 1050px) {
  .header-inner {
    gap: 16px;
  }

  .main-nav {
    gap: 15px;
  }

  .header-phone {
    padding-inline: 15px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .photo-collage {
    min-height: auto;
  }

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

  .servico:nth-child(2),
  .stats-grid article:nth-child(2) {
    border-right: 0;
  }

  .servico:nth-child(-n + 2),
  .stats-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 840px) {
  .container {
    width: min(calc(100% - 34px), var(--max));
  }

  .servicos-guincho {
    width: min(calc(100% - 34px), var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-button {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 196, 0, 0.45);
    border-radius: 7px;
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--yellow);
  }

  .main-nav {
    position: absolute;
    left: 17px;
    right: 17px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 8, 8, 0.98);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  }

  .nav-toggle:checked ~ .main-nav {
    display: grid;
    gap: 6px;
  }

  .main-nav a {
    padding: 12px 10px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 43px;
    min-height: 43px;
    justify-content: center;
    padding: 0;
  }

  .brand strong {
    font-size: 1.9rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero-bg {
    background-position: 68% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 70%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.64) 63%, #090909 100%);
  }

  .hero-content {
    padding: 64px 0 132px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.9rem);
  }

  .section-head,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .call-inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .call-number {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-copy p {
    font-size: 0.96rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .btn {
    width: 100%;
  }

  .trust-line {
    align-items: flex-start;
  }

  .servicos-guincho {
    margin-top: -50px;
  }

  .servicos-guincho,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .servico,
  .stats-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .servico:last-child,
  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .why-section {
    padding-top: 66px;
  }

  .photo-collage {
    grid-template-columns: 1fr;
  }

  .photo-collage img,
  .photo-collage img:first-child {
    height: 230px;
    min-height: 0;
    grid-column: auto;
  }

  .round-badge {
    left: 50%;
    top: 50%;
    width: 124px;
    height: 124px;
    transform: translate(-50%, -50%);
  }

  .round-badge strong {
    font-size: 3.5rem;
  }

  .call-icon {
    width: 62px;
    height: 62px;
  }

  .call-number {
    width: 100%;
    justify-content: center;
    padding-inline: 18px;
    font-size: 1.02rem;
  }

  .stats-grid article {
    min-height: 112px;
  }

  .testimonial-card {
    padding: 28px 24px 24px;
  }

  .faq-section {
    padding-bottom: 54px;
  }

  .footer-grid {
    gap: 28px;
  }
}
