/* ============================================================
   GUASQUE ADVOGADOS — Design System
   Paleta: bordô (#7B1E26) · creme (#FAF6F0) · dourado (#C9A24B)
   ============================================================ */

:root {
  --wine: #7b1e26;
  --wine-dark: #5c151c;
  --wine-deep: #43090f;
  --ink: #1d1418;
  --cream: #faf6f0;
  --cream-dark: #f1e9dd;
  --gold: #c9a24b;
  --gold-light: #e0c98c;
  --text: #3a3035;
  --text-light: #d8cfc6;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(67, 9, 15, 0.25);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.container--narrow { width: min(860px, 92%); }

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  will-change: transform;
}

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

.btn--primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(123, 30, 38, 0.55);
}
.btn--primary:hover { background: var(--wine-dark); box-shadow: 0 18px 40px -10px rgba(123, 30, 38, 0.6); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b08a35 100%);
  color: var(--wine-deep);
  box-shadow: 0 12px 30px -10px rgba(201, 162, 75, 0.5);
}
.btn--gold:hover { box-shadow: 0 18px 42px -10px rgba(201, 162, 75, 0.65); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 246, 240, 0.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--nav {
  background: var(--wine);
  color: var(--white);
  padding: 11px 22px;
  font-size: 13.5px;
}
.btn--nav:hover { background: var(--wine-dark); }

/* ============ HEADER ============ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.is-scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 30px -12px rgba(67, 9, 15, 0.18);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  color: var(--cream);
  transition: color var(--transition);
}

.brand__sub {
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
  transition: color var(--transition);
}

.header.is-scrolled .brand__name { color: var(--wine); }
.header.is-scrolled .brand__sub { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 28px; }

.nav__link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.85);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { width: 100%; }

.header.is-scrolled .nav__link { color: var(--text); }
.header.is-scrolled .nav__link:hover { color: var(--wine); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.hamburger span {
  width: 26px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.header.is-scrolled .hamburger span,
.header.menu-open .hamburger span { background: var(--wine); }

.header.menu-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.header.menu-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(29, 7, 10, 0.96) 0%, rgba(67, 9, 15, 0.9) 45%, rgba(67, 9, 15, 0.55) 100%),
    url("assets/bg-desktop.webp") center / cover no-repeat;
  color: var(--cream);
  overflow: hidden;
  padding: 140px 0 90px;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__plane {
  position: absolute;
  width: 560px;
  right: -110px;
  top: 12%;
  color: rgba(250, 246, 240, 0.045);
  transform: rotate(38deg);
}

.hero__lines {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201, 162, 75, 0.13) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom right, transparent 35%, black 90%);
  -webkit-mask-image: linear-gradient(to bottom right, transparent 35%, black 90%);
}

.hero__content { position: relative; max-width: 760px; }

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 75, 0.4);
  border-radius: 100px;
  padding: 9px 20px;
  margin-bottom: 28px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.12;
  margin-bottom: 22px;
}

.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: rgba(250, 246, 240, 0.82);
  max-width: 600px;
  margin-bottom: 38px;
  font-weight: 300;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(250, 246, 240, 0.14);
  padding-top: 30px;
}

.badge {
  display: flex;
  flex-direction: column;
  padding-right: 44px;
  margin-right: 44px;
  border-right: 1px solid rgba(250, 246, 240, 0.14);
}

.badge:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.badge strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
}

.badge span { font-size: 13px; color: rgba(250, 246, 240, 0.65); }

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1.5px solid rgba(250, 246, 240, 0.35);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px; height: 9px;
  background: var(--gold);
  border-radius: 4px;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(13px); opacity: 0; }
}

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

.section--cream { background: var(--cream); }

.section--dark {
  background:
    radial-gradient(ellipse at 80% -10%, rgba(123, 30, 38, 0.35) 0%, transparent 55%),
    var(--ink);
  color: var(--text-light);
}

.section--wine {
  background:
    radial-gradient(ellipse at 15% 110%, rgba(201, 162, 75, 0.14) 0%, transparent 50%),
    linear-gradient(160deg, var(--wine-dark) 0%, var(--wine-deep) 100%);
  color: var(--text-light);
}

.section__head { text-align: center; max-width: 680px; margin: 0 auto 64px; }

.section__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 14px;
}

.section__eyebrow--gold { color: var(--gold-light); }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 16px;
}

.section__title--light { color: var(--cream); }

.section__lead { font-size: 17px; color: var(--text); }
.section__lead--light { color: rgba(250, 246, 240, 0.7); }

.section__cta { text-align: center; margin-top: 56px; }

/* ============ CARDS (ÁREAS DE ATUAÇÃO) ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(123, 30, 38, 0.08);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: 0 6px 24px -14px rgba(67, 9, 15, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 75, 0.35);
}

.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(123, 30, 38, 0.08), rgba(201, 162, 75, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--wine);
}

.card__icon svg { width: 30px; height: 30px; }

.card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.card p { font-size: 14.5px; line-height: 1.65; }

/* ============ SPLIT (OVERBOOKING / SOBRE) ============ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.split--reverse { grid-template-columns: 0.85fr 1.15fr; }

.split__text .section__eyebrow { margin-bottom: 14px; }
.split__text .section__title { margin-bottom: 22px; }
.split__text p { margin-bottom: 16px; font-size: 16px; }
.split__text .btn { margin-top: 14px; }

.section--dark .split__text p strong { color: var(--gold-light); }
.section--cream .split__text p strong { color: var(--wine); }

.split__highlight {
  font-family: var(--font-display);
  font-size: 21px !important;
  font-style: italic;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

/* Cartão de embarque decorativo */
.split__visual { display: flex; flex-direction: column; align-items: center; gap: 26px; }

.ticket {
  width: 100%;
  max-width: 410px;
  background: linear-gradient(160deg, #fdfaf5 0%, #f3ecdf 100%);
  border-radius: 18px;
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  transform: rotate(-2.5deg);
  transition: transform var(--transition);
  position: relative;
}

.ticket:hover { transform: rotate(0deg) scale(1.02); }

.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  top: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -11px; }
.ticket::after { right: -11px; }

.ticket__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px dashed rgba(29, 20, 24, 0.2);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.ticket__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(29, 20, 24, 0.55);
}

