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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1b2430;
  background-color: #f5fbff;
  line-height: 1.5;
}

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

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

.container {
  width: min(1280px, 100% - 3rem);
  margin-inline: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  backdrop-filter: blur(14px);
}

.header--scrolled {
  background-color: #050a18;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fdfdfd;
}

.logo__image {
  height: 52px;
  width: auto;
  display: block;
}

.logo__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  background: radial-gradient(circle at 0 0, #00c2ff, #0077ff 40%, #001221 100%);
  box-shadow: 0 0 18px rgba(0, 194, 255, 0.6);
}

.logo__text {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.nav__link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e0e7ff;
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00e0ff, #00ffa3);
  transition: width 0.25s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #f7f7f7;
}

.hero__background {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(5, 10, 24, 0.9), rgba(5, 10, 24, 0.65)),
    url("https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  filter: brightness(0.8);
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(0, 180, 255, 0.22), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(0, 230, 180, 0.18), transparent 55%);
  mix-blend-mode: screen;
  z-index: -1;
}

.hero__content {
  padding-top: 7rem;
  padding-bottom: 4rem;
  max-width: 640px;
}

.hero__subtitle {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.8rem;
  color: #c6f5ff;
  margin-bottom: 1.4rem;
}

.hero__title {
  font-size: clamp(2.4rem, 4vw + 1rem, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.hero__title--highlight {
  color: #00e0ff;
}

.hero__text {
  font-size: 0.98rem;
  color: #e7f7ff;
  max-width: 34rem;
  margin-bottom: 1.8rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.hero__actions .btn {
  white-space: nowrap;
}

.hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: #c9e7ff;
}

.hero__info span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ffa3;
  margin-right: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #00e0ff, #00ffa3);
  color: #020308;
  box-shadow: 0 12px 35px rgba(0, 224, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 224, 255, 0.45);
}

.btn--secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: #ffffff;
}

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

.btn--header-primary {
  background: #5b3fd9;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(91, 63, 217, 0.4);
  border-color: transparent;
}

.btn--header-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(91, 63, 217, 0.5);
}

.btn--header-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(229, 231, 235, 0.8);
}

.btn--header-secondary:hover {
  background: rgba(15, 23, 42, 0.6);
}

.section {
  padding: 5rem 0;
  background-color: #f5fbff;
}

/* ---------- ANIMAÇÕES DE ENTRADA ---------- */

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

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

.section--alt {
  background: radial-gradient(circle at top left, #e5f6ff, #f5fbff 60%);
}

.section--agendar {
  background-color: #050a18;
}

.section--contato {
  background-color: #f5fbff;
}

.section__title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__subtitle {
  text-align: center;
  max-width: 520px;
  margin: -1.4rem auto 2.4rem;
  font-size: 0.96rem;
  color: #4b5b70;
}

.section__title--left {
  text-align: left;
}

.section__subtitle--left {
  text-align: left;
  margin-left: 0;
}

.section__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  text-align: center;
}

.gallery__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(15, 23, 42, 0.12);
  position: relative;
}

.gallery__photo-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.gallery__photo-layer--after {
  opacity: 0;
  z-index: 2;
}

.gallery__item:hover .gallery__photo-layer--after {
  opacity: 1;
}

.gallery__photo--1-before {
  background-image: url("../assets/antes.png");
}

.gallery__photo--1-after {
  background-image: url("../assets/depois.png");
}

.gallery__photo--2-before {
  background-image: url("../assets/antes2.png");
}

.gallery__photo--2-after {
  background-image: url("../assets/depois2.png");
}

.gallery__photo--3-before {
  background-image: url("../assets/antes3.png");
}

.gallery__photo--3-after {
  background-image: url("../assets/depois3.png");
}

.gallery__photo--4-before {
  background-image: url("../assets/antes4.png");
}

.gallery__photo--4-after {
  background-image: url("../assets/depois4.png");
}

.gallery__caption {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #4b5b70;
}

