/* =========================================================
   CONVELLO - main.css (organizado)
========================================================= */

/* =========================
   ROOT / VARS
========================= */
:root {
  color-scheme: light;
  scroll-behavior: smooth;

  /* fontes */
  --default-font: "Montserrat', sans-serif";
  --heading-font: "Montserrat', sans-serif";
  --nav-font: "Montserrat', sans-serif";
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* cores */
  --background-color: #E7EAF0;
  --default-color: #475569;
  --heading-color: #1e293b;
  --accent-color: #0ea5e9;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* nav */
  --nav-hover-color: #0ea5e9;
  --nav-mobile-background-color: #ffffff;
}

/* temas auxiliares */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0d131f;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}

/* =========================
   BASE / HTML / BODY / TIPOGRAFIA
========================= */
html,
body {
  background-color: #E7EAF0;
  color: #1e293b !important;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Montserrat', sans-serif';
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--font-title);
}

strong {
  font-weight: 700 !important;
}

/* =========================
   SECTIONS (geral)
========================= */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/* =========================
   HEADER / NAVBAR
========================= */
.header {
  --surface-color: #1b2430;
  color: var(--default-color);
  padding: 2px 0;
  background-color: #0623a0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 25px;
  margin-right: 8px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 10px 30px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* header responsiveness (ordem) */
@media (max-width: 1200px) {
  .header .logo { order: 1; }
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
  .header .navmenu { order: 3; }
}

/* social */
.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: white;
  width: 30px;
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 25px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

/* =========================
   NAVMENU - DESKTOP
========================= */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    margin-left: 400px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #5e9ede;
    padding: 18px 15px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: white;
    font-weight: 400px;
  }
}

/* pontinho separador do menu */
.navmenu ul li:not(:last-child)::after {
  content: "·";
  color: #bbd3eb;
  font-size: 22px;
  position: absolute;
  right: -6px;
  top: 46%;
  transform: translateY(-50%);
}

/* =========================
   NAVMENU - MOBILE
========================= */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: white;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 20px;
    font-family: "MontSerrat";
    font-size: 17px;
    color: black;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  /* social links no mobile */
  .header .header-social-links {
    display: none;
  }

  .mobile-nav-active .header-social-links {
    display: flex;
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(60px + 10px);
    z-index: 10000;
    gap: 10px;
    padding: 10px 20px;
    background: #0623a0;
    border-radius: 6px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-active .navmenu > ul {
    inset: 120px 20px 20px 20px;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-active .header-social-links {
    justify-content: flex-end !important;
  }

  .mobile-nav-active .navmenu > ul {
    text-align: right;
    padding-right: 18px;
    padding-left: 0;
  }

  .mobile-nav-active .navmenu a,
  .mobile-nav-active .navmenu a:focus {
    justify-content: flex-end;
    text-align: right;
    width: 100%;
    padding-right: 0;
    padding-left: 20px;
  }

  .mobile-nav-active .navmenu a i,
  .mobile-nav-active .navmenu a:focus i {
    margin-left: 10px;
    margin-right: 0;
  }
}

/* AOS delay mobile */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* =========================
   HERO
========================= */
.hero {
  padding: 110px 0px;
  position: relative;
  z-index: 0;
  background-color: #d8dadf;
  overflow: hidden;
  background-position: center top -30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/headerimagem1.png);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  bottom: 20px;
  margin-left: 0;
  padding: 0 15px;
  color: black;
}

