html,
body {
  background-color: #ffffff;
  color: white;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  overflow-x: hidden;
}

.navbar {
  background-color: #0c2c74;
  border-bottom: 1px solid #ffffff;
  padding-left: 100px;
  padding-right: 100px;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
}

.hero {
  background-image: url('../assets/banner.webp');
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero-text h1 {
  font-size: 2rem;
}

.hero-text .highlight {
  color: #00d1ff;
  font-weight: bold;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

.autoatendimento-title {
  color: #002580;
  font-weight: 600;
  font-size: 2.5rem;
}

.autoatendimento-wrapper {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.autoatendimento-wrapper a {
  text-decoration: none;
}

.autoatendimento-box {
  background-color: #002580;
  padding: 15px 20px;
  border-radius: 15px;
  max-width: 270px;
  width: 100%;
  margin: 0;
  max-height: 150px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
  text-decoration: none;
}

.autoatendimento-box:hover {
  transform: translateY(-5px);
}

.autoatendimento-box i {
  font-size: 2.5rem;
  margin-bottom: 1px;
}

.autoatendimento-box h5 {
  font-weight: 700;
  font-size: 20px;
}

.autoatendimento-box p {
  font-size: 0.9rem;
}

.social-icons-fixed {
  position: absolute;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 10;
  padding: 0;
}

.social-icons-fixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: white;
  text-decoration: none;
}

.social-icons-fixed .facebook {
  background-color: #0d3d91;
  border-radius: 8px 0 0 0;
}

.social-icons-fixed .instagram {
  background-color: #e1306c;
  border-radius: 0;
}

.social-icons-fixed .whatsapp {
  background-color: #25d366;
  border-radius: 0 0 0 8px;
}

.accessibility-fixed {
  position: absolute;
  right: 10px;
  bottom: 220px;
  z-index: 999;
}

.accessibility-fixed img {
  width: 48px;
  height: auto;
}

.cidades-section {
  background: url('../assets/fundo.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.cidades-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cidades-img-mulher {
  flex: 0 0 auto;
  max-width: 1400px;
  align-self: flex-end;
}

.cidades-img-mulher img {
  width: 100%;
  height: auto;
  display: block;
}

.cidades-img-cidades {
  flex: 1 1 auto;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.cidades-img-cidades img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

.planos-section {
  padding: 60px 20px;
  text-align: center;
}

.planos-section h2 {
  color: #002580;
  font-weight: 100;
  font-size: 3rem;
  margin-bottom: 20px;
}

.planos-section p {
  color: #002580;
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: repeat(2, auto);
  justify-content: center;
  align-items: center;
  gap: 30px 160px;
  margin-bottom: 40px;
}

.planos-grid div {
  color: #002580;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.planos-grid i {
  font-size: 1.2rem;
}

.btn-planos {
  display: inline-block;
  background-color: #002580;
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s;
}

.btn-planos:hover {
  background-color: #001c5a;
}

.footer-section {
  background-color: #002580;
  text-align: center;
  color: #ffffff;
  position: relative;
  padding: 60px 20px 40px;
}

.footer-logo {
  max-width: 350px;
  height: auto;
  margin-bottom: 20px;
  margin-top: -30px;
}

.footer-social-text {
  font-size: 1rem;
  margin-bottom: 1px;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}

.footer-social-icons a {
  color: #ffffff;
  font-size: 3rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social-icons a:hover {
  color: #00d1ff;
}

.footer-copy {
  font-size: 0.9rem;
  margin-top: 60px;
  margin-bottom: 0;
}

.footer-seal {
  position: absolute;
  bottom: 280px;
  right: 20px;
  max-width: 170px;
  height: auto;
}

.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: auto;
  max-width: 250px;
  height: auto;
  z-index: 999;
  cursor: pointer;
}

.py-10 {
  padding-top: 6rem !important;
  padding-bottom: 10rem !important;
}

.mb-10 {
  margin-bottom: 4rem !important;
}

#userwayAccessibilityIcon {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 45vh;
  }

  .navbar a {
    font-size: 10px;
  }

  .cidades-img-mulher {
    display: none;
  }

  .cidades-img-mulher img {
    width: 100%;
    height: auto;
    display: block;
  }

  .cidades-img-cidades {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .planos-section p {
    font-size: 1.2rem;
  }

  .planos-grid {
    gap: 30px 100px;
  }

  .autoatendimento-wrapper {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 35vh;
  }

  .cidades-img-mulher {
    display: none;
  }

  .cidades-img-mulher img {
    width: 100%;
    height: auto;
    display: block;
  }

  .cidades-img-cidades {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .planos-section p {
    font-size: 0.9rem;
  }

  .planos-grid {
    gap: 30px 100px;
  }

  .autoatendimento-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }

  .autoatendimento-box {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }

  .autoatendimento-box i {
    font-size: 1.5rem;
    margin-bottom: 1px;
  }

  .autoatendimento-box h5 {
    font-weight: 700;
    font-size: 20px;
  }

  .autoatendimento-box p {
    font-size: 0.9rem;
  }

  .accessibility-fixed {
    bottom: 450px;
  }

  .whatsapp-fixed {
    max-width: 180px;
  }

  .planos-grid {
    grid-template-columns: repeat(2, auto);
    gap: 20px 40px;
  }
}

@media (max-width: 432px) {
  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero {
    min-height: 20vh;
  }

  .autoatendimento-box {
    max-width: 240px;
    width: 100%;
    margin: 0 auto;
  }

  .accessibility-fixed {
    bottom: 480px;
  }

  .autoatendimento-title {
    font-size: 2rem;
  }

  .planos-section h2 {
    font-size: 1.5rem;
  }

  .planos-section p {
    font-size: 0.8rem;
  }

  .planos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
  }

  .planos-grid div {
    font-size: 8pt;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .planos-grid i {
    font-size: 1rem;
  }

  .footer-logo {
    max-width: 150px;
  }

  .footer-social-text {
    font-size: 10pt;
  }

  .footer-social-icons i {
    font-size: 20pt;
  }

  .footer-seal {
    max-width: 120px;
    bottom: 65px;
    right: 150px;
  }

  .whatsapp-fixed {
    position: absolute;
    bottom: 785px;
  }
}

@media (max-width: 375px) {
  .hero {
    min-height: 15vh;
  }

  .footer-seal {
    bottom: 65px;
    right: 130px;
  }

  .footer-copy {
    font-size: 10pt;
  }

  .planos-grid div {
    font-size: 6pt;
  }
}

@media (max-width: 320px) {
  .footer-seal {
    bottom: 60px;
    right: 100px;
  }

  .planos-grid div {
    font-size: 5pt;
  }

  .footer-copy {
    font-size: 8pt;
  }

  .autoatendimento-title {
    font-size: 20pt;
  }

  .whatsapp-fixed {
    position: absolute;
    bottom: 860px;
  }

  .autoatendimento-box {
    max-width: 200px;
    width: 100%;
    max-height: 180px;
    margin: 0 auto;
  }

  .accessibility-fixed {
    bottom: 530px;
  }

  .accessibility-fixed img {
    width: 38px;
    height: auto;
  }
}