:root {
  --p: #5b2eff;
  --p2: #7b5cff;

  --bg0: #0b0b12;
  --bg1: #0f1020;

  --lightBg: #f6f4ff;
  --darkA: var(--bg0);
  --darkB: var(--bg1);

  --border: rgba(255, 255, 255, 0.12);
}

/* Base */
html,
body {
  height: 100%;
}

body {
  background: #000; /* fundo fora das sections */
}

/* Bootstrap theme tweaks */
.btn-primary {
  --bs-btn-bg: var(--p);
  --bs-btn-border-color: var(--p);
  --bs-btn-hover-bg: #4f27e8;
  --bs-btn-hover-border-color: #4f27e8;
  --bs-btn-active-bg: #4420cc;
  --bs-btn-active-border-color: #4420cc;
  box-shadow: 0 18px 40px rgba(91, 46, 255, 0.25);
}

.btn-outline-primary {
  --bs-btn-color: var(--p);
  --bs-btn-border-color: rgba(91, 46, 255, 0.55);
  --bs-btn-hover-bg: rgba(91, 46, 255, 0.1);
  --bs-btn-hover-border-color: rgba(91, 46, 255, 0.85);
  --bs-btn-hover-color: #151525;
}

/* =========================
   Navbar (maior + premium)
========================= */

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-glass {
  background: linear-gradient(
    180deg,
    rgba(10, 12, 30, 0.88),
    rgba(10, 12, 30, 0.55)
  ) !important;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 700;
}

.navbar .nav-link:hover {
  color: #fff !important;
}

.brand-icon {
  width: 120px; /* maior */
  height: 100px; /* maior */
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-weight: 900;
  font-size: 1.18rem; /* maior */
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.4px;
  text-shadow: 0 0 18px rgba(91, 46, 255, 0.25);
}

.brand-subtitle {
  padding-top: 0.35vh;
  font-size: 0.74rem; /* maior */
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 992px) {
  .brand-subtitle {
    display: none;
  }
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(
      1200px 600px at 15% 10%,
      rgba(91, 46, 255, 0.28),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 80% 15%,
      rgba(123, 92, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 55% 90%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.2vw, 3.05rem);
}

.hero-grad {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat {
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.stat__num {
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

.stat__label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  font-size: 0.85rem;
}

.hero-divider {
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(15, 16, 32, 0) 0%,
    rgba(15, 16, 32, 0.55) 25%,
    rgba(246, 244, 255, 0.35) 65%,
    rgba(246, 244, 255, 1) 100%
  );
}

/* =========================
   Sections (padronizado)
========================= */

.section {
  padding: 72px 0;
}

.section--light {
  background: var(--lightBg);
  color: #141424;
}

.section--soft {
  background: #f6f4ff;
  color: #141424;
}

.section--dark {
  color: #fff;
  background:
    radial-gradient(
      1100px 520px at 15% 10%,
      rgba(91, 46, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 80% 15%,
      rgba(123, 92, 255, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, var(--darkA), var(--darkB));
}

.section--dark .text-secondary,
.section--dark .text-muted {
  color: rgba(255, 255, 255, 0.65) !important;
}

/* FAQ no modo escuro */
.section--dark .accordion-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section--dark .accordion-button {
  background: transparent;
  color: #fff;
  font-weight: 800;
}

.section--dark .accordion-button:not(.collapsed) {
  background: rgba(91, 46, 255, 0.2);
  color: #fff;
}

.section--dark .accordion-body {
  color: rgba(255, 255, 255, 0.75);
}

.section--dark .accordion-button::after {
  filter: invert(1);
}


/* Feature cards */
.feature {
  border-radius: 22px;
  border: 1px solid rgba(16, 16, 24, 0.08);
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(16, 16, 24, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16, 16, 24, 0.1);
}

.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(91, 46, 255, 0.12);
  color: var(--p);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* Modules strip */
.modules {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(16, 16, 24, 0.08);
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 16, 24, 0.06);
}

.modules__title {
  font-weight: 900;
  color: #1a1a24;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.modules__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Profiles */
.profile {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

.profile__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(91, 46, 255, 0.18);
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* Accordion (FAQ) */
.accordion-item {
  border-radius: 18px !important;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 24, 0.08);
  box-shadow: 0 10px 28px rgba(16, 16, 24, 0.06);
}

.accordion .accordion-item + .accordion-item {
  margin-top: 10px;
}

.accordion-button {
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  background: rgba(91, 46, 255, 0.1);
  color: #1a1338;
}

/* =========================
   iPhone premium (Hero)
========================= */

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding-top: 8px;
}

.phone-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(circle at 60% 55%, rgba(91, 46, 255, 0.35), transparent 60%);
  filter: blur(14px);
  opacity: 0.85;
  z-index: 0;
}

.iphone {
  position: relative;
  z-index: 1;
  width: min(360px, 92vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 46px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 18px 50px rgba(91, 46, 255, 0.2);
  padding: 14px;
}

.iphone__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #0b0b12;
}

.iphone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  z-index: 5;
}

.iphone__screen {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
}

.iphone__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.iphone__home {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.55)
  );
  opacity: 0.9;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.55);
  z-index: 6;
}