.hero-content::before {
  content: "";
  position: absolute;
  margin-top: -100px;
  right: 40px;
  background: rgba(255, 255, 255, 0.822);
  width: 500px;
  border-radius: 50%;
  height: 400px;
  filter: blur(80px);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.hero-headline {
  text-shadow: 4px 3px 100px rgba(255, 255, 255, 1);
  color: #1e293b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 50px;
}

.hero-headline,
.hero-text {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.hero .hero-content .hero-headline {
  font-size: 30px;
  font-weight: 780;
  line-height: 1;
  color: #1e293b;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
  color: black;
}
/* =========================================================
   HERO — Base
========================================================= */

.hero .hero-content {
  margin-left: 110px;
}

.hero .hero-content .hero-headline {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}

.hero .hero-content .hero-text {
  font-size: 1rem;
  margin-bottom: 32px;
  align-items: center;
}

/* =========================================================
   HERO — CTA
========================================================= */

.hero .hero-content .hero-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.hero .hero-content .hero-cta .cta-button {
  display: inline-flex;
  gap: 10px;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: #0623a0;
  color: var(--contrast-color);
  padding: 10px 40px;
  border-radius: 20px;
  text-decoration: none;
}

.hero .hero-content .hero-cta .cta-button:hover {
  background: rgb(10, 80, 170);
  transform: translateY(-2px);
}

.hero .hero-content .hero-cta .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  
  color: var(--heading-color);
  font-weight: 500;
  text-decoration: none;
}
/* =========================================================
   HERO — Responsivo legado
========================================================= */

@media (min-width: 992px) {
  .hero .hero-content {
    margin-left: 110px;
    
  }
}

@media (max-width: 1200px) {
  .hero .hero-content .hero-headline {
    font-size: 90px;
  }
}

@media (max-width: 992px) {
  .hero .hero-content .hero-headline {
    font-size: 22px;
    padding: 0 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    background-image: url("/assets/img/headermobile3.png.png");
    background-size: 100% auto;
    background-position: center top;
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero .hero-content .hero-headline {
    font-size: 24px;
    padding: 0 16px;
    color: rgb(255, 255, 255);
  }
  .hero-content::before {
    content: "";
    position: absolute;
    margin-top: -100px;
    left: 5px;
    width: 500px;
    height: 300px;
    background: rgba(255, 255, 255, 0.822);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.8;
    display: none;;
    z-index: 1;
    pointer-events: none;
  }



  .hero {
    align-items: flex-start;
    padding-top: 90px;
  }
 
}

@media (max-width: 576px) {
  .hero .hero-content .hero-headline {
    font-size: 24px;
    padding: 0 16px;
    color: rgb(255, 255, 255);
    text-align: center;
    top: 300px;
  }
 
  
.hero .hero-content .hero-cta .cta-button {
  display: inline-flex;
  gap: 10px;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: #E7EAF0;
  color: black;
  margin-left: -20px;
  padding: 10px 40px;
  border-radius: 20px;
  margin-top: 300px;
  text-decoration: none;
}

.hero .hero-content .hero-cta .cta-button:hover {
  background: rgb(10, 80, 170);
  transform: translateY(-2px);
}
  
}
/* =========================================================
   HERO — Responsivo universal (<=1199.98px)
   Texto no céu + CTA embaixo + caminhão sempre aparecendo
========================================================= */

@media (max-width: 1199.98px) {

  .hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: min(92svh, 600px) !important;
    padding: 86px 16px 20px !important;
    overflow: hidden !important;
    text-align: center !important;
    align-items: center;
    background-repeat: no-repeat !important;
    background-color: #d8dadf !important;
    background-size: cover !important;
    background-position: center 78% !important;
  }

  .hero .hero-content {
    margin-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 10px !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .hero .hero-content .hero-headline {
    margin: 6px 0 0 !important;
    padding: 0 10px !important;
    line-height: 1.15 !important;
    font-size: clamp(22px, 3.8vw, 40px) !important;
    max-width: 24ch;
right: 10px;  }

  .hero .hero-content .hero-text {
    display: block !important;
    margin: 12px auto 0 !important;
    max-width: 42ch;
    left: -10px;
        top: 300px;
        color: white;
text-align: center;
    font-size: clamp(14px, 2.2vw, 18px) !important;
    line-height: 1.35 !important;
  }

  .hero .hero-content .hero-cta {
    margin-top: auto !important;
    padding-top: 16px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .hero .hero-cta {
    margin-top: 0 !important;
  }
}

/* =========================
   HERO WAVE (onda)
========================= */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 145px;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 991.98px) {
  .hero-wave {
    height: 10px;
  }
}

/* remove onda somente no mobile */
@media (max-width: 575.98px) {
  .hero-wave,
  .hero-wave svg {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  #hero,
  .hero,
  .hero.section {
    padding-bottom: 0 !important;
  }
}

/* =========================
   ABOUT
========================= */
.about {
  padding-top: 60px;
  background-color: #E7EAF0;
  overflow: hidden;
  margin-left: 200px;
  padding-bottom: 30px;
}

.about .about-images-wrapper {
  position: relative;
  padding-bottom: 9px;
  padding-right: 60px;
  z-index: 1;
  top: -50px;
  width: 90%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

@media (max-width: 992px) {
  .about .about-images-wrapper {
    padding-right: 0px;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
}

.about h5 {
  font-size: 19px;
  margin-left: 10px;
}

/* grid features */
#about .features-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

#about .feature-card {
  width: 100%;
}

.about .feature-card {
  display: flex;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  gap: 12px;
  background: var(--surface-color);
  width: 10rem;
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

#about .feature-card,
#about .feature-card span,
#about .feature-card strong {
  hyphens: none !important;
  line-height: 20px;
  -webkit-hyphens: none !important;
  -ms-hyphens: none !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

/* ajuste final de columns */
#about .features-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  gap: 16px !important;
}

/* responsivo about */
@media (max-width: 1199.98px) {
  .about {
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .about .feature-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .about {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .about .about-images-wrapper {
    top: 0;
    width: 100%;
    padding-right: 0;
  }

  .about h5 {
    margin-left: 0;
    text-align: left;
  }

  .about .features-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .about .feature-card {
    padding: 1rem 1.250rem;
  }
}

/* grade feature-card largura */
section#about.about .features-grid .feature-card {
  width: 100% !important;
  padding: 12px 40px !important;
  border-radius: 18px !important;
}

section#about.about .features-grid .feature-card span {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

/* breakpoints específicos do about grid */
@media (min-width: 1200px) {
  section#about.about .features-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
    justify-content: start !important;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  section#about.about .features-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
  }
}

@media (max-width: 767.98px) {
  section#about.about .features-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================
   SERVIÇOS
========================= */
.services-section {
  background-color: #E7EAF0;
  padding-bottom: 80px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.services-bar {
  background-color: #0a1cff;
  height: 100px;
  display: flex;
  align-items: center;
}

.services-title {
  color: #fff;
  font-size: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-left: 220px;
}

/* grade (seu ajuste final – centralizada) */
.services-section {
  padding: 80px 0;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 290px));
  justify-content: center;
  gap: 24px;
}

.service-card {
  background-color: #fff;
  width: 290px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  padding: 28px 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  width: 100%;
  height: 100%;
}

.service-icon {
  width: 100px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 90px;
  height: 50px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 13px;
  text-align: left;
  line-height: 1;
  color: #444;
}

/* tablet */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 290px));
  }
}

