/* ==========================================================================
   AGV Landing — design tokens
   ========================================================================== */
:root {
  --navy: #1B2A4A;
  --navy-light: #24365C;
  --navy-dark: #16233D;
  --orange: #F2994A;
  --orange-light: #F5A968;
  --cream: #FAF9F6;
  --white: #ffffff;
  --body-text: #5C6B82;
  --body-text-on-dark: #B7C2D6;
  --muted-on-dark: #9AA9C0;
  --border: #E4E7EE;
  --whatsapp: #25D366;
  --whatsapp-text: #0a3d1f;
  --whatsapp-hover: #1fbb59;

  --container-max: 1240px;
  --radius: 10px;
  --radius-sm: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Poppins', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* height:auto preserva a proporção agora que as imagens declaram width/height */
img { max-width: 100%; height: auto; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-light); }

input, textarea, select, button { font-family: 'Poppins', Helvetica, Arial, sans-serif; }
input::placeholder, textarea::placeholder { color: #8B99AE; }

h1, h2, h3, p { margin: 0; }

/* Ícones SVG inline: dimensionados por font-size e coloridos por color,
   para que as regras de tamanho/cor existentes continuem valendo. */
.ms {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 400;
  display: block;
}
.eyebrow.center { text-align: center; font-size: 9.5px; }

.divider {
  width: 56px;
  height: 2px;
  background: var(--orange);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.section-heading h2, .section-heading h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
}
.section-heading h2 { font-size: 38px; }
.section-heading h2.light { color: var(--white); }
.section-heading h3 { font-size: 30px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.btn-block { width: 100%; }

.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: var(--orange-light); color: var(--navy); }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); color: var(--white); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--whatsapp-text);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  font-size: 12.5px;
  padding: 12px 20px;
}
.btn-whatsapp:hover { background: var(--whatsapp-hover); color: #062f16; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(242, 153, 74, 0.28);
}

.header-inner {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.logo-main { height: 52px; width: auto; display: block; flex: 0 0 auto; }

.consultor-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.consultor-tag .eyebrow { text-align: center; }
.logo-consultor { height: 23px; width: 106px; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a { font-size: 14px; color: #E6EAF0; }
.main-nav a:hover { color: var(--orange); }

.header-cta-desktop { flex: 0 0 auto; }

.whatsapp-float {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--whatsapp-text);
  box-shadow: 0 10px 26px rgba(11, 37, 69, 0.35), 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 45;
}
.whatsapp-float:hover { background: var(--whatsapp-hover); color: #062f16; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex: 0 0 auto;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 32, 0.55);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-overlay.is-visible { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 55%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  --form-w: clamp(300px, 27vw, 370px);
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr) var(--form-w);
  column-gap: 28px;
  align-items: center;
  position: relative;
  padding-top: 64px;
  padding-bottom: 72px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 460px;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 600;
  color: var(--white);
  max-width: 400px;
  text-wrap: pretty;
}

.hero-text .lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--body-text-on-dark);
  max-width: 420px;
  text-wrap: pretty;
}

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
  max-width: 430px;
}
.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.hero-feature .ms { font-size: 28px; color: var(--orange); }
.hero-feature span:last-child { font-size: 11.5px; line-height: 1.5; color: var(--muted-on-dark); }

.hero-photo-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.hero-photo { display: block; width: 100%; height: auto; }
.hero-photo-name {
  display: block;
  margin-top: 4px;
  padding-right: 4px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--body-text-on-dark);
  text-align: right;
  text-wrap: pretty;
}

.hero-form-wrap { position: relative; z-index: 3; }

.hero-form {
  width: 100%;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form-logo { height: 26px; width: auto; align-self: center; margin-bottom: 4px; }
.hero-form .form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.02em;
}
.form-hint {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--body-text);
  text-align: center;
  margin-bottom: 8px !important;
}

.hero-form input,
.hero-form textarea,
.hero-form select,
.contact-form input,
.contact-form select {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 13.5px;
  color: var(--navy);
  outline: none;
  width: 100%;
}
.hero-form select, .contact-form select { color: var(--body-text); }
.hero-form input:focus, .hero-form textarea:focus, .hero-form select:focus,
.contact-form input:focus, .contact-form select:focus { border-color: #3D5680; }
.hero-form textarea { resize: vertical; }
.hero-form .btn { margin-top: 6px; }

/* ==========================================================================
   A AGV section
   ========================================================================== */
.section-aagv { background: var(--cream); padding: 84px 0; }

.aagv-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 56px;
  align-items: start;
}

.aagv-intro { display: flex; flex-direction: column; gap: 20px; }
.aagv-intro h2 { font-family: 'Poppins', sans-serif; font-size: 38px; line-height: 1.18; font-weight: 600; color: var(--navy); text-wrap: pretty; }
.aagv-intro p { font-size: 15px; line-height: 1.75; color: var(--body-text); text-wrap: pretty; }
.aagv-intro .btn { align-self: flex-start; margin-top: 8px; }