.ticket__status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--wine);
  border: 1.5px solid var(--wine);
  border-radius: 6px;
  padding: 3px 10px;
}

.ticket__route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.ticket__route > div { display: flex; flex-direction: column; }
.ticket__route > div:last-child { text-align: right; }

.ticket__route strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.ticket__route span { font-size: 12px; color: rgba(29, 20, 24, 0.55); margin-top: 4px; }

.ticket__plane { width: 30px; color: var(--gold); transform: rotate(90deg); flex-shrink: 0; }

.ticket__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(29, 20, 24, 0.65);
}

.ticket__stamp {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: var(--wine);
  border: 2px solid var(--wine);
  border-radius: 8px;
  padding: 2px 14px;
  transform: rotate(-6deg);
  opacity: 0.85;
}

.ticket__caption {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.5;
}

/* Foto Sobre */
.split__photo { display: flex; justify-content: center; }

.photo-frame {
  position: relative;
  max-width: 380px;
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(201, 162, 75, 0.5);
  border-radius: 200px 200px var(--radius) var(--radius);
  margin: 12px;
  pointer-events: none;
}

.photo-frame img { width: 100%; object-fit: cover; }

/* ============ DIFERENCIAIS ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature {
  background: rgba(250, 246, 240, 0.05);
  border: 1px solid rgba(250, 246, 240, 0.1);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.feature:hover {
  background: rgba(250, 246, 240, 0.09);
  border-color: rgba(201, 162, 75, 0.4);
  transform: translateY(-6px);
}

.feature__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 18px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature p { font-size: 14.5px; color: rgba(250, 246, 240, 0.72); }

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 14px; }

.faq__item {
  background: var(--white);
  border: 1px solid rgba(123, 30, 38, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item[open] {
  border-color: rgba(201, 162, 75, 0.5);
  box-shadow: 0 12px 32px -18px rgba(67, 9, 15, 0.25);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  transition: color var(--transition);
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--wine); }

.faq__icon {
  position: relative;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(123, 30, 38, 0.07);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--wine);
  border-radius: 2px;
  transition: transform var(--transition);
}

.faq__icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }

.faq__item[open] .faq__icon { background: var(--wine); transform: rotate(180deg); }
.faq__item[open] .faq__icon::before { background: var(--cream); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__answer { padding: 0 26px 24px; }
.faq__answer p { font-size: 15px; color: var(--text); }

.faq__cta { text-align: center; margin-top: 50px; }
.faq__cta p { max-width: 520px; margin: 0 auto 24px; font-size: 16px; }

/* ============ CONTATO ============ */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.contact__card {
  text-decoration: none;
  background: rgba(250, 246, 240, 0.04);
  border: 1px solid rgba(250, 246, 240, 0.12);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact__card:hover {
  background: rgba(250, 246, 240, 0.08);
  border-color: rgba(201, 162, 75, 0.45);
  transform: translateY(-6px);
}

.contact__icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(123, 30, 38, 0.55), rgba(201, 162, 75, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.contact__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.contact__card p { font-size: 14.5px; color: rgba(250, 246, 240, 0.72); margin-bottom: 16px; word-break: break-word; }

.contact__action {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-top: auto;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--wine-deep);
  color: rgba(250, 246, 240, 0.6);
  padding: 56px 0 40px;
  text-align: center;
}

.footer__brand { display: flex; flex-direction: column; align-items: center; line-height: 1; margin-bottom: 22px; }
.footer__brand .brand__name { color: var(--cream); }
.footer__brand .brand__sub { color: var(--gold-light); }

.footer__rights { font-size: 13.5px; margin-bottom: 18px; }

.footer__disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(250, 246, 240, 0.38);
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 38px -8px rgba(37, 211, 102, 0.75);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 12px 30px -8px rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 0 12px 30px -8px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 30px -8px rgba(37, 211, 102, 0.6); }
}

