@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&family=Raleway:wght@400;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* =========================================================
   BASE
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

img,
video,
iframe {
  max-width: 100%;
}

/* =========================================================
   HEADER + MENU
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), #000000);
}

.logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-left: 80px;
  font-size: 12px;
  font-weight: 700;
}

.btn-header,
#btn-header {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.btn-header:hover,
#btn-header:hover {
  color: #cfcfcf;
}

.ft-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ft-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff12;
  color: #fff;
  font-size: 18px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.ft-social a:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

.menu-toggle,
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 70;
  padding: 0;
}

.menu-toggle span,
.hamburger .bar {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
}

.header.is-open .menu-toggle span:nth-child(1),
.header.is-open #menuToggle .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #9d4edd;
}

.header.is-open .menu-toggle span:nth-child(2),
.header.is-open #menuToggle .bar:nth-child(2) {
  opacity: 0;
}

.header.is-open .menu-toggle span:nth-child(3),
.header.is-open #menuToggle .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #9d4edd;
}

/* Suporte para HTML que usa uma gaveta lateral com .nav-container-mobile */
.nav-container-mobile {
  display: flex;
  align-items: center; 
  gap: 32px;
  background: none;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.88)),
    radial-gradient(circle at 50% 45%, rgba(114, 11, 80, 0.18), transparent 46%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(620px, 82vw);
  height: min(620px, 82vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 11, 80, 0.28), transparent 68%);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, 900px);
  margin: 0 auto;
  padding-top: 88px;
}

.hero-tag {
  display: block;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 24px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 strong {
  color: #720b50;
}

.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-secundary {
  position: relative;
  display: inline-block;
  padding: 25px 30px;
  margin: 40px 50px 40px 0;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 4px;
  overflow: hidden;
  background: transparent;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-secundary:hover {
  background: #131313;
  color: #ffffff;
  box-shadow:
    0 0 5px #bebebe,
    0 0 25px #585858,
    0 0 50px #313131,
    0 0 200px #e2e2e2;
  -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.333));
}

.btn-primary {
  filter: hue-rotate(270deg);
}

.btn-secondary,
.btn-secundary {
  filter: hue-rotate(110deg);
}

.btn-primary span,
.btn-secondary span,
.btn-secundary span {
  position: absolute;
  display: block;
}

/* Linha superior */
.btn-primary span:nth-child(1),
.btn-secondary span:nth-child(1),
.btn-secundary span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff);
  animation: animate1 1s linear infinite;
}

/* Linha direita */
.btn-primary span:nth-child(2),
.btn-secondary span:nth-child(2),
.btn-secundary span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #ffffff);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}

/* Linha inferior */
.btn-primary span:nth-child(3),
.btn-secondary span:nth-child(3),
.btn-secundary span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #ffffff);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}

/* Linha esquerda */
.btn-primary span:nth-child(4),
.btn-secondary span:nth-child(4),
.btn-secundary span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #ffffff);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes animate2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

@keyframes animate3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}

.outline-btn-hero {
  display: inline-block;
  width: max-content;
  margin: 10px auto 0;
  padding: 9px 22px;
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 18px;
  font-size: 10px;
  transition:
    border-color 0.5s ease,
    color 0.5s ease;
}

.outline-btn-hero:hover {
  border-color: #cfcfcf;
  color: #ffffff;
}

/* =========================================================
   TRUSTED / LOGOS
   ========================================================= */
.trusted {
  padding: 76px 48px 85px;
  background-color: #080808;
}

.trusted-top {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 220px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.trusted h2 {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 900;
}

.trusted p {
  color: #90909a;
  font-size: 12px;
  line-height: 1.6;
  max-width: 560px;
}

.logo-marquee {
  width: 100%;
  margin-top: 58px;
  overflow: hidden;
  position: relative;
}

.trusted > .logo-track,
.logo-marquee .logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
}