/* =========================
   Prints
========================= */

.shot-card {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(16, 16, 24, 0.08);
  background: #fff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(16, 16, 24, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.shot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(16, 16, 24, 0.1);
}

.shot-frame {
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      600px 260px at 50% 20%,
      rgba(91, 46, 255, 0.12),
      transparent 60%
    ),
    #0f1020;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  min-height: 280px;
  overflow: hidden;
}

.shot-img {
  width: auto;
  max-width: 220px;
  max-height: 250px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.55);
}

.shot-meta {
  padding-top: 12px;
}

/* Modal */
.modal-premium {
  border-radius: 22px;
  border: 1px solid rgba(16, 16, 24, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.modal-shot-wrap {
  display: grid;
  place-items: center;
  padding: 14px 8px 18px;
}

.modal-shot-img {
  width: auto;
  max-width: min(360px, 90vw);
  max-height: 72vh;
  border-radius: 18px;
  border: 1px solid rgba(16, 16, 24, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
}

/* =========================
   WhatsApp float
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* ================================
   Contato clean
================================ */

.contact-clean {
  position: relative;
  overflow: hidden;
}

.contact-clean::before {
  content: "";
  position: absolute;
  inset: -140px -140px auto -140px;
  height: 520px;
  background:
    radial-gradient(
      720px 320px at 20% 20%,
      rgba(91, 46, 255, 0.14),
      transparent 60%
    ),
    radial-gradient(
      640px 280px at 80% 10%,
      rgba(123, 92, 255, 0.1),
      transparent 60%
    );
  pointer-events: none;
}

.contact-clean .container {
  position: relative;
  z-index: 1;
}

.contact-head {
  margin-bottom: 28px;
}

.contact-title {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  margin-bottom: 10px;
}

.section--dark .contact-title,
.section--dark .contact-sub,
.section--dark .contact-privacy {
  color: rgba(255, 255, 255, 0.9);
}

.section--dark .contact-sub {
  color: rgba(255, 255, 255, 0.7);
}

.contact-line {
  width: 64px;
  height: 3px;
  border-radius: 999px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--p), var(--p2));
  opacity: 0.95;
}

.contact-sub {
  margin-top: 12px;
  font-weight: 700;
}

.contact-wrap {
  max-width: 980px;
}

.contact-card2 {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 16, 24, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(16, 16, 24, 0.12);
  backdrop-filter: blur(10px);
}

.contact-card2 .form-label {
  font-weight: 500;
  color: rgba(20, 20, 36, 0.78);
}

.contact-card2 .form-control {
  border-radius: 16px;
  border: 1px solid rgba(16, 16, 24, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 22px rgba(16, 16, 24, 0.04);
  font-weight: 100;
}

.contact-card2 textarea.form-control {
  border-radius: 18px;
}

.contact-card2 .form-control:focus {
  border-color: rgba(91, 46, 255, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(91, 46, 255, 0.15);
}

.contact-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(16, 16, 24, 0.1);
  background: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  color: rgba(20, 20, 36, 0.78);
  cursor: pointer;
  user-select: none;
}

.radio-pill input {
  width: 16px;
  height: 16px;
  accent-color: var(--p);
}

.contact-msg {
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.contact-msg.is-ok {
  color: #0f5132;
  background: #d1e7dd;
  border-color: #badbcc;
}

.contact-msg.is-err {
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
}

.contact-privacy {
  font-weight: 700;
}

.site-footer__line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 16, 24, 0.16),
    transparent
  );
}

/* Radio pill selecionada */
.radio-pill:has(input:checked) {
  border-color: rgba(91, 46, 255, 0.35);
  background: rgba(91, 46, 255, 0.1);
  color: #1a1338;
  box-shadow: 0 12px 26px rgba(91, 46, 255, 0.12);
}

.radio-pill:has(input:focus-visible) {
  outline: 3px solid rgba(91, 46, 255, 0.2);
  outline-offset: 2px;
}