.aagv-coverage { display: flex; flex-direction: column; gap: 20px; }
.aagv-coverage h3 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 600; color: var(--navy); }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.coverage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 132px;
  box-shadow: 0 2px 10px rgba(11, 37, 69, 0.04);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.coverage-card:hover { border-color: #3D5680; transform: translateY(-3px); }
.coverage-card .ms { font-size: 30px; color: var(--orange); }
.card-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy); }

.vehicles-block { margin-top: 64px; display: flex; flex-direction: column; gap: 24px; }

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.vehicle-card:hover { border-color: #3D5680; }
.vehicle-card .ms { font-size: 40px; color: var(--orange); }
.vehicle-card .card-title { font-size: 17px; }
.card-desc { font-size: 12.5px; line-height: 1.6; color: var(--body-text); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.section-faq { background: var(--navy); padding: 84px 0; }
.faq-container { max-width: 900px; display: flex; flex-direction: column; gap: 34px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  text-align: left;
}
.faq-question span:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.faq-icon { font-size: 24px; color: var(--orange); transition: transform 0.25s; flex: 0 0 auto; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 24px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--body-text-on-dark);
  text-wrap: pretty;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.section-testimonials { background: var(--cream); padding: 84px 0; }
.section-testimonials .container { display: flex; flex-direction: column; gap: 40px; }
.testimonials-logo { height: 22px; width: auto; opacity: 0.75; margin: 2px 0; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 20px rgba(11, 37, 69, 0.06);
}
.quote-mark { font-family: 'Poppins', sans-serif; font-size: 44px; line-height: 0.6; color: var(--orange); }
.testimonial-card p { font-size: 14.5px; line-height: 1.75; color: var(--body-text); }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%;
  background: var(--navy); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600;
}
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); }
.author-meta { font-size: 12px; color: #7A88A0; }

.testimonials-dots { display: flex; align-items: center; justify-content: center; gap: 9px; }
.testimonials-dots .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #CFD6E2;
  border: none; padding: 0; cursor: default;
}
.testimonials-dots .dot.is-active { background: var(--orange); }

/* ==========================================================================
   Contact
   ========================================================================== */
.section-contact {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 60%, var(--navy) 100%);
  padding: 80px 0;
}
.contact-grid {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-text { display: flex; flex-direction: column; gap: 20px; }
.contact-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--white);
  text-wrap: pretty;
}
.contact-text p { font-size: 15.5px; line-height: 1.7; color: var(--body-text-on-dark); max-width: 400px; }
.contact-text .btn { align-self: flex-start; }

.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}
.contact-form input, .contact-form select { padding: 14px; }
.contact-form .btn { margin-top: 6px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-dark); padding: 60px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 44px;
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer-brand-logos { display: flex; align-items: center; gap: 18px; }
.footer-logo { height: 48px; width: auto; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.75; color: #93A1B8; max-width: 280px; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-heading { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); }
.footer-col a { font-size: 13.5px; color: var(--body-text-on-dark); }
.footer-col a:hover { color: var(--orange); }

.footer-contact-item { display: flex; align-items: center; gap: 10px; }
.footer-contact-item.align-top { align-items: flex-start; }
.footer-contact-item .ms { font-size: 17px; color: var(--orange); }
.footer-contact-item span:last-child { font-size: 13.5px; line-height: 1.6; color: var(--body-text-on-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 26px;
}
.footer-bottom span { font-size: 12px; color: #8290A6; }

/* ==========================================================================
   BREAKPOINT: Notebook / laptop (1024px – 1439px)
   ========================================================================== */
@media (max-width: 1439px) {
  .container { padding-left: 28px; padding-right: 28px; }

  .hero-grid {
    --form-w: clamp(260px, 24vw, 350px);
    grid-template-columns: 400px minmax(260px, 1fr) var(--form-w);
    column-gap: 16px;
  }
  .hero-text { max-width: 400px; }
  .hero-text h1 { font-size: 40px; }

  .aagv-grid { gap: 40px; }
  .coverage-grid { gap: 14px; }

  .contact-grid { gap: 40px; }
  .footer-grid { gap: 32px; }
}

/* ==========================================================================
   BREAKPOINT: Tablet (768px – 1023px)
   ========================================================================== */
@media (max-width: 1023px) {
  .container { padding-left: 24px; padding-right: 24px; }

  /* Header -> hamburger */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 82vw);
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 96px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.25);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-size: 17px; padding: 10px 0; width: 100%; }
  .header-cta-desktop { padding: 12px 16px; }
  .hamburger { display: flex; }
  .nav-overlay { display: block; }

  /* Hero -> stacked: texto, foto, formulário */
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 56px;
    gap: 40px;
  }
  .hero-text { max-width: 560px; margin: 0 auto; align-items: center; text-align: center; }
  .hero-text h1 { font-size: 36px; max-width: 100%; }
  .hero-text .lead { max-width: 480px; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-features { max-width: 430px; margin: 0 auto; }

  .hero-photo-wrap {
    height: auto;
    min-height: 0;
    width: min(60%, 320px);
    margin: 0 auto;
  }

  .hero-form-wrap { max-width: 480px; margin: 0 auto; width: 100%; }

  /* A AGV -> stacked, cards em 2 colunas */
  .aagv-grid { grid-template-columns: 1fr; gap: 48px; }
  .aagv-intro { align-items: center; text-align: center; }
  .aagv-intro .btn { align-self: center; }
  .aagv-coverage { align-items: center; }
  .aagv-coverage h3 { text-align: center; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); width: 100%; }

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

  /* Testimonials -> carousel with snap */
  .testimonials-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .testimonials-track::-webkit-scrollbar { display: none; }
  .testimonial-card { flex: 0 0 calc(60% - 10px); scroll-snap-align: start; }

  /* Contact -> stacked */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .contact-text { align-items: center; }
  .contact-text p { max-width: 480px; }
  .contact-text .btn { align-self: center; }
  .contact-form { max-width: 480px; margin: 0 auto; width: 100%; }

  /* Footer -> 2 columns */
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

