/* ============================================================
   SV Sistemas — style.css
   ============================================================ */

:root {
  --navy:   #0A1628;
  --navy2:  #0f1f3d;
  --navy3:  #0d1a30;
  --cream:  #F5ECD7;
  --cream2: #d8cfc4;
  --blue:   #1a6fdc;
  --blue2:  #2580f0;
  --green:  #22c55e;
  --red:    #ef4444;
  --amber:  #f59e0b;
  --purple: #8b5cf6;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }

/* ── NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

section { position: relative; z-index: 1; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 236, 215, 0.06);
  padding: 0.75rem 0;
  position: sticky; top: 0; z-index: 1000;
}

.navbar-brand img {
  height: 52px;
  border-radius: 6px;
}

.nav-link {
  color: rgba(245, 236, 215, 0.65) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem !important;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream) !important; }

.btn-nav {
  background: var(--blue);
  color: #fff !important;
  border-radius: 8px;
  padding: 0.4rem 1.1rem !important;
  font-size: 0.78rem !important;
  transition: background 0.2s, transform 0.2s;
}
.btn-nav:hover { background: var(--blue2); transform: translateY(-1px); }

/* ── SECTION COMMONS ── */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7ab8ff;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
}

.section-sub {
  color: rgba(245, 236, 215, 0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 500px;
}

/* ── BUTTONS ── */
.btn-primary-sv {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 0.65rem 1.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.btn-primary-sv:hover {
  background: var(--blue2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(26, 111, 220, 0.4);
}

.btn-ghost-sv {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245, 236, 215, 0.2);
  border-radius: 9px;
  padding: 0.65rem 1.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: all 0.25s;
}
.btn-ghost-sv:hover {
  border-color: rgba(245, 236, 215, 0.5);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ── HERO ── */
#hero {
  min-height: auto;
  display: flex; align-items: center;
  padding: 2.5rem 0 2.5rem;
  overflow: hidden;
  position: relative;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 550px; height: 550px;
  background: rgba(26, 111, 220, 0.13);
  top: -150px; right: -150px;
}
.hero-glow-2 {
  width: 300px; height: 300px;
  background: rgba(245, 236, 215, 0.04);
  bottom: -80px; left: -80px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(26, 111, 220, 0.12);
  border: 1px solid rgba(26, 111, 220, 0.3);
  color: #7ab8ff;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title span {
  background: linear-gradient(135deg, var(--blue2), #7ab8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 0.9rem;
  color: rgba(245, 236, 215, 0.58);
  line-height: 1.75;
  max-width: 460px;
  margin: 1.2rem 0 2rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* ── HERO MOCKUP ── */
.hero-mockup { animation: fadeUp 0.8s 0.25s ease both; }

.mockup-card {
  background: rgba(13, 26, 48, 0.9);
  border: 1px solid rgba(245, 236, 215, 0.09);
  border-radius: 16px;
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.mockup-topbar {
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 1rem;
}
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }
.dot-g { background: #22c55e; }
.mockup-bar-label {
  font-size: 0.68rem;
  color: rgba(245, 236, 215, 0.3);
  margin-left: 0.4rem;
  font-family: 'Syne', sans-serif;
}

.mockup-stat {
  background: rgba(245, 236, 215, 0.03);
  border: 1px solid rgba(245, 236, 215, 0.07);
  border-radius: 10px;
  padding: 0.85rem;
}
.stat-label-m {
  font-size: 0.62rem;
  color: rgba(245, 236, 215, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.stat-value-m {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.sv-green { color: var(--green); }
.sv-red   { color: var(--red); }
.sv-blue  { color: #7ab8ff; }

.mini-bar {
  height: 4px; border-radius: 99px;
  background: rgba(245, 236, 215, 0.07);
  margin-top: 0.65rem; overflow: hidden;
}
.mini-bar-fill { height: 100%; border-radius: 99px; }

/* ── STATS BAR ── */
#stats {
  background: rgba(26, 111, 220, 0.06);
  border-top: 1px solid rgba(26, 111, 220, 0.15);
  border-bottom: 1px solid rgba(26, 111, 220, 0.15);
  padding: 2.5rem 0;
}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
}
.stat-desc {
  font-size: 0.78rem;
  color: rgba(245, 236, 215, 0.45);
  margin-top: 0.2rem;
}

/* ── SYSTEMS ── */
#sistemas { padding: 6rem 0; }

.system-card {
  background: rgba(13, 26, 48, 0.55);
  border: 1px solid rgba(245, 236, 215, 0.07);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.system-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.system-card:hover {
  border-color: rgba(26, 111, 220, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
.system-card:hover::before { opacity: 1; }

.card-fin::before { background: linear-gradient(90deg, var(--blue), #7ab8ff); }
.card-doc::before { background: linear-gradient(90deg, var(--purple), #c4b5fd); }
.card-bar::before { background: linear-gradient(90deg, var(--amber), #fcd34d); }
.card-pet::before { background: linear-gradient(90deg, var(--green), #86efac); }
.card-pdv::before { background: linear-gradient(90deg, #e11d48, #fb7185); }

.icon-pdv { background: rgba(225, 29, 72, 0.12); color: #fb7185; }

.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.icon-fin  { background: rgba(26, 111, 220, 0.12); color: #7ab8ff; }
.icon-doc  { background: rgba(139, 92, 246, 0.12); color: #c4b5fd; }
.icon-bar  { background: rgba(245, 158, 11, 0.12); color: #fcd34d; }
.icon-pet  { background: rgba(34, 197, 94, 0.12);  color: #86efac; }

.card-title-sv { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-desc-sv  { font-size: 0.82rem; color: rgba(245, 236, 215, 0.5); line-height: 1.7; }

.card-tag {
  display: inline-block;
  background: rgba(245, 236, 215, 0.05);
  border: 1px solid rgba(245, 236, 215, 0.09);
  font-size: 0.65rem;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  margin-top: 1rem;
  color: rgba(245, 236, 215, 0.42);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SOBRE ── */
#sobre {
  padding: 6rem 0;
  background: rgba(13, 26, 48, 0.3);
}

.about-highlight {
  background: rgba(26, 111, 220, 0.07);
  border-left: 2.5px solid var(--blue);
  padding: 1rem 1.25rem;
  border-radius: 0 10px 10px 0;
  font-size: 0.88rem;
  color: rgba(245, 236, 215, 0.75);
  line-height: 1.7;
  margin: 1.5rem 0;
  font-style: italic;
}

.about-body {
  font-size: 0.88rem;
  color: rgba(245, 236, 215, 0.55);
  line-height: 1.8;
}

.check-row {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(245, 236, 215, 0.55);
}

.founder-card {
  background: rgba(10, 22, 40, 0.65);
  border: 1px solid rgba(245, 236, 215, 0.07);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.founder-card:hover {
  border-color: rgba(26, 111, 220, 0.28);
  transform: translateY(-3px);
}
.founder-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #7ab8ff);
  margin: 0 auto 0.85rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: #fff;
}
.founder-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.founder-role { font-size: 0.75rem; color: rgba(245, 236, 215, 0.4); }

.info-row {
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(245, 236, 215, 0.07);
  border-radius: 12px;
  padding: 1.25rem;
}
.info-row-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0;
}
.info-row-item + .info-row-item {
  border-top: 1px solid rgba(245, 236, 215, 0.05);
}
.info-icon { font-size: 1.1rem; flex-shrink: 0; color: #7ab8ff; }
.info-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; }
.info-sub   { font-size: 0.75rem; color: rgba(245, 236, 215, 0.4); }

/* ── ORÇAMENTO ── */
#orcamento { padding: 6rem 0; }

.form-wrapper {
  background: rgba(13, 26, 48, 0.65);
  border: 1px solid rgba(245, 236, 215, 0.07);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-label-sv {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 236, 215, 0.55);
  margin-bottom: 0.4rem;
  display: block;
}

.form-control-sv,
.form-select-sv {
  background: rgba(10, 22, 40, 0.65);
  border: 1.5px solid rgba(245, 236, 215, 0.09);
  border-radius: 9px;
  color: var(--cream);
  padding: 0.65rem 0.9rem;
  font-size: 0.86rem;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-control-sv:focus,
.form-select-sv:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 111, 220, 0.18);
  background: rgba(10, 22, 40, 0.85);
}
.form-control-sv::placeholder { color: rgba(245, 236, 215, 0.2); }
.form-select-sv option { background: var(--navy2); color: var(--cream); }
textarea.form-control-sv { resize: vertical; min-height: 100px; }

.btn-submit {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 2rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.25s;
  letter-spacing: 0.03em;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(26, 111, 220, 0.45);
}

.form-privacy {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(245, 236, 215, 0.25);
  margin-top: 1rem;
}

/* ── CONTATO & MAPA ── */
#contato {
  padding: 6rem 0;
  background: rgba(13, 26, 48, 0.3);
}

.contact-card {
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(245, 236, 215, 0.07);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  display: flex; align-items: center; gap: 0.9rem;
  text-decoration: none;
  color: var(--cream);
  transition: all 0.25s;
}
.contact-card:hover {
  border-color: rgba(26, 111, 220, 0.35);
  color: var(--cream);
  transform: translateY(-2px);
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-wa   { background: rgba(34, 197, 94, 0.12);  color: #22c55e; }
.ci-mail { background: rgba(26, 111, 220, 0.12);  color: #7ab8ff; }
.ci-loc  { background: rgba(245, 158, 11, 0.12);  color: #fcd34d; }

.contact-info-title { font-weight: 700; font-size: 0.88rem; margin-bottom: 0.1rem; }
.contact-info-sub   { font-size: 0.75rem; color: rgba(245, 236, 215, 0.42); }

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 236, 215, 0.07);
  height: 320px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 9999;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.25s;
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.65);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.09); }
}

/* ── FOOTER ── */
footer {
  background: rgba(5, 12, 25, 0.97);
  border-top: 1px solid rgba(245, 236, 215, 0.05);
  padding: 2.5rem 0 1.75rem;
}
.footer-logo img { height: 46px; border-radius: 6px; margin-bottom: 0.85rem; }
.footer-desc { font-size: 0.8rem; color: rgba(245, 236, 215, 0.35); line-height: 1.7; max-width: 240px; }
.footer-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(245, 236, 215, 0.5); margin-bottom: 0.85rem; }
.footer-link { display: block; color: rgba(245, 236, 215, 0.4); font-size: 0.8rem; text-decoration: none; margin-bottom: 0.45rem; transition: color 0.2s; }
.footer-link:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(245, 236, 215, 0.04); margin-top: 2rem; padding-top: 1.25rem; font-size: 0.73rem; color: rgba(245, 236, 215, 0.2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── TOAST ── */
.toast-sv {
  position: fixed;
  bottom: 1.75rem; left: 50%;
  transform: translateX(-50%) translateY(90px);
  background: #16a34a;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 99999;
  transition: transform 0.35s ease;
  display: flex; align-items: center; gap: 0.5rem;
  white-space: nowrap;
}
.toast-sv.show { transform: translateX(-50%) translateY(0); }


/* ── MOCKUP CAROUSEL ── */
.mockup-carousel {
  position: relative;
  height: 100%;
}

.mockup-slide {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  position: absolute;
  top: 0; left: 0; right: 0;
  pointer-events: none;
}
.mockup-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}

.carousel-dots {
  display: flex; gap: 6px; justify-content: center;
  margin-top: 1rem;
}
.cdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(245,236,215,0.2);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.cdot.active {
  background: var(--blue);
  width: 18px;
  border-radius: 99px;
}

.barber-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(245,236,215,0.09);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.barber-img-wrap img {
  width: 100%;
  display: block;
}

.slide-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: #fcd34d;
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}
.slide-label.blue {
  background: rgba(26,111,220,0.12);
  border-color: rgba(26,111,220,0.28);
  color: #7ab8ff;
}
.slide-label.green {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.28);
  color: #4ade80;
}

/* ── CLIENTES ── */
#clientes { padding: 5rem 0; }

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.client-logo-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,236,215,0.08);
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.client-logo-wrap:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,236,215,0.18);
}

.client-logo-wrap img {
  max-height: 80px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s;
}

.client-logo-wrap:hover img {
  filter: grayscale(0%);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  html { font-size: 14px; }

  /* Navbar */
  .navbar-brand img { height: 42px; }
  #navMenu {
    background: rgba(10, 22, 40, 0.97);
    border-top: 1px solid rgba(245,236,215,0.06);
    padding: 1rem 0.5rem;
    margin-top: 0.5rem;
    border-radius: 0 0 12px 12px;
  }

  /* Hero */
  #hero { padding: 3rem 0 2.5rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-sub { font-size: 0.88rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 0.65rem; }
  .hero-actions .btn-primary-sv,
  .hero-actions .btn-ghost-sv { width: 100%; justify-content: center; }
  .hero-mockup { margin-top: 2rem; }

  /* Stats */
  #stats { padding: 2rem 0; }
  .stat-number { font-size: 1.6rem; }

  /* Sistemas */
  #sistemas { padding: 3.5rem 0; }
  .system-card { padding: 1.4rem; }

  /* Sobre */
  #sobre { padding: 3.5rem 0; }
  .about-highlight { font-size: 0.85rem; }

  /* Clientes */
  #clientes { padding: 3rem 0; }
  .clients-grid { gap: 1.25rem; }
  .client-logo-wrap {
    width: 100%;
    padding: 1.25rem 1.5rem;
  }
  .client-logo-wrap img {
    max-height: 70px;
    max-width: 100%;
  }

  /* Orçamento */
  #orcamento { padding: 3.5rem 0; }
  .form-wrapper { padding: 1.25rem; }

  /* Contato */
  #contato { padding: 3.5rem 0; }
  .map-wrapper { height: 240px; margin-top: 2rem; }

  /* Footer */
  footer { padding: 2rem 0 1.5rem; }
  .footer-desc { max-width: 100%; }

  /* Toast */
  .toast-sv { width: 90%; text-align: center; white-space: normal; justify-content: center; }

  /* WA float */
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px; font-size: 1.2rem; }
}