/* ================================
   Seção "Baixar o app"
================================ */

.download-clean {
  position: relative;
  overflow: hidden;
}

.download-clean.is-dark {
  color: #fff;
  background:
    radial-gradient(
      900px 420px at 18% 30%,
      rgba(91, 46, 255, 0.2),
      transparent 60%
    ),
    radial-gradient(
      780px 420px at 85% 20%,
      rgba(123, 92, 255, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, var(--darkA), var(--darkB));
}

.download-clean.is-light {
  background:
    radial-gradient(
      900px 420px at 18% 30%,
      rgba(91, 46, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      780px 420px at 85% 20%,
      rgba(123, 92, 255, 0.08),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff, var(--lightBg));
  color: #141424;
}

.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  min-width: 230px;
  justify-content: center;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.download-clean.is-dark .store-badge {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.download-clean.is-light .store-badge {
  border: 1px solid rgba(16, 16, 24, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #141424;
  box-shadow: 0 12px 30px rgba(16, 16, 24, 0.08);
}

.store-badge:hover {
  transform: translateY(-2px);
}

.download-clean.is-dark .store-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.download-clean.is-light .store-badge:hover {
  background: #fff;
  border-color: rgba(91, 46, 255, 0.25);
}

.store-badge i {
  font-size: 26px;
  line-height: 1;
}

.store-badge small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.75;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.store-badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.05;
}

/* ================================
   Footer (uCondo-like)
================================= */
.site-footer {
  background: #fff;
}

.footer-brand {
  text-decoration: none;
}

.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 14px 30px rgba(16, 16, 24, 0.12);
}

.footer-brand__name {
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.2px;
  color: #101018;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social__btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 16, 24, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: #101018;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.footer-social__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 46, 255, 0.25);
  box-shadow: 0 12px 24px rgba(16, 16, 24, 0.1);
  color: #101018;
}

.footer-text {
  color: rgba(16, 16, 24, 0.7);
  font-weight: 600;
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 0;
}

.footer-stores {
  margin-top: 18px;
}

.footer-stores__title {
  font-weight: 900;
  color: #101018;
  margin-bottom: 12px;
}

.footer-stores__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  min-width: 210px;
  border: 1px solid rgba(16, 16, 24, 0.1);
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 16, 24, 0.08);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  color: #101018;
}

.footer-store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 46, 255, 0.25);
  box-shadow: 0 18px 34px rgba(16, 16, 24, 0.12);
  color: #101018;
}

.footer-store-badge i {
  font-size: 26px;
}

.footer-store-badge small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.75;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.footer-store-badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
}

.footer-col__title {
  font-weight: 900;
  color: #101018;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(16, 16, 24, 0.7);
  font-weight: 700;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #5b2eff;
}

.footer-bottom__line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(16, 16, 24, 0.16),
    transparent
  );
  margin-bottom: 14px;
}

.footer-bottom__copy {
  text-align: center;
  color: rgba(16, 16, 24, 0.55);
  font-weight: 700;
}
/* =========================
   Ajustes para celulares
========================= */
@media (max-width: 576px) {
  /* Navbar */
  .navbar {
    padding: 10px 0;
  }

  .brand-icon {
    width: 80px;
    height: 70px;
  }

  .brand-title {
    font-size: 1rem;
  }

  /* Hero */
  .hero {
    padding: 3rem 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .hero .lead {
    font-size: 0.9rem;
  }

  .hero .d-flex.flex-wrap.gap-2 {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    padding: 10px;
    margin-bottom: 10px;
  }

  .stat__num {
    font-size: 1rem;
  }

  .stat__label {
    font-size: 0.75rem;
  }

  /* iPhone / imagens do app */
  .iphone {
    max-width: 220px;
    margin: 0 auto;
  }

  /* Seções */
  .section {
    padding: 50px 1rem;
  }

  /* Recursos / Features */
  .feature {
    text-align: center;
    padding: 20px;
  }

  .feature__icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Badges de módulos */
  .modules__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
  }

  .modules__badges .badge {
    font-size: 0.65rem;
    padding: 0.35em 0.6em;
  }

  /* Prints do app */
  .shot-card {
    width: 100%;
  }

  .shot-frame img {
    max-width: 100%;
    height: auto;
  }

  /* Contato */
  .contact-wrap {
    padding: 0 0.5rem;
  }

  .contact-card2 form .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-card2 form .col-12 {
    width: 100%;
  }

  /* Footer */
  .site-footer .row > [class*="col-"] {
    margin-bottom: 1.5rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-stores__badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
}