@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  padding-top: 35px;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  height: 100%;
  background-color: #fff;
  color: #333;
}
/* Largura da barra de rolagem */
::-webkit-scrollbar {
  width: 8px;
}

/* Fundo da barra (trilha) */
::-webkit-scrollbar-track {
  background: #f0f0f0;
}

/* Cor da barra em si */
::-webkit-scrollbar-thumb {
  background-color: #0762d9;
  border-radius: 10px;
  border: 2px solid transparent; /* opcional para criar borda */
}

/* Quando estiver em hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #0541a3;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* TOPO FIXO */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: linear-gradient(to right, #0657e1 0%, #0786db 50%, #04588c 100%);
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

/* Dentro do container já tem display flex no HTML */
.logo-topo {
  max-height: 35px;
  height: auto;
  width: auto;
}

.topo-dinamico {
  display: flex;
  flex-direction: row; /* Desktop: lado a lado */
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  gap: 1rem;
  flex-wrap: wrap;
}

.topo-dinamico p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 100;
  font-size: 1rem;
  line-height: 1rem;
  color: #fff;
}

.btn-cotacao {
  background-color: #ffffff;
  color: #0762d9;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-cotacao:hover {
  background-color: #f1f1f1;
  color: #004aad;
}

/* HERO */
.hero-section {
  position: relative;
  background: url("../img/bghero00.webp") center/cover no-repeat;
  /*
  padding-top: 2rem; /* compensa altura do topo fixo */
  min-height: calc(100vh - 2rem); /* ajusta visualmente */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.hero-left {
  flex: 1 1 300px;
  max-width: 480px;
  text-align: center;
}

.form-inline-hero {
  display: flex;
  flex-direction: column;
  align-items: center; /* Alinha o input e o botão no centro */
  gap: 1rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 1rem auto; /* Centraliza a própria div no pai */
  text-align: center;
}

.input-nome-hero {
  width: 100%;
  padding: 0.8rem 1.2rem;
  border: none;
  border-bottom: 2px solid #0762d9;
  background: transparent;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-nome-hero::placeholder {
  color: #bbb;
}

.input-nome-hero:focus {
  border-color: #ffc107;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.8rem 1.5rem;
  background: #ffc107;
  color: #333;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: #e6aa00;
}

.hero-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.destaque-frase-h1-hero {
  color: #0786db;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #ccc;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  background: #ffc107;
  color: #333;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  gap: 0.5rem;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: #e6aa00;
}

.hero-tagline {
  font-size: 0.9rem;
  color: #ddd;
  margin-top: 1rem;
}

.hero-card {
  flex: 1 1 220px; /* Cresce até 100%, mas começa com no mínimo 220px */
  max-width: 260px; /* Não ultrapassa isso */
  background: #00000016;
  color: #0762d9;
  border-radius: 40px;
  border: solid 1px;
  border-color: #f2f2f216;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  backdrop-filter: blur(3px);
}

.hero-card img {
  width: 40px;
  height: 40px;
}

.hero-card h3 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: bold;
}

.hero-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #ffffff;
}

/* RODAPÉ */
.hero-bottom {
  text-align: center;
}

.hero-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-line .line {
  flex: 1;
  height: 2px;
  background-color: #0762d9;
  max-width: 200px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-row img {
  width: 32px;
  height: auto;
}

.hero-infos {
  font-size: 0.95rem;
  color: #eee;
}

/* Coberturas */

.check-coberturas {
  color: #0762d9;
}

.section-coberturas {
  background: #81acd9;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coberturas-wrapper {
  background: #ffffff80;
  padding: 2rem;
  border-radius: 50px;
  max-width: 800px;
  width: 100%;
}

.btn-cta {
  background-color: #0762d9;
  color: white;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #004aad;
}

.accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #0762d9;
}

.accordion-item {
  background-color: transparent;
  border: none;
}