/* mobile */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .service-card {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* título serviços mobile */
@media (max-width: 600px) {
  .services-title {
    font-size: 28px;
    text-align: center;
    margin-left: 0;
    width: 100%;
  }
}

/* =========================
   COVERAGE (Abrangência)
========================= */
.coverage-section {
  background: #0a66ff;
  padding: 40px 40px;
  position: relative;
  padding-bottom: 300px;
  overflow: visible !important;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.coverage-section .container {
  position: relative;
}

/* botão coverage */
a.coveragebutton {
  display: inline-block;
  background: #0623a0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  margin-left: 110px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* texto */
.coverage-content h2 {
  color: #fff;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding-left: 110px;
  line-height: 1;
  margin-bottom: 20px;
}

.coverage-content h2::after {
  content: "";
  display: block;
  width: 19rem;
  height: 1px;
  background-color: #ffffff;
  margin-top: 10px;
}

.coverage-content p {
  color: #e6ecff;
  padding-left: 110px;
  font-size: 17px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  max-width: 480px;
  line-height: 1;
  margin-bottom: 30px;
}

/* btn-primary (usado no SOBRE header5) */
.btn-primary {
  display: inline-block;
  background: #0623a0;
  color: #fff;
  font-size: 20px;
  padding: 7px 20px;
  margin-left: 110px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* mapa */
.coverage-map {
  position: relative;
}

.coverage-map img {
  width: 75%;
  max-width: 430px;
  margin-right: 100px;
  display: block;
}

/* card branco */
.coverage-card {
  position: absolute;
  box-shadow: -10px 12px 0px 0px rgba(6, 35, 160, 1);
  -webkit-box-shadow: -10px 12px 0px 0px rgba(6, 35, 160, 1);
  -moz-box-shadow: -10px 12px 0px 0px rgba(6, 35, 160, 1);
  left: 50%;
  bottom: -300px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  width: min(900px, 90%);
  text-align: center;
  z-index: 2;
  box-sizing: border-box; /* seu fix final */
  margin-left: auto;
  margin-right: auto;
}

.coverage-card h3 {
  color: #0623a0;
  font-size: 1.7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.coverage-card p {
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 20px;
  margin-bottom: 30px;
}

/* mini-cards */
.coverage-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: #eef1f6;
  padding: 20px 30px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.feature img {
  width: 50px;
  height: auto;
  margin-bottom: 8px;
}

/* breakpoints coverage */
@media (max-width: 1199.98px) {
  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .coverage-content h2,
  .coverage-content p {
    padding-left: 0;
        text-align: center;

    max-width: 100%;
  }
.coverage-content h2::after {
  content: "";
  display: block;
  width: 60rem;
  height: 1px;
  background-color: #ffffff;
  margin-top: 10px;
}

  .btn-primary {
    margin-left: 0;
align-items: center;

}

  .coverage-map {
    display: flex;
    justify-content: center;
  }

  .coverage-map img {
    width: min(520px, 90%);
    margin-right: 0;
  }

  .coverage-section {
    padding-bottom: 60px;
  }

  .coverage-card {
    position: static;
    transform: none;
    width: min(900px, 100%);
    margin: 16px auto 0;
  }

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

@media (max-width: 1199.98px) {
  .coverage-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 575.98px) {
  .coverage-section {
    padding: 36px 16px;
    padding-bottom: 40px;
  }

  .coverage-content h2 {
    font-size: 1.6rem;
    line-height: 1.15;
  }

  .coverage-content h2::after {
    width: 100%;
    max-width: 19rem;
  }

  .coverage-content p {
    font-size: 16px;
    line-height: 1.4;
  }

  .coverage-features {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 16px 18px;
  }
}

/* centralizações / card no tablet */
@media (max-width: 991.98px) {
  .coverage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .coverage-content h2,
  .coverage-content p {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 520px;
  }

  .coverage-content h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .coverage-cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  a.coveragebutton {
    margin-left: 0 !important;
  }

  .coverage-map {
    display: flex;
    justify-content: center;
  }

  .coverage-map img {
    margin: 0 auto !important;
  }
}

@media (max-width: 991.98px) {
  .coverage-card {
    position: static !important;
    margin: 28px auto 0 !important;
    width: min(720px, 92%) !important;
    max-width: none !important;
    padding: 22px 18px !important;
  }

  .coverage-features {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-items: stretch !important;
    gap: 16px !important;
  }

  .coverage-features .feature {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .coverage-card {
    width: 92% !important;
  }

  .coverage-features {
    grid-template-columns: 1fr !important;
  }
}

/* =========================
   CONTATO
========================= */
.contact-section {
  background-color: #E7EAF0;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-text {
  flex: 1;
}

.contact-text h2 {
  color: #062b8f;
  font-weight: 200px;
  padding-left: 150px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

.contact-text h2::after {
  content: "";
  display: block;
  width: 19rem;
  height: 1px;
  background-color: #062b8f;
  margin-top: 10px;
}

.contact-text p {
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 17px;
  padding-left: 150px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-right: 75px;
}

.contact-form input,
.contact-form textarea {
  width: 85%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  height: 10%;
  padding: 10px 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  background-color: #fff;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.btn-submit {
  background-color: #062b8f;
  color: #fff;
  border: none;
  font-family: 'Montserrat', sans-serif;
  width: 450px;
  height: 40px;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background-color: #041f66;
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 991.98px) {
  .contact-container {
    gap: 30px;
  }

  .contact-text h2,
  .contact-text p {
    padding-left: 0;
    text-align: center;
  }

  .contact-form {
    padding-left: 0;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .btn-submit {
    width: 100%;
    max-width: 360px;
  }
}

/* <=768 centralizado */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-text h2,
  .contact-text p {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
  }

  .contact-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form {
    width: 100%;
    max-width: 520px;
    padding-right: 0 !important;
    align-items: center;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .btn-submit {
    width: 100%;
    max-width: 360px;
    margin: 12px auto 0;
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  background-color: #062b8f;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32x;
  flex-wrap: wrap;
}

/* brand */
.footer-brand span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 18px;
  padding-left: 155px;
  opacity: 1;
}

.footer-brand .logo {
  line-height: 1;
  justify-content: center;
}

.footer-brand .logo img {
  max-height: 50px;
  margin-left: 170px;
}

.footer-brand .logo img {
  margin-left: 0 !important;
  padding-left: 155px;
  margin-right: 0 !important;
}

/* contato */
.footer-contact {
  padding-right: 150px;
  font-family: 'Montserrat', sans-serif;
  color: rgb(252, 252, 252);
  font-size: 16px;
}
.footer-contact a {
  padding-right: 6px;
  font-family: 'Montserrat', sans-serif;
  color: rgb(252, 252, 252);
  font-size: 16px;

}

.footer-contact ul {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

/* menu */
.footer-menu h3 {
  margin-bottom: 10px;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 17px;
  text-align: center;
  letter-spacing: 1px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #bcd3ff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  align-items: center;
  text-decoration: none;
  font-size: 17px;
}

.footer-menu a:hover {
  color: #fff;
}

/* footer mobile fix */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .footer-brand span,
  .footer-brand .logo img,
  .footer-contact {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .footer-contact ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  .footer-contact a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 6px 0 !important;
    line-height: 1.2 !important;
  }

  .footer-contact br {
    display: none !important;
  }

  .footer-menu h3,
  .footer-menu ul {
    text-align: center;
  }
}

/* =========================
   SOBRE (sobre.php)
========================= */

/* header5 */
.header5-section {
  background: #016aff;
  padding: 40px 40px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-bottom: 30px;
}

.header5-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.header5-content h2 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 35px;
  font-weight: 700;
  padding-left: 110px;
  line-height: 1;
  margin-bottom: 20px;
}

.header5-content p {
  color: #f3f3f3;
  padding-left: 110px;
  font-size: 17px;
  font-style: "Montserrat";
  max-width: 480px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 30px;
}

.header5video {
  position: relative;
}

.header5video img {
  width: 500px;
  border-radius: 2%;
  height: 370px;
  max-width: 750px;
  object-fit: cover;
  margin-right: 100px;
  display: block;
}

/* header5 responsivo */
@media (max-width: 1199.98px) {
  .header5-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .header5-section {
    padding: 32px 20px;
  }

  .header5-content h2,
  .header5-content p {
    padding-left: 0;
    max-width: 100%;
  }

  .header5-content h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .header5-content p {
    font-size: 18px;
    line-height: 1.4;
  }

  .header5-content .btn-primary,
  .header5-section .btn-primary {
    margin-left: 0;
    display: inline-flex;
    justify-content: center;
    width: fit-content;
  }

  .header5video {
    display: flex;
    justify-content: center;
  }

  .header5video img {
    width: min(560px, 100%);
    height: auto;
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .header5-section {
    padding: 28px 16px;
  }

  .header5-content h2 {
    font-size: 25px;
  }

  .header5-content p {
    font-size: 16px;
  }

  .header5-section .btn-primary {
    width: 100%;
    max-width: 340px;
    margin: 10px auto 0;
    display: flex;
  }
}

/* barra sobre */
.sobre-bar {
  background-color: #0a1cff;
  padding: 20px 0 30px;
  top: -10px;
  position: relative;
}

.sobre-title {
  color: #fff;
  font-size: 42px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding-right: 19px;
  margin-top: 30px;
  line-height: 1;
  margin: 0;
}

.sobre-bar .container {
  display: flex;
  justify-content: flex-end;
  padding-right: 780px;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sobre-section {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
}

.sobre-detalhe-section {
  background-image: url(../img/fundo-caminhão.png);
  top: 480px;
  background-position: right 90%;
  background-size: cover;
}

.sobre-detalhe-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: -60px;
  position: relative;
}

.sobre-detalhe-card {
  background: white;
  padding: 30px 3px 30px 46px;
  border-radius: 16px;
  height: 400px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  width: 85%;
  max-width: 700px;
  margin-left: 110px;
  position: relative;
  z-index: 1;
}

.sobre-detalhe-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 100%;
  background-color: #3330dd;
  border-radius: 0;
}

.sobre-detalhe-card p {
  font-size: 16px;
  font-weight: 300;
  color: #1e293b;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.sobre-detalhe-card strong {
  font-weight: 700;
}

.sobre-destaque {
  margin-top: 20px;
  font-weight: 700;
}

.sobre-detalhe-imagem {
  position: absolute;
  right: 20px;
  bottom: -50px;
  z-index: 5;
}

.sobre-detalhe-imagem img {
  width: 380px;
  border-radius: 12px;
}

/* sobre responsivo */
@media (max-width: 992px) {
  .sobre-detalhe-flex {
    flex-direction: column;
    align-items: center;
  }

  .sobre-detalhe-imagem img {
    width: 240px;
  }
}

@media (max-width: 1199.98px) {
  .sobre-bar .container {
    justify-content: center;
    padding-right: 0;
  }

  .sobre-title {
    text-align: center;
    padding-right: 0;
    font-size: 34px;
  }

  .sobre-detalhe-section {
    height: auto;
    padding-bottom: 20px;
  }

  .sobre-detalhe-flex {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  .sobre-detalhe-card {
    margin-left: 0;
    width: 100%;
    max-width: 720px;
    height: auto;
  }

  .sobre-detalhe-imagem {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }
}

@media (max-width: 575.98px) {
  .sobre-title {
    font-size: 28px;
  }

  .sobre-detalhe-card {
    padding: 20px;
    border-left-width: 10px;
  }

  .sobre-detalhe-card p {
    font-size: 15px;
    padding-left: 15px;
    line-height: 1.4;
  }

  .sobre-detalhe-imagem img {
    display: none;
  }

  .sobre-destaque {
    padding-left: 15px;
  }
}

/* =========================
   PRELOADER
========================= */
#preloader {
  position: fixed;
  inset: 0;
  transition: opacity .4s ease;
  background: #0623a0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#preloader img {
  width: 200px;
}

/* =========================
   CTA (genérico)
========================= */
.hero-cta {
  display: flex;
  justify-content: flex-start;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  line-height: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-cta {
    justify-content: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================
   FONT FORCE
========================= */
@media (max-width: 1199px) {
  html,
  body,
  .hero,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  a,
  span,
  li,
  button,
  input,
  textarea,
  .navmenu a,
  .navmenu a:focus,
  .hero-headline,
  .hero-text {
    font-family: "Montserrat", !important;
  }
}
/* iPad mini (768) */
@media (width: 768px) {
  .hero{ background-position: center 70% !important; }
}

/* iPad Air (820) */
@media (width: 820px) {
  .hero{ background-position: center 72% !important; }
}

/* iPad Pro 11" (834) */
@media (width: 834px) {
  .hero{ background-position: center 74% !important; }
}

/* Surface Pro 7 (912) */
@media (width: 912px) {
  .hero{
    padding-top: 104px !important;  /* header + respiro */
    background-position: center 76% !important;
  }
}

/* iPad Pro 12.9" (1024) */
@media (width: 1024px) {
  .hero{
    padding-top: 112px !important;
    background-position: center 78% !important;
    
  }
}
/* =========================================================
   HERO — TABLET BASE (768–1024): alinhado e sem “espação”
========================================================= */
@media (min-width: 768px) and (max-width: 1024px) {

  .hero{
    min-height: auto !important;                 /* tira buraco */
    padding: 96px 20px 32px !important;          /* respiro com header */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center 72% !important;  /* ajusta enquadramento do caminhão */
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }

  .hero .hero-content{
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 640px !important;                /* mesma “coluna” = nada torto */
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;

    bottom: auto !important;
  }

  /* mata os offsets que deixam torto */
  .hero .hero-content .hero-headline,
  .hero .hero-content .hero-text{
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    position: relative !important;
    margin: 0 !important;
    text-align: center !important;
    color: #fff !important;
  }

  .hero .hero-content .hero-headline{
    font-size: clamp(26px, 3.2vw, 38px) !important;
    line-height: 1.12 !important;
    max-width: 28ch;
  }

  .hero .hero-content .hero-text{
    font-size: clamp(14px, 1.7vw, 18px) !important;
    line-height: 1.35 !important;
    max-width: 52ch;
    opacity: .95; /* melhora leitura */
  }

  .hero .hero-content .hero-cta{
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 10px !important;
  }

  .hero .hero-content .hero-cta .cta-button{
    margin: 0 !important;
    padding: 12px 34px !important;
    background: #E7EAF0 !important;
    color: #000 !important;
  }
}
/* =========================================================
   FORÇAR FUNDO “MOBILE” EM TABLETS + SURFACE + ZENBOOK
   (coloque no final do CSS)
========================================================= */

@media (max-width: 1024px) {
  .hero {
    background-image: url("/assets/img/headermobile4.png") !important; /* ajuste o nome correto */
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center 40% !important;
  }

.hero-content::before {
display: none;

}
.hero-wave,
  .hero-wave svg {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  #hero,
  .hero,
  .hero.section {
    padding-bottom: 0 !important;
  }
}