.trusted > .logo-track {
  width: min(100%, 1160px);
  min-width: 0;
  margin: 58px auto 0;
  justify-content: center;
  flex-wrap: wrap;
  animation: none;
}

.logo-marquee .logo-track {
  width: max-content;
  min-width: max-content;
  margin-top: 0;
  justify-content: flex-start;
  flex-wrap: nowrap;
  animation: marquee 25s linear infinite;
}

.logo-track img {
  height: 42px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(100%) brightness(2);
  transition:
    opacity 0.4s ease,
    filter 0.4s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

.brand {
  height: 55px;
  min-width: 160px;
  border: 1px solid #e7ebff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  background: #000000;
}

.brand span {
  font-size: 18px;
  color: #dfe7ff;
}

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

/* =========================================================
   OFFER / CARDS INSTITUCIONAIS
   ========================================================= */
.offer,
.work,
.cta {
  background-color: #080808;
}

.offer {
  position: relative;
  padding: 120px 8%;
}

.section-title {
  max-width: 750px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-title h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-title p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
}

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

.cards > .service-card {
  position: relative;
  height: 500px;
  padding: 0px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.cards > .service-card::before,
.cards > .service-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cards > .service-card::before {
  top: -120px;
  right: -120px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
}

.cards > .service-card::after {
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 35%);
}

.cards > .service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.cards > .service-card:hover::before,
.cards > .service-card:hover::after {
  opacity: 1;
}

.ico {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.cards > .service-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cards > .service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   SERVICES CAROUSEL
   ========================================================= */
.services-section {
  position: relative;
  padding: 100px 0;
  background: #050505;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(226, 44, 44, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 8%;
  margin-bottom: 60px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.section-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: #ffffff;
}

.services-track-outer {
  padding: 0 8%;
}

.services-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.services-track > .service-card {
  position: relative;
  flex: 0 0 min(760px, 84vw);
  height: 360px;
  margin-top: 6px;
  display: grid;
  grid-template-columns: 42% 58%;
  scroll-snap-align: start;
  background: linear-gradient(135deg, rgba(3, 3, 3, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.services-track > .service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 20% 20%, rgba(196, 47, 255, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.services-track > .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.services-track > .service-card:hover::before {
  opacity: 1;
}

.card-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.card-top {
  display: block;
}

.card-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-title,
.card-text h2 {
  color: #fff;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.card-desc,
.card-text p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
  max-width: 420px;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.card-cta::after {
  content: " →";
  color: #ffffff;
}

.card-cta:hover {
  color: #d9d9d9;
  transform: translateX(2px);
}

.card-index {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.35);
}

.card-images {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.card-images::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 40%);
  pointer-events: none;
}

.card-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) contrast(1.05);
  transition: filter 0.35s ease;
}

.services-track > .service-card:hover .card-images img {
  filter: brightness(0.9) contrast(1.08);
}

.card-images img:first-child {
  border-right: 2px solid #050505;
}

.services-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding: 0 8%;
}

.nav-dots {
  display: flex;
  gap: 8px;
}

.nav-dot {
  width: 12px;
  height: 6px;
  border-radius: 999px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-dot.active {
  width: 32px;
  background: #720b50;
}

.progress-bar-wrap {
  flex: 1;
  height: 1px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #720b50;
  transition: width 0.15s ease;
}

.nav-arrows {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.nav-btn:hover {
  border-color: #720b50;
  color: #720b50;
}

/* =========================================================
   BANNER
   ========================================================= */
.banner-selection {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

.banner1 {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  opacity: 0.2;
}

/* =========================================================
   POR QUE NOS ESCOLHER / STICKY CARDS
   ========================================================= */
.section-2 {
  width: min(1200px, 90%);
  margin: 40px auto 0;
  padding: 20px 0;
  line-height: 2;
  color: #e8e8e8;
}

.c-hotels {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.c-hotels__title {
  width: min(1200px, 100%);
  padding: 64px 20px 8px;
  text-align: center;
  font-size: 54px;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -1px;
}

.c-hotels__title span {
  color: #720b50;
}

.c-hotels__subtitle-main {
  max-width: 760px;
  margin: 0 auto 44px;
  padding: 0 20px;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  color: #b8b8b8;
}

.c-hotels__subtitle-main span,
.c-hotels__item-excerpt span {
  color: #ffffff;
  font-weight: 700;
}

.c-hotels__list {
  display: grid;
  gap: 40px;
}

.c-hotels__item {
  position: sticky;
  top: 96px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 200px auto;
  border: 1px solid #2a2a2a;
  background-color: #070707;
  overflow: hidden;
}

.c-hotels__item:not(:last-child) {
  view-timeline-name: --card;
  view-timeline-axis: block;
  animation-timeline: --card;
  animation-name: in-n-out;
  animation-range: entry 90% cover 50%;
  animation-fill-mode: both;
}

.c-hotels__item-figure {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
}

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

.c-hotels__item-info {
  grid-column: 1 / -1;
  grid-row: 2 / -1;
  height: 100%;
  display: grid;
  align-content: center;
  padding: 48px;
  background-color: #070707;
  color: #ffffff;
}

.c-hotels__item-title {
  margin-bottom: 12px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
}

.c-hotels__item-title span {
  color: #f3dddd;
}

.c-hotels__item-subtitle {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d6d6d6;
}

.c-hotels__item-excerpt {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.8;
  color: #bdbdbd;
}

.c-hotels__item-link {
  width: max-content;
  padding: 13px 26px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #050505;
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 0.5s ease,
    color 0.5s ease;
}

.c-hotels__item-link:hover {
  background-color: transparent;
  color: #ffffff;
}

@keyframes in-n-out {
  0%, 75% { transform: scale(1); }
  100% { transform: scale(0.85); }
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact {
  position: relative;
  padding: 96px 24px;
  background: #080808;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(114, 11, 80, 0.16), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.06), transparent 34%);
  pointer-events: none;
}

.contact__wrap {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact__aside .title {
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.contact__aside .lead {
  font-size: 1.0625rem;
  color: #b8b8b8;
  margin: 0 0 36px;
  max-width: 46ch;
}

.contact__aside .lead strong {
  color: #f7f7f7;
}

.benefits {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  border-top: 1px solid #242424;
}

.benefits li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #242424;
}

.benefit__mark {
  font-weight: 600;
  font-size: 0.8125rem;
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.benefits span {
  color: #b8b8b8;
  font-size: 0.875rem;
}

.channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #f7f7f7;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.channel svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  transition: stroke 0.2s ease;
}

.channel:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.channel:hover svg {
  stroke: #cfcfcf;
}

.card {
  position: relative;
  background: #121212;
  border: 1px solid #242424;
  border-radius: 10px;
  padding: 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.card__head {
  margin-bottom: 32px;
}

.steps {
  display: flex;
  gap: 28px;
  font-size: 0.8125rem;
  color: #b8b8b8;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.step span {
  font-weight: 600;
}

.step.is-active {
  color: #f7f7f7;
}

.step.is-active span {
  color: #cfcfcf;
}

.step.is-done {
  color: #ffffff;
}

.progress {
  height: 2px;
  background: #242424;
  border-radius: 2px;
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  width: 33.33%;
  background: #ffffff;
  transition: width 0.3s ease;
}

.panel {
  display: none;
}

.panel.is-active {
  display: block;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.form-space {
  margin-top: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field > span,
.field__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8b8b8;
}

.field input,
.field select,
.field textarea {
  font-size: 0.9375rem;
  color: #f7f7f7;
  background: #000;
  border: none;
  border-bottom: 1px solid #242424;
  padding: 8px 2px;
  transition: border-color 0.2s ease;
}

.field textarea {
  border: 1px solid #242424;
  border-radius: 6px;
  padding: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #ffffff;
  outline: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6f6f6f;
}

.err {
  font-size: 0.75rem;
  color: #cfcfcf;
  min-height: 14px;
  display: block;
}

.err--chips {
  margin-top: 8px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  border: 1px solid #3f3f3f;
  border-radius: 6px;
  background: transparent;
  color: #f7f7f7;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.chip:hover {
  border-color: #ffffff;
}

.chip.is-selected {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.count {
  font-size: 0.75rem;
  color: #b8b8b8;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 28px;
  font-size: 0.875rem;
  color: #b8b8b8;
  cursor: pointer;
}

.check input {
  margin-top: 3px;
  accent-color: #ffffff;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  gap: 16px;
}

.btn {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn--ghost {
  background: transparent;
  border-color: #3f3f3f;
  color: #b8b8b8;
}

.btn--ghost:hover:not(:disabled) {
  border-color: #f7f7f7;
  color: #f7f7f7;
}

.btn--ghost:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn--primary {
  background: #ffffff;
  color: #050505;
  margin-left: auto;
}

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

.success {
  text-align: left;
  padding: 8px 0;
}

.success__ico {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.success h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.375rem;
  margin: 0 0 8px;
}

.success p {
  color: #b8b8b8;
  margin: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #000000;
  color: #d9d9d9;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 56px;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 56px;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.footer-brand p {
  margin: 18px 0 24px;
  color: #8e8e8e;
  font-size: 0.9375rem;
  max-width: 36ch;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 4px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.footer-cta:hover {
  color: #cfcfcf;
  border-color: #cfcfcf;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8e8e8e;
  margin: 0 0 18px;
}

.footer-col a {
  display: block;
  color: #d9d9d9;
  font-size: 0.9375rem;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-proof {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid #222222;
}

.proof-card {
  border-top: 2px solid #ffffff;
  padding-top: 16px;
}

.proof-card p {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  color: #d9d9d9;
  max-width: 48ch;
}

.proof-card strong {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #8e8e8e;
  text-transform: uppercase;
}

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #222222;
  font-size: 0.8125rem;
  color: #777777;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #777777;
}

.footer-links a:hover {
  color: #ffffff;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: #050505;
  padding: 80px 24px 64px;
}

.faq .container {
  max-width: 1140px;
  margin: 0 auto;
}

.faq h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.05;
  margin: 20px 0 16px;
  max-width: 760px;
}

.faq-intro {
  color: #b8b8b8;
  max-width: 760px;
  margin-bottom: 40px;
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #111111;
  border: 1px solid #222222;
  border-radius: 22px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

@media (min-width: 768px) {
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

.faq-item.is-open {
  border-color: #720b50;
  background: rgba(114, 11, 80, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 24px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.faq-item.is-open .faq-number {
  background: rgba(114, 11, 80, 0.25);
  border-color: rgba(114, 11, 80, 0.5);
  color: #ffffff;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transition: transform 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: rgba(114, 11, 80, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: #c0c0c0;
  line-height: 1.75;
  font-size: 0.96rem;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
  padding: 0 28px 24px;
}

.faq-answer-content {
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.faq-item.is-open .faq-answer-content {
  transform: translateY(0);
  opacity: 1;
}

.faq-answer p {
  margin: 0;
}

.faq-answer strong {
  color: #ffffff;
  font-weight: 600;
}

.faq-load-more {
  display: none;
  width: 100%;
  margin-top: 24px;
  padding: 16px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.faq-load-more:hover {
  border-color: #720b50;
  background: rgba(114, 11, 80, 0.1);
}

.faq-load-more svg {
  transition: transform 0.3s ease;
}

.faq-load-more.is-open svg {
  transform: rotate(180deg);
}

.faq-item-hidden {
  display: none;
}

.faq-load-more {
  display: flex;
}

@media (min-width: 768px) {
  .faq-item-hidden {
    display: none;
  }
}

@media (max-width: 767px) {
  .faq-question {
    padding: 20px 22px;
  }

  .faq-question-text {
    gap: 12px;
  }

  .faq-number {
    min-width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-answer {
    padding: 0 22px;
  }

  .faq-item.is-open .faq-answer {
    padding: 0 22px 20px;
  }
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */
@media (min-width: 768px) {
  .c-hotels__item {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(400px, 70vh);
  }

  .c-hotels__item-figure {
    grid-column: 1 / 2;
    grid-row: 1 / -1;
  }

  .c-hotels__item-info {
    grid-column: 2 / -1;
    grid-row: 1 / -1;
  }
}

@media (max-width: 1200px) {
  .header {
    padding: 0 32px;
  }

  .nav {
    gap: 24px;
    margin-left: 40px;
  }

  .trusted-top {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .cards {
    gap: 22px;
  }

  .container,
  .footer-container,
  .footer-proof,
  .footer-bottom {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .header {
    height: 78px;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(92%, 760px);
    padding-top: 78px;
  }

  .trusted {
    padding: 64px 32px 72px;
  }

  .trusted-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trusted p {
    max-width: 720px;
  }

  .logo-track {
    gap: 48px;
  }

  .offer {
    padding: 90px 6%;
  }

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

  .services-section {
    padding: 80px 0;
  }

  .services-track > .service-card {
    flex-basis: min(720px, 88vw);
  }

  .c-hotels__title {
    font-size: 46px;
  }

  .contact__wrap {
    gap: 48px;
  }
}

@media (max-width: 920px) {
  .contact__wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle,
  .hamburger {
    display: flex;
  }

  .header {
    height: 72px;
    padding: 0 24px;
  }

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

  /* Caso 1: menu direto dentro do header */
  .header > .nav,
  .header > .ft-social {
    position: fixed;
    left: 18px;
    right: 18px;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    pointer-events: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .header > .nav {
    top: 84px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  }

  .header > .nav a,
  .header > .nav .btn-header,
  .header > .nav #btn-header {
    width: 100%;
    padding: 16px 14px;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
  }

  .header > .nav a:last-child,
  .header > .nav .btn-header:last-child,
  .header > .nav #btn-header:last-child {
    border-bottom: none;
  }

  .header > .ft-social {
   
    justify-content: center;
    margin-top: 0;
    padding: 16px;
  
    border-radius: 18px;
  
  }

  .header.is-open > .nav,
  .header.is-open > .ft-social {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Caso 2: menu dentro de .nav-container-mobile */
  .nav-container-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 55;
    width: min(290px, 82vw);
    height: 100vh;
    background: #050505;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-top: 90px;
    transition: right 0.4s cubic-bezier(0.1, 1, 0.1, 1);
  }

  .header.is-open .nav-container-mobile {
    right: 0;
  }

  .nav-container-mobile .nav {
    flex-direction: column;
    align-items:flex-end;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 70px;
    text-align: center;
  }

  .nav-container-mobile .btn-header,
  .nav-container-mobile #btn-header {
    font-size: 18px;
    text-align: center;
    width: 100%;
    
    display: flex;
    }

  .nav-container-mobile .ft-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 0;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding: 130px 20px 70px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(36px, 9vw, 62px);
  }

  .hero p {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
  }

  .hero-actions a,
  .btn-primary,
  .btn-secondary {
    width: min(100%, 320px);
    margin: 0;
    padding: 16px 20px;
    text-align: center;
    letter-spacing: 2px;
  }

  .hero-actions a:hover {
    box-shadow:
      0 0 5px #bebebe,
      0 0 18px #585858,
      0 0 32px #313131;
  }

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

  .section-title {
    margin-bottom: 44px;
  }

  .banner-selection {
    height: auto;
    min-height: 60vh;
  }

  .banner1 {
    min-height: 60vh;
  }
}

/* =========================================================
   CORREÇÃO DA "GAVETA" DOS CARDS DE SERVIÇOS NO MOBILE
   Remove paredes laterais criadas pela div pai
   ========================================================= */

@media (max-width: 768px) {
  .services-section {
    width: 100%;
    overflow: hidden;
    padding: 64px 0;
  }

  .services-section .container {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .services-track-outer {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .services-track {
    width: 100%;
    padding: 0 18px;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    gap: 18px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    box-sizing: border-box;
  }

  .services-track > .service-card {
    flex: 0 0 calc(100vw - 36px);
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .services-nav {
    padding: 0 18px;
    box-sizing: border-box;
  }
}/* =========================================================
   AJUSTE FINAL DOS CARDS DE SERVIÇOS NO MOBILE
   Corrige texto encolhido e imagem cortada
   ========================================================= */

@media (max-width: 768px) {
  .services-track > .service-card {
    flex: 0 0 calc(100vw - 36px);
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .services-track > .service-card .card-text {
    width: 100%;
    padding: 28px 22px 22px !important;
  }

  .services-track > .service-card .card-tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }

  .services-track > .service-card .card-title,
  .services-track > .service-card .card-text h2 {
    font-size: 24px !important;
    line-height: 1.18 !important;
    margin-bottom: 14px;
  }

  .services-track > .service-card .card-desc,
  .services-track > .service-card .card-text p {
    font-size: 14.5px !important;
    line-height: 1.75 !important;
    max-width: 100% !important;
  }

  .services-track > .service-card .card-bottom {
    margin-top: 20px;
    gap: 12px;
  }

  .services-track > .service-card .card-cta {
    font-size: 12px;
  }

  .services-track > .service-card .card-index {
    font-size: 11px;
  }

  .services-track > .service-card .card-images {
    width: 100%;
    height: auto !important;
    min-height: auto !important;
    padding: 0 18px 22px;
    background: transparent;
    overflow: visible !important;
  }

  .services-track > .service-card .card-images img {
    width: 100%;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block;
    border-radius: 14px;
  }
}

@media (max-width: 640px) {
  .process,
  .contact {
    padding: 64px 20px;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .card {
    padding: 24px;
  }

  .card__foot {
    flex-wrap: wrap;
  }

  .btn--primary {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .btn--ghost {
    flex: 1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .header > .nav,
  .header > .ft-social {
    left: 12px;
    right: 12px;
  }

  .hero {
    padding: 120px 16px 58px;
  }

  .hero h1 {
    font-size: clamp(32px, 12vw, 48px);
    line-height: 1.08;
  }

  .hero p {
    font-size: 13.5px;
  }

  .hero-actions a,
  .btn-primary,
  .btn-secondary {
    padding: 16px 18px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .trusted h2,
  .section-title h2 {
    font-size: 24px;
  }

  .trusted p,
  .section-title p {
    font-size: 13.5px;
  }

  .services-track > .service-card {
    flex-basis: 92vw;
    max-width: 92vw;
    border-radius: 18px;
  }

  .card-text {
    padding: 22px;
  }

  .card-title,
  .card-text h2 {
    font-size: 23px;
  }

  .services-nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .progress-bar-wrap {
    order: 3;
    flex-basis: 100%;
  }

  .nav-dots {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .c-hotels__title {
    font-size: 32px;
  }

  .c-hotels__subtitle-main {
    font-size: 14px;
  }

  .c-hotels__item-title {
    font-size: 26px;
  }

  .c-hotels__item-link {
    width: 100%;
    text-align: center;
  }

  .contact__aside .lead {
    font-size: 0.98rem;
  }

  .benefits li {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .card {
    padding: 22px;
  }

  .card__foot {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .btn,
  .btn--ghost,
  .btn--primary {
    width: 100%;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0 16px;
  }

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

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .contact__wrap {
    gap: 32px;
  }

  .card {
    padding: 16px;
  }

  .grid2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card__foot {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-tag {
    letter-spacing: 3px;
  }

  .menu-toggle,
  .hamburger {
    width: 40px;
    height: 40px;
  }

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

  .header > .nav a,
  .header > .nav .btn-header,
  .header > .nav #btn-header {
    font-size: 12px;
    padding: 14px 12px;
  }
}