.accordion-header {
  color: #84c1d9;
  border-bottom: solid 1px;
}

.accordion-body {
  font-size: 0.95rem;
  color: #555;
}

.cobertura-headline {
  color: #0762d9;
  font-weight: 900;
  font-size: clamp(1.5rem, 15vw, 4rem);
  line-height: 1;
}

.cobertura-sub-headline {
  font-size: clamp(1.8rem, 10vw, 1.8rem);
  font-weight: 100;
}

.cobertura-text-strong {
  color: #0762d9;
  font-weight: 900;
}

.icone-carro-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100px;
  color: #0762d9;
}

/*Section existimos*/

.section-existimos {
  position: relative;
  background: url("../img/bgPqExistimos.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: white;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
}

.existimos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.existimos-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 1rem;
  justify-content: space-between;
  align-items: center;
}

/* ESQUERDA */
.existimos-left {
  flex: 1 1 45%;
  text-align: right;
}

.existimos-title {
  font-size: clamp(1.5rem, 15vw, 4rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #0762d9;
  text-align: right;
}

.existimos-text {
  font-size: clamp(1rem, 10vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 100;
  text-align: right;
}

.existimos-left h3 {
  color: #0762d9;
  font-size: clamp(1.5rem, 15vw, 2rem);
  font-weight: 400;
  font-style: italic;
  text-align: right;
}

/* BOTÃO */
.btn-cta {
  background-color: #0762d9;
  color: white;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-left: auto;
}
.btn-cta:hover {
  background-color: #004aad;
}

/* DIREITA - GRADE */
.existimos-right {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-img span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.79);
  color: white;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.1;
  width: 100%;
}

.card-manifesto {
  padding: 1.5rem;
  border-radius: 20px;
  font-weight: 400;
  font-size: 3rem;
  text-align: left;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.card-img:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/*Section Comparativos*/

.comparativo-modern-section {
  position: relative;
  color: #ffffff;
  padding: 4rem 1.5rem;
  font-family: "Inter", sans-serif;
  overflow: hidden;
  z-index: 1;
}

.comparativo-modern-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bgSectionComparativo.jpg") center/cover no-repeat;
  background-attachment: fixed;
  filter: blur(0);
  z-index: -1;
}

.comparativo-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.comparativo-title {
  color: #0762d9;
  font-weight: 900;
  font-size: clamp(1.5rem, 15vw, 4rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.comparativo-subtitle {
  font-size: clamp(1.5rem, 10vw, 2.5rem);
  line-height: 1;
  font-weight: 100;
  color: #000000;
  margin-bottom: 3rem;
  padding: 4px;
}

.comparativo-cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.comparativo-card {
  background-color: #151a237d;
  border-radius: 24px;
  padding: 2rem;
  width: 300px;
  max-width: 100%;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: solid 0.1rem #0000001d;
  backdrop-filter: blur(3px);
}

.comparativo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
}

.comparativo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparativo-card ul li {
  padding: 0.6rem 0;
  font-size: 1rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-right.destaque {
  background: linear-gradient(
    145deg,
    #2a6affdc,
    #063da256
  ); /* gradiente azul */
  color: white;
  border: solid 0.1rem #0786db16;
  box-shadow: 0 0 20px rgba(42, 107, 255, 0.3);
  text-align: center;
  backdrop-filter: blur(5px); /* DESFOCA O FUNDO */
}

.card-right ul li {
  color: #ffffff;
}

.check-icon {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px;
  border-radius: 50%;
}

.btn-cotar-card {
  display: inline-block;
  margin-top: 2rem;
  background: #ffffff;
  color: #2a6bff;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-cotar-card:hover {
  background: #e2e8f0;
}

/* Barra CTA */
.barra-cta {
  background: linear-gradient(90deg, #2a6bff, #7fc3ff80, #e3f2fd);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #0d111a;
  gap: 1rem;
  backdrop-filter: blur(3px);
}

.barra-cta p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
}

.btn-barra-cta {
  background: #0d111a;
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-barra-cta:hover {
  background: #2a6bff;
  color: #fff;
}

/*Section Depoimentos*/

.section-depoimentos {
  background: linear-gradient(135deg, #0a1d3f, #2f80ed);
  color: #ffffff;
  padding: 4rem 1rem;
  font-family: "Inter", sans-serif;
}

.depoimentos-container {
  max-width: 960px;
  margin: 0 auto;
}

.depoimento-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 16px;
}

.depoimento-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.depoimento-texto {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
}

.depoimento-texto strong.aliada {
  color: #61a5ff;
}

.depoimento-texto cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #d0e4ff;
}

/* Swiper styles */
.swiper-pagination-bullet {
  background-color: #61a5ff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #ffffff;
}

/* Section Somos Digitais*/

.section-digitais {
  background: url("../img/bgNascemosDigitais.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-digitais {
  padding: 4rem 1rem;
  font-family: "Inter", sans-serif;
}

.section-digitais .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0762d9;
}

.section-digitais .section-subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-top: 1rem;
}

.section-digitais .btn-cta {
  background: #0762d9;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(7, 98, 217, 0.3);
  transition: all 0.3s ease-in-out;
}

.section-digitais .btn-cta:hover {
  background: #054cb1;
  transform: translateY(-2px);
}

.mockup-img {
  max-width: 100%;
}

.aliada-benefits {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #e6e6e6;
  display: grid;
  gap: 1rem;
}

.aliada-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #0786db98;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.aliada-benefits i {
  font-size: 1.3rem;
  color: #0657e1;
  margin-top: 3px;
}

.aliada-benefits strong {
  display: block;
  color: #00010d;
}

/*Alert Cookie*/

.cookie-banner {
  position: fixed;
  bottom: -200px; /* Escondido fora da tela */
  left: 0;
  width: 100%;
  background: rgba(7, 98, 217, 0.95);
  color: #ffffff;
  z-index: 9999;
  padding: 1rem 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

.cookie-content a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
}

.btn-cookie {
  background: #ffffff;
  color: #0762d9;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie:hover {
  background: #e6e6e6;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .btn-cookie {
    margin-top: 0.5rem;
  }
}

