* {
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --bg-soft: #0d0d0e;
  --panel: rgba(19, 19, 20, .74);
  --panel-solid: #151516;
  --text: #f7f2e9;
  --muted: #b9b2a4;
  --muted-2: #8f897e;
  --gold: #d6aa3f;
  --gold-light: #ffe08a;
  --gold-dark: #8f6720;
  --line: rgba(255, 224, 138, .16);
  --line-2: rgba(255, 255, 255, .08);
  --shadow: 0 32px 90px rgba(0, 0, 0, .45);
  --radius: 26px;
  --radius-lg: 36px;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 224, 138, .12), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(214, 170, 63, .09), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0a0a0b 44%, #050505 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at top, black, transparent 68%);
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-2);
  background: rgba(7, 7, 7, .74);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand__symbol {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 224, 138, .22), rgba(214, 170, 63, .05)),
    #101010;
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 22px;
  letter-spacing: -.08em;
  box-shadow: 0 0 34px rgba(214, 170, 63, .16);
}

.brand__text strong,
.brand__text small {
  display: block;
  text-transform: uppercase;
  line-height: 1;
}

.brand__text strong {
  font-size: 14px;
  letter-spacing: .16em;
  color: var(--gold-light);
}

.brand__text small {
  margin-top: 5px;
  font-size: 10px;
  letter-spacing: .34em;
  color: #ded6c6;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  transition: color .2s ease;
}

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

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  padding: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 3px;
  background: var(--text);
  margin: 6px 0;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

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

.btn--small {
  min-height: 44px;
  padding: 0 18px;
}

.btn--gold {
  color: #14100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 58%, #c08b27);
  box-shadow: 0 18px 48px rgba(214, 170, 63, .22);
}

.btn--gold:hover {
  box-shadow: 0 22px 58px rgba(214, 170, 63, .30);
}

.btn--outline {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255,255,255,.035);
}

.btn--outline:hover {
  border-color: rgba(255, 224, 138, .45);
  background: rgba(255, 224, 138, .075);
}

.btn--dark {
  background: rgba(0,0,0,.55);
  border-color: var(--line);
  color: var(--gold-light);
}

.btn--full {
  width: 100%;
}

.tag,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

.tag span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 20px rgba(255, 224, 138, .55);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,7,.98) 0%, rgba(7,7,7,.90) 43%, rgba(7,7,7,.70) 100%),
    url("../img/logo-borges.png") center right / cover no-repeat;
  opacity: .82;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 190px;
  background: linear-gradient(transparent, var(--bg));
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 52px;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: .94;
  letter-spacing: -.075em;
}

.hero__text {
  max-width: 660px;
  margin: 26px 0 32px;
  color: #d9d0c0;
  font-size: clamp(17px, 1.6vw, 21px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

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

.hero-services a {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 224, 138, .075), rgba(255,255,255,.035)),
    rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.hero-services a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 224, 138, .42);
  background:
    linear-gradient(135deg, rgba(255, 224, 138, .12), rgba(255,255,255,.045)),
    rgba(0,0,0,.24);
}

.hero-services span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 224, 138, .12);
  border: 1px solid var(--line);
  font-size: 20px;
}

.hero-services strong {
  display: block;
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1.15;
}

.hero-services small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,224,138,.12), rgba(255,255,255,.035)),
    rgba(14,14,15,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card__glow {
  position: absolute;
  width: 260px;
  height: 260px;
  top: -130px;
  right: -90px;
  border-radius: 50%;
  background: rgba(255, 224, 138, .18);
  filter: blur(20px);
}

.hero-card__logo {
  position: relative;
  padding: 26px;
  background: rgba(0,0,0,.28);
  border-bottom: 1px solid var(--line-2);
}

.hero-card__logo img {
  border-radius: 24px;
  border: 1px solid var(--line-2);
  min-height: 230px;
  object-fit: cover;
}

.hero-card__content {
  position: relative;
  padding: 26px;
}

.mini-title {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 900;
  margin-bottom: 14px;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #e7ddce;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #15100a;
  background: var(--gold-light);
  font-size: 13px;
  font-weight: 950;
}

.section-title {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.section-title p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 720px;
}

.problem__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.problem__cards {
  display: grid;
  gap: 14px;
}

.problem__cards article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
}

.problem__cards span {
  grid-row: 1 / span 2;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 224, 138, .10);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-weight: 950;
}

.problem__cards h3 {
  grid-column: 2;
  margin: 0;
  font-size: 21px;
  letter-spacing: -.025em;
}

.problem__cards p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 224, 138, .07), transparent 52%),
    rgba(255,255,255,.035);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 224, 138, .34);
  background:
    linear-gradient(160deg, rgba(255, 224, 138, .11), transparent 52%),
    rgba(255,255,255,.05);
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 224, 138, .12);
  filter: blur(8px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 224, 138, .11);
  border: 1px solid var(--line);
  color: var(--gold-light);
  margin-bottom: 24px;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.service-card h3 {
  position: relative;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.service-card p {
  position: relative;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14.5px;
}

.service-card a {
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 900;
}

.service-card a::after {
  content: " →";
}

.service-card--wide {
  grid-column: span 2;
}

.service-card--gold {
  background:
    linear-gradient(135deg, rgba(255, 224, 138, .18), rgba(214, 170, 63, .08)),
    rgba(255,255,255,.045);
  border-color: rgba(255, 224, 138, .28);
}


/* Package section */
.package {
  padding-top: 42px;
}

.package__shell {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 26px;
  padding: 34px;
  border: 1px solid rgba(255, 224, 138, .26);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 224, 138, .18), transparent 34%),
    linear-gradient(135deg, rgba(255, 224, 138, .10), rgba(255,255,255,.035)),
    rgba(14,14,15,.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.package__shell::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255, 224, 138, .15);
  filter: blur(16px);
}