.stats {
  background: linear-gradient(90deg, #00b4ff, #00e0ff, #00ffa3);
  color: #ffffff;
  padding: 3.5rem 0;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.stat__label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.section__grid {
  display: grid;
  gap: 2.5rem;
}

.section__grid--form {
  align-items: start;
}

.testimonials-header {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}

.testimonials-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 2.6rem 2.4rem 2.3rem;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  min-height: 260px;
}

.testimonial-card__quote-mark {
  position: absolute;
  top: 1.2rem;
  left: 1.8rem;
  font-size: 2.4rem;
  color: #e5e7eb;
}

.testimonial-card__text {
  margin-top: 1.4rem;
  margin-bottom: 1.6rem;
  color: #4b5b70;
  font-size: 0.96rem;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e5d3bf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #4b3625;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.testimonial-role {
  font-size: 0.84rem;
  color: #9ca3af;
}

.testimonials-mobile {
  display: none;
  margin-top: 2rem;
}

.testimonials-desktop__viewport {
  overflow: hidden;
  border-radius: 1rem;
}

.testimonials-desktop__track {
  display: flex;
  transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.testimonials-desktop__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.testimonials-mobile__viewport {
  overflow: hidden;
  border-radius: 1rem;
}

.testimonials-mobile__track {
  display: flex;
  transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonials-mobile .testimonial-card {
  min-width: 100%;
}

.testimonials-mobile__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.testimonial-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #4b5563;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.testimonial-dots {
  display: flex;
  gap: 0.45rem;
}

.testimonial-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d1d5db;
}

.testimonial-dot--active {
  width: 9px;
  height: 9px;
  background: #00e0ff;
}

.testimonial-dots--desktop .testimonial-dot--desktop-active {
  width: 9px;
  height: 9px;
  background: #00e0ff;
}

.section__text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section__text p {
  color: #4b5b70;
  margin-bottom: 0.9rem;
  font-size: 0.96rem;
}

.section--agendar .section__text h2 {
  color: #ffffff;
  text-align: left;
}

.section--agendar .section__text p {
  color: #cbd5ff;
}

.section__text--centered {
  text-align: center;
}

.section--agendar .section__text--centered h2 {
  text-align: center;
}

.section__title-highlight {
  color: #00e0ff;
}

.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-header h2 {
  font-size: 1.9rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #4b5b70;
  font-size: 0.96rem;
}

.contact-grid {
  display: grid;
  gap: 1.6rem;
}

.contact-grid--top {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 2rem;
}

.contact-grid--bottom {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 1.6rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  color: #1b2430;
}

.contact-card h3 {
  margin-bottom: 0.4rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: #4b5b70;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #00e0ff, #00ffa3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.contact-card--highlight {
  background: radial-gradient(circle at top, #e5f6ff, #ffffff);
}

.contact-card__map {
  margin-top: 1rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.contact-card__map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

.contact-card--promo {
  grid-column: span 2;
}

.contact-social {
  padding: 1.4rem 1.4rem;
  border-radius: 0.7rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  color: #1b2430;
  max-width: 360px;
  align-self: flex-start;
}

.contact-social h3 {
  margin-bottom: 0.4rem;
}

.contact-social h3 span {
  color: #0080ff;
}

.contact-social p {
  font-size: 0.9rem;
  color: #4b5b70;
  margin-bottom: 0.9rem;
}

.contact-social__icons {
  display: flex;
  gap: 0.7rem;
}

.contact-social__icons a {
  width: 32px;
  height: 32px;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: inherit;
}

.social--instagram i {
  color: #e1306c;
}

.social--whatsapp i {
  color: #25d366;
}

.social--facebook i {
  color: #1877f2;
}

.contact-social__icons a:hover {
  border-color: #00e0ff;
  color: #00e0ff;
}

.section__card {
  background: radial-gradient(circle at top, #ffffff, #ecf5ff);
  border-radius: 0.9rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.section__card h3 {
  margin-bottom: 1rem;
}

.section__card ul {
  list-style: none;
}

.section__card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  color: #4b5b70;
}

.section__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ffa3;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.55);
  z-index: 50;
  font-size: 0.9rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(34, 197, 94, 0.7);
  background: #16a34a;
}

.whatsapp-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.whatsapp-card__title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.1;
}

.whatsapp-card__subtitle {
  font-size: 0.78rem;
  opacity: 0.9;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 1.4rem;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.75rem 1rem;
  }

  .whatsapp-card__title {
    font-size: 0.85rem;
  }

  .whatsapp-card__subtitle {
    display: none;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}

.card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 220px;
}