/* ==========================================================================
   BREAKPOINT: Mobile (up to 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .container { padding-left: 20px; padding-right: 20px; }

  .header-inner { padding-top: 12px; padding-bottom: 12px; gap: 8px; }
  .header-brand { gap: 10px; }
  .logo-main { height: 40px; }
  .consultor-tag { gap: 3px; }
  .consultor-tag .eyebrow { font-size: 6.5px; letter-spacing: 0.14em; }
  .logo-consultor { height: 16px; width: 74px; }
  .header-cta-desktop { display: none; }
  .whatsapp-float { display: flex; }

  .main-nav { width: 88vw; padding-top: 88px; }

  /* Hero */
  .hero-grid { padding-top: 36px; padding-bottom: 44px; gap: 32px; }
  .hero-text { gap: 18px; }
  .eyebrow { font-size: 10.5px; }
  .hero-text h1 { font-size: 30px; }
  .hero-text .lead { font-size: 14.5px; }
  .hero-actions .btn { width: 100%; }
  .hero-features { grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 100%; }
  .hero-feature .ms { font-size: 24px; }
  .hero-feature span:last-child { font-size: 10.5px; }

  .hero-photo-wrap { width: min(72%, 260px); }

  .hero-form { padding: 26px 22px; }

  /* A AGV */
  .section-aagv { padding: 56px 0; }
  .aagv-intro h2 { font-size: 30px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .coverage-card { padding: 20px 12px; min-height: 116px; }
  .coverage-card .ms { font-size: 26px; }
  .card-title { font-size: 14.5px; }

  .vehicles-block { margin-top: 44px; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .vehicle-card { padding: 22px 14px; }

  .section-heading h2 { font-size: 28px; }
  .section-heading h3 { font-size: 22px; }

  /* FAQ */
  .section-faq { padding: 56px 0; }
  .faq-question { padding: 18px 18px; gap: 12px; }
  .faq-question span:first-child { font-size: 15px; }
  .faq-answer p { padding: 0 18px 20px; font-size: 14px; }

  /* Testimonials */
  .section-testimonials { padding: 56px 0; }
  .testimonial-card { flex: 0 0 85%; padding: 26px 22px; }

  /* Contact */
  .section-contact { padding: 56px 0; }
  .contact-text h2 { font-size: 28px; }
  .contact-text .btn, .contact-text a.btn { width: 100%; }
  .contact-form { padding: 26px 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-brand p { max-width: 100%; }
  .footer-col { align-items: center; }
  .footer-contact-item, .footer-contact-item.align-top { justify-content: center; }
  .footer-bottom { text-align: center; padding-bottom: 84px; }
}

/* ==========================================================================
   Usabilidade mobile (mobile-first indexing)
   ========================================================================== */

/* Alvo de toque maior nos indicadores do carrossel, sem alterar o ponto visual */
.testimonials-dots { gap: 18px; }
.testimonials-dots .dot { position: relative; cursor: pointer; }
.testimonials-dots .dot::after { content: ""; position: absolute; inset: -9px; }

/* Campos com 16px no mobile: abaixo disso o iOS Safari aplica zoom ao focar */
@media (max-width: 767px) {
  .hero-form input,
  .hero-form textarea,
  .hero-form select,
  .contact-form input,
  .contact-form select { font-size: 16px; }
}