.package__content,
.package__items {
  position: relative;
  z-index: 1;
}

.package__content h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: .98;
  letter-spacing: -.06em;
}

.package__lead {
  margin: 18px 0 24px;
  color: #ded4c3;
  font-size: 18px;
  max-width: 560px;
}

.package__price {
  display: inline-grid;
  gap: 2px;
  padding: 20px 24px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 224, 138, .24);
  border-radius: 24px;
  background: rgba(0,0,0,.28);
}

.package__price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.package__price strong {
  color: var(--gold-light);
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.06em;
}

.package__price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.package__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.package__note {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

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

.package__items article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 224, 138, .07), transparent 58%),
    rgba(0,0,0,.22);
}

.package__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 224, 138, .10);
  font-size: 21px;
}

.package__items h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.package__items p,
.package__items li {
  color: var(--muted);
  font-size: 14px;
}

.package__items p {
  margin: 0;
}

.package__items ul {
  margin: 0;
  padding-left: 18px;
}

.method {
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent),
    rgba(255,255,255,.01);
}

.method__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.step {
  position: relative;
  padding: 24px;
  min-height: 250px;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  background: rgba(10,10,10,.74);
}

.step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #14100a;
  font-weight: 950;
  margin-bottom: 38px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at left, rgba(255, 224, 138, .13), transparent 34%),
    rgba(255,255,255,.035);
  box-shadow: var(--shadow);
}

.about__media {
  padding: 10px;
}

.about__photo {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  box-shadow: 0 20px 70px rgba(0,0,0,.38);
}

.about__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about__content {
  padding: 14px 18px 14px 0;
}

.about__content h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -.055em;
  color: var(--gold-light);
}

.about__content p {
  margin: 0 0 16px;
  color: #dcd2c2;
  font-size: 17px;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about__badges span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 224, 138, .08);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 224, 138, .25);
  background:
    linear-gradient(135deg, rgba(255, 224, 138, .14), rgba(255,255,255,.035)),
    #101010;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.cta-band p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact__info {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.035);
}

.contact__info h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.contact__info p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 17px;
}

.contact-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  margin-top: 12px;
}

.contact-card strong {
  color: var(--gold-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-card a {
  color: #eee4d4;
  word-break: break-word;
}

.lead-form {
  padding: 30px;
  border: 1px solid rgba(255, 224, 138, .24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 224, 138, .10), rgba(255,255,255,.035)),
    rgba(14,14,15,.92);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #efe7da;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(0,0,0,.32);
  color: var(--text);
  padding: 0 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form select option {
  color: #101010;
}

.lead-form textarea {
  min-height: 126px;
  padding-top: 15px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(255, 224, 138, .65);
  box-shadow: 0 0 0 4px rgba(255, 224, 138, .09);
}

.lead-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 12px;
}

.hidden {
  display: none !important;
}

.form-alert {
  display: none;
  margin: 0 0 14px;
  color: #ffb4b4;
  font-size: 13px;
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line-2);
  padding: 28px 0;
  background: #050505;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--gold-light);
  font-weight: 800;
}

.brand--footer .brand__symbol {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  font-size: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #062313;
  box-shadow: 0 20px 50px rgba(0,0,0,.42);
  border: 2px solid rgba(255,255,255,.16);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

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

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

@media (max-width: 1080px) {
  .hero__grid,
  .problem__grid,
  .about__grid,
  .contact__grid,
  .package__shell {
    grid-template-columns: 1fr;
  }

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

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

  .hero-card {
    max-width: 720px;
  }

  .about__content {
    padding: 0 8px 10px;
  }
}

@media (max-width: 840px) {
  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(12,12,12,.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 15px;
    border-bottom: 1px solid var(--line-2);
  }

  .nav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .section {
    padding: 66px 0;
  }

  .header__inner {
    min-height: 70px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7,7,7,.97), rgba(7,7,7,.82)),
      url("../img/logo-borges.png") center / cover no-repeat;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band__inner .btn {
    width: auto;
    max-width: 100%;
    min-height: 52px;
    padding: 0 22px;
    align-self: flex-start;
  }

  .hero-services a {
    min-height: 82px;
    padding: 15px;
  }

  .hero-services,
  .solutions__grid,
  .method__timeline,
  .form-row,
  .package__items {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    grid-column: span 1;
  }

  .problem__cards article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .problem__cards span,
  .problem__cards h3,
  .problem__cards p {
    grid-column: 1;
  }

  .problem__cards span {
    grid-row: auto;
  }

  .cta-band__inner,
  .lead-form,
  .contact__info,
  .about__grid,
  .package__shell {
    padding: 22px;
    border-radius: 26px;
  }

  .package__items article {
    min-height: auto;
  }

  .package__actions .btn {
    width: 100%;
  }

  .hero-card__logo img {
    min-height: 170px;
  }

  .brand__text strong {
    font-size: 12px;
  }

  .brand__text small {
    font-size: 9px;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }
}