.card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  color: #0f172a;
}

.card p {
  color: #4b5b70;
  font-size: 0.95rem;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(0, 224, 255, 0.16), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
  border-color: rgba(0, 224, 255, 0.5);
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  background: radial-gradient(circle at 0 0, #00e0ff, #00ffa3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.2rem;
  color: #020617;
}

.card__footer {
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.86rem;
  background: linear-gradient(135deg, #00b4ff, #00e0ff, #00ffa3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  cursor: pointer;
}

.card__link span:first-child {
  font-weight: 600;
  transition: letter-spacing 0.18s ease;
}

.card__arrow {
  transition: transform 0.2s ease, margin-left 0.2s ease;
}

.card__arrow-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.card__link:hover .card__arrow {
  transform: translateX(4px);
  margin-left: 0.6rem;
}

.card__link:hover span:first-child {
  letter-spacing: 0.05em;
}

.form {
  background: #050815;
  border-radius: 0.9rem;
  padding: 2.2rem 2rem 2rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.7);
}

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

.form__group {
  margin-bottom: 1rem;
}

.form label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
  color: #e5f2ff;
}

.form__label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: #00e0ff;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
  color: #e5f2ff;
  font-size: 0.92rem;
  outline: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #00e0ff;
  box-shadow: 0 0 0 1px rgba(0, 224, 255, 0.45);
}

 .form__feedback {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}

/* ---------- RESPONSIVIDADE ---------- */

@media (max-width: 1024px) {
  .stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }

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

  .contact-grid--top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid--bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials-desktop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .stats {
    padding: 2.5rem 0;
  }

  .stats__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1.6rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .header__actions {
    display: none;
  }

  .contact-grid--top {
    grid-template-columns: minmax(0, 1fr);
  }

  .form {
    padding-inline: 1.4rem;
  }

  .form__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-social {
    padding: 1.2rem 1.1rem;
  }

  .contact-social h3 {
    font-size: 0.98rem;
  }

  .contact-social p {
    font-size: 0.85rem;
  }

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

  .testimonials-header__actions {
    justify-content: flex-start;
  }

  .testimonials-desktop {
    display: none;
  }

  .testimonials-mobile {
    display: block;
  }
}

.footer {
  border-top: 1px solid rgba(15, 23, 42, 0.5);
  background: #050a18;
  padding: 2.4rem 0 1.4rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.8rem;
  color: #e0e7ff;
}

.footer__col {
  min-width: 160px;
  max-width: 260px;
}

.footer__col--brand {
  max-width: 320px;
}

.footer__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer__text {
  margin-bottom: 0.55rem;
  color: #cbd5ff;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__nav a {
  color: #e0e7ff;
  font-size: 0.82rem;
}

.footer__nav a:hover {
  color: #00e0ff;
}

.footer__bottom {
  margin-top: 1.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: #a5b4fc;
}

.footer__link {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  color: #cbd5ff;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid--top {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid--bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card--highlight {
    grid-row: auto;
  }

  .contact-card--promo {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 1rem 1.5rem 1.2rem;
    background: rgba(3, 6, 14, 0.98);
    flex-direction: column;
    gap: 0.9rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav--open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .hero__content {
    padding-top: 6rem;
  }

  .section {
    padding: 4rem 0;
  }
}

@media (min-width: 768px) {
  .section__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