/*Section Perguntas Frequentes*/

.section-faq {
  background: #f2f2f2;
}

.faq-content {
  max-width: 100%;
}

.section-faq .accordion-button {
  background-color: #fff;
  font-weight: 600;
  color: #222;
  box-shadow: none;
  border: none;
}

.section-faq .accordion-button:not(.collapsed) {
  background-color: #eef3ff;
  color: #0b49c9;
}

.section-faq .accordion-body {
  font-size: 0.95rem;
  color: #444;
}

.faq-image {
  max-width: 90%;
  height: auto;
  object-fit: contain;
}

/* Substitui setas pelo sinal de + e -*/
.section-faq .accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b49c9;
  background-image: none;
  transform: none;
  transition: all 0.3s ease;
}

.section-faq .accordion-button:not(.collapsed)::after {
  content: "–";
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b49c9;
}

/*Footer*/
.footer-custom {
  background-color: #1a1a1f;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

.footer-custom h6 {
  color: #b8b8b8;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.footer-links span {
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a {
  text-decoration: none;
}

.footer-links span:hover {
  color: #fff;
}

.footer-social-icons a {
  transition: opacity 0.3s ease;
}

.footer-social-icons a:hover {
  opacity: 0.7;
}

.footer-custom a {
  color: #fff;
}

.footer-custom a:hover {
  text-decoration: underline;
}

/* Carro movimento top*/

#car-top {
  position: fixed;
  bottom: 12px;
  left: 100%;
  width: 24vw; /* largura proporcional à tela */
  max-width: 180px; /* limite máximo para não estourar em desktops */
  min-width: 80px; /* limite mínimo para não sumir em mobile */
  z-index: 9999;
  transition: left 0.3s ease-out;
  pointer-events: none;
  will-change: left;
}

/*Botão whats*/

/* Botão flutuante */
#whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.4rem;
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease, padding 0.3s ease;
}

#whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-text {
  font-weight: bold;
}

/* Modal */
#whatsapp-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.77);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #84c1d9;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #333;
}

.modal-content input {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.modal-content button {
  margin-top: 1rem;
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background-color: #0762d9;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.modal-content button:hover {
  background-color: #1ebe57;
}

/* Botão fechar */
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}
.close-btn:hover {
  color: #333;
}

/* Animação */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  body {
    padding-top: 75px;
  }
  .topo-dinamico {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .justify-content-between {
    justify-content: center !important;
  }

  .logo-topo {
    align-self: center;
  }

  /* HERO SECTION */
  .hero-section {
    height: auto;
    background: url("../img/bgheroMobile.webp") center/cover no-repeat;
    padding: 6rem 1rem 2rem;
    text-align: center;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 0.85rem;
  }
  .input-nome-hero::placeholder {
    font-size: 0.8rem;
    text-align: center;
  }

  /* CARDS */
  .hero-right {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-card {
    flex: 0 0 150px; /* Cresce até 100%, mas começa com no mínimo 150px */
    min-width: 260px; /* Não ultrapassa isso */
  }

  .hero-card h3 {
    font-size: 1.3rem;
  }

  .hero-card p {
    font-size: 0.9rem;
  }

  /* RODAPÉ */
  .hero-line {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-line .line {
    max-width: 120px;
  }

  .hero-infos {
    font-size: 0.85rem;
    padding: 0 1rem;
  }

  .icon-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .icon-row img {
    width: 28px;
  }

  /*COBERTURAS*/
  .cobertura-headline {
    font-size: 1.8rem;
  }

  .cobertura-sub-headline {
    font-size: clamp(1.2rem, 10vw, 1.5rem);
    font-weight: 100;
  }

  /*EXISTIMOS*/

  .section-existimos {
    min-height: auto;
    padding: 0;
  }

  .existimos-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2rem 1rem 0 1rem;
  }

  .existimos-left,
  .existimos-right {
    width: 100%;
  }

  .existimos-left {
    text-align: center;
  }

  .existimos-right {
    grid-template-columns: 1fr;
  }

  .card-img,
  .card-manifesto {
    min-height: 200px;
  }

  .card-manifesto {
    font-size: 3rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 900;
  }

  .existimos-title {
    text-align: center;
    font-size: clamp(2rem, 15vw, 2.5rem);
  }
  .existimos-text {
    text-align: center;
  }

  .existimos-left h3 {
    text-align: center;
  }

  .cobertura-cta {
    font-size: (1rem, 15vw, 0.5rem) !;
  }

  /*Section Comparativos*/

  .comparativo-cards {
    flex-direction: column;
    align-items: center;
  }

  .barra-cta {
    flex-direction: column;
    text-align: center;
  }

  .comparativo-title {
    font-size: clamp(2rem, 15vw, 2.5rem);
  }

  .comparativo-subtitle {
    font-size: clamp(1.5rem, 10vw, 2.5rem);
    line-height: 1;
    font-weight: 100;
    color: #000000;
    margin-bottom: 3rem;
    padding: 4px;
  }

  /*Section Depoimentos*/

  .depoimento-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .depoimento-texto {
    text-align: center;
  }

  /*Section somos digitais*/

  .section-digitais {
    text-align: center;
    background: url("../img/bgSomosDigitaisVertical.jpg");
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 3rem 0 5rem 0;
  }

  .aliada-benefits {
    text-align: left;
  }

  /*Section Faq*/

  .section-faq {
    text-align: center;
  }

  .faq-content {
    text-align: center;
  }
}