/* ============ ANIMAÇÕES DE SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .whatsapp-float { animation: none; }
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1020px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 56px; }
  .split--reverse .split__photo { order: -1; }
  .section { padding: 90px 0; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 105;
  }

  .header.menu-open .nav { transform: translateX(0); }

  .nav__link { color: var(--ink) !important; font-size: 20px; font-family: var(--font-display); font-weight: 600; }
  .btn--nav { font-size: 16px; padding: 15px 32px; }

  .hero {
    background:
      linear-gradient(165deg, rgba(29, 7, 10, 0.95) 0%, rgba(67, 9, 15, 0.88) 60%, rgba(67, 9, 15, 0.62) 100%),
      url("assets/bg-mobile.webp") center / cover no-repeat;
    padding: 120px 0 80px;
  }

  .hero__plane { width: 360px; right: -130px; top: 6%; }

  .hero__title { font-size: clamp(30px, 8.6vw, 38px); overflow-wrap: break-word; }

  .badge { padding-right: 26px; margin-right: 26px; }
  .badge strong { font-size: 22px; }
  .badge span { font-size: 11.5px; }

  .section { padding: 72px 0; }
  .section__head { margin-bottom: 44px; }

  .ticket { transform: rotate(0); }

  .faq__item summary { font-size: 17.5px; padding: 18px 20px; }
  .faq__answer { padding: 0 20px 20px; }

  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

@media (max-width: 420px) {
  .hero__actions .btn { width: 100%; justify-content: center; }
  .badge { border-right: none; padding-right: 0; margin-right: 0; margin-bottom: 14px; }
  .hero__badges { flex-direction: column; }
}
