/* Fonte hospedada no proprio projeto para manter a tipografia igual em producao. */
@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-300.woff2') format('woff2');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-500.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-600.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-700.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('assets/fonts/poppins-800.woff2') format('woff2');
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f4f4;
  overflow-x: hidden;
}

.coverage-section,
.insurance-section,
.digital-section,
.faq-section,
.contact-form-section {
  scroll-margin-top: 120px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-140%);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.site-header.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header__inner {
  width: 100%;
  min-height: 45px;
  margin: 0;
  padding: 2px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo {
  display: block;
  margin-left: 155px;
  width: 180px;
  height: auto;
}

.site-header__nav {
  display: flex;
   margin-right: 155px;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: nowrap;
}

.site-header__nav > a {
  position: relative;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* linha escondida */
.site-header__nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #1f2937;
  transition: width .3s ease;
}

/* animação */
.site-header__nav > a:hover::after {
  width: 100%;
}

/* NAV DROPDOWN - SOLUÇÕES */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: -22px;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: #1f2937;
  font-family: inherit;
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0;
  transition: color .22s ease;
}

.nav-dropdown__chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
}

.nav-dropdown__trigger {
  position: relative;
  color: #1f2937;
}

/* linha escondida */
.nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #1f2937;
  transition: width .3s ease;
}

/* animação ao hover e quando estiver aberto */
.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after {
  width: 100%;
}

.nav-dropdown:hover .nav-dropdown__chevron,
.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

/* Painel do dropdown */
.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  display: flex;
  gap: 36px;
  min-width: 480px;
  padding: 28px 32px;
  background: linear-gradient(160deg, #ffffff, #ffffff 55%, #ffffff);
  border: 1px solid #e4e5e7eb;
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 1100;
}

.nav-dropdown__panel::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid #e4e5e7eb;
  border-top: 1px solid #e4e5e7eb;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 200px;
}

.nav-dropdown__title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #9b793d, #e6cf7e, #9b793d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.nav-dropdown__panel .nav-dropdown__link {
  display: block;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 8px;
  color: #4b5563;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 400;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.nav-dropdown__panel .nav-dropdown__link:hover {
  background: rgba(155, 121, 61, 0.08);
  color: #9b793d;
  padding-left: 16px;
}


/* HERO */
.hero {
  position: relative;
  background: #143352;
  padding: 5px 0 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}


.hero-container {
  width: calc(100% - 160px);
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92vh;
}

.hero-left {
  width: 50%;
  z-index: 2;

  margin-top: -40px;
  padding-left: 40px;
}

.hero-logo {
   width: 260px;
  margin-bottom: 28px;
}

.hero h1 {
  color: white;
  font-size: 4.4rem;
  line-height: 1.11;
  font-weight: 700;
  letter-spacing: 0px;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  max-width: 520px;
  margin-top: 25px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.btn-primary,
.btn-secondary {
  padding: 18px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  transition: .3s;
}

.btn-secondary {
  background: white;
  color: #000000;
}

.btn-secondary:hover {
  background: rgb(213, 231, 248)
  
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 18px 22px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    #9b793d,
    #e6cf7e,
    #9b793d
  );

  color: #111;
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  transition: .35s ease;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform .35s ease;
}

.btn-icon img {
  width: 24px;
  height: 24px;

  display: block;
}

.whatsapp-btn:hover .btn-icon {
  transform: translateX(5px);
}

.hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-person {
   width: 108%;
  max-width: 750px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  display: block;
}


/* SHAPES */

.hero-bg-shape {
  position: absolute;
  border-radius: 50px;
  opacity: .08;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: white;
  top: -150px;
  right: 250px;
  transform: rotate(30deg);
}

.shape-2 {
  width: 450px;
  height: 450px;
  background: white;
  bottom: -100px;
  right: -80px;
  transform: rotate(25deg);
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: white;
  bottom: 120px;
  left: 45%;
}


/* =========================
   COVERAGE
========================= */

.coverage-section {
  background: #f5f5f5;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.coverage-card {
  width: min(620px, 100%);
  max-width: 620px;
  background: #ffffff;
  border-radius: 32px;
  padding: 30px 28px 34px;
  border: 1px solid rgba(1, 31, 65, 0.045);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.004);
}

/* TITULO */

.coverage-card h2 {
  font-size: 1.5rem;
  line-height: 1.05;
  color: #04274F;
  font-weight: 600;
  margin-bottom: 10px;
}

.coverage-card p {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* =========================
   ACCORDION
========================= */

.accordion-item {
  border-bottom: 1px solid #dde2f1;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* ESQUERDA */

.accordion-title {
  display: flex;
  align-items: center;
  gap: 30px;
}

.accordion-title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transform: scale(3.5);
}

.accordion-title span {
  font-size: 0.95rem;
  font-weight: 600;

  color: #131522;
}

/* SETA */
.icon {
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon img {
  width: 66px;
  height: 66px;
  display: block;
}

.accordion-item.active .icon {
  transform: rotate(180deg);
}

/* CONTEÚDO */

.accordion-content {
  max-height: 0;

  overflow: hidden;

  transition:
     max-height .32s cubic-bezier(0.4, 0, 0.2, 1),
    padding .32s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 300px;

  padding-bottom: 24px;
}

/* LISTA */

.accordion-content p {
  color: #4b5563;
  font-size: .82rem;
  margin-top: .5rem;
  line-height: 1.7;
  font-weight: 400;
}

.accordion-content ul {
  padding-left: 46px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-content li {
  color: #4b5563;

  font-size: 0.82rem;
  line-height: 1.0;
}

/* BOTÃO */

.coverage-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 32px auto 0;
  padding: 18px 24px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #011f41,
    #014f7f,
    #011f41
  );

  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.04rem;
  transition: .3s ease;
}
.coverage-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .3s ease;
}

.coverage-btn-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.coverage-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 12px rgba(86, 103, 255, 0.123);
}

.coverage-btn:hover .coverage-btn-icon {
  transform: translateX(5px);
}

/* ========================= Seguros========================= */ 

.insurance-section {
  padding: 90px 20px;
  background: #f5f5f5;
}

.insurance-header {
  text-align: center;
  margin-bottom: 70px;
}

.insurance-header h2 {
  font-size: 2.8rem;
  font-weight: 400;
  color: #011f41;
  letter-spacing: 1px;
}

.insurance-header h2 span {
   background: linear-gradient(
    135deg,
    #9b793d,
    #e6cf7e,
    #9b793d
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  font-weight: 600;
}

.insurance-header p {
  color: #000000;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 400;
}

.insurance-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.insurance-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.insurance-icon {
  margin-bottom: 10px;
  transition: .3s ease;
}

.insurance-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
}

.insurance-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 500;
  color: #143352;

  min-height: 52px;
  margin-bottom: 10px;
}

.insurance-btn {
  margin-top: 4px;

  color: #aa9c68;
  text-decoration: none;
  font-weight: 500;

  position: relative;
  transition: .3s ease;
}

.insurance-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #9b793d;
  transition: .3s ease;
}

.insurance-btn:hover::after {
  width: 100%;
}

.insurance-card:hover .insurance-icon {
  transform: translateY(-6px);
}

/* =========================
   NÚMEROS / FUNDO
========================= */

.digital-section {
  position: relative;

  width: 100%;
  min-height: 100vh;

  overflow: hidden;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at center,
      #014f7f 0%,
      #143352 55%,
      #143352 100%
    );
}

/* brilho suave */

.digital-section::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 1200px;
  height: 1200px;

  background:
    radial-gradient(
      circle,
      rgba(0, 162, 255, 0.10) 0%,
      transparent 70%
    );

  pointer-events: none;
}

/* BACKGROUND - LINE SVG  ===== REMOVER DEPOIS ======

.digital-bg-line {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: .28;

  pointer-events: none;
}*/

/* CONTAINER */

.digital-container {
  width: calc(100% - 160px);
  max-width: 1400px;

  margin: auto;

  position: relative;
  z-index: 2;
}

/* TEXTO */

.digital-content {
  max-width: 720px;
  margin-left: 40px; 
  margin-top: -25px; 
}

.digital-content h2 {
  color: white;

  font-size: 3.5rem;
  line-height: .92;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 36px;
}

.digital-content h2 span {
  background: linear-gradient(
    135deg,
    #9b793d,
    #e6cf7e,
    #9b793d
  );

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;

  font-weight: 600;
}

.digital-content p {
  color: rgba(255,255,255,.92);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 520px;
}

/* CARD */

.quote-card {
  width: 100%;
  max-width: 300px; 
  background: #ffffff; 
  border-radius: 45px; 
  padding: 33px 25px; 
  margin-top: 40px; 
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
}

.quote-icon {
  width: 50px; 
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  
}

.quote-icon img {
  width: 100%; 
  height: 100%;
  object-fit: contain; 
}

.quote-card h3 {
  color: #07152f;
  font-size: 1.6rem; 
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 12px;
}

.quote-card span {
  color: #000000; 
  font-size: 0.9rem; 
  margin-bottom: 24px;
}

/* BOTÃO DO CARD */

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 24px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #011f41,
    #014f7f,
    #011f41
  );

  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  transition: .3s ease;
}

.detail-hero-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #011f41,
    #014f7f,
    #011f41
  );

  color: #fff;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1;
  transition: .3s ease;
}

.quote-btn:hover,
.detail-hero-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 12px rgba(86, 103, 255, 0.123);
}

.quote-btn .btn-icon-white,
.detail-hero-quote-btn .btn-icon-white,
.detail-hero-quote-btn .btn-icon-seguro {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform .3s ease;
}

.btn-icon-white {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 12px; /* ajuste esse valor conforme necessário */
}

.quote-btn .btn-icon-white img,
.detail-hero-quote-btn .btn-icon-white img,
.detail-hero-quote-btn .btn-icon-seguro img {
  width: 24px;
  height: 24px;
  display: block;
}

.quote-btn .btn-icon-white i,
.detail-hero-quote-btn .btn-icon-white i,
.detail-hero-quote-btn .btn-icon-seguro i,
.coverage-btn-icon i,
.form-submit-icon i {
  color: #ffffff;
  font-size: 1rem;
}

.quote-btn:hover .btn-icon-white,
.detail-hero-quote-btn:hover .btn-icon-white,
.detail-hero-quote-btn:hover .btn-icon-seguro {
  transform: translateX(5px);
}

/* INDICADORES */

.digital-indicators {
  position: absolute;
  right: 80px;
  top: 120px;
  width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px 45px;
  z-index: 3;
}

.indicator-item img {
  width: 94px;
  margin-bottom: 0px;
}

.indicator-item h3 {
  color: white;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.indicator-item p {
  color: rgba(255,255,255,.95);
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 500;
}

/* FAQ */

.faq-section {
  background: #ffffff;
  padding: 20px 0 10px;
  overflow: hidden;
}

.faq-container {
  width: 100%;
  max-width: 1320px;

  margin: 0 auto;
  padding: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

/* ESQUERDA */

.faq-left {
  width: 100%;
  max-width: 720px;
   margin-left: -25px;
}

.faq-left h3 {
  color: #04274F;

  font-size: 2.8rem;
  line-height: .95;
  font-weight: 600;
  
  letter-spacing: 0px;
  margin-bottom: 88px;
  margin-top: -60px;
}

/* ITEMS */

.faq-items {
  display: flex;
  flex-direction: column;
  margin-top: -40px;
}

.faq-item {
  padding: 0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 1px solid #000000;
  color: #131522;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  min-height: 48px;
}

.faq-question,
.faq-question * {
  font-family: 'Poppins', sans-serif !important;
}

button {
  font-family: inherit;
}

.faq-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: .3s ease;
}

.faq-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.faq-answer {
  max-width: 90%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height .4s ease,
    opacity .3s ease,
    padding .3s ease;

  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding-top: 18px;
  padding-bottom: 28px;
}

.faq-answer p {
  color: #4b5563;
  font-size: .82rem;
  margin-top: .5rem;
  line-height: 1.7;
  font-weight: 400;
}

/* BOTÃO */

.faq-btn {
  margin-top: 32px;
  margin-left: 0;
  justify-content: flex-start;
}

/* DIREITA */

.faq-right {
  position: relative;
  width: 100%;
  max-width: 660px;
  display: flex;
  justify-content: center;
}

.faq-image {
  width: 120%;
  max-width: 660px;
  object-fit: contain;
  margin-bottom: -35px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* SEGURADORAS */

.partners-section {
  width: 100%;
}

.partners-card {
  width: 100%;
  padding: 5px 0;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #011c3c;
}

/* SLIDER */

.partners-slider {
  width: 100%;
  overflow: hidden;
}

.partners-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scrollRight 24s linear infinite;
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* LOGOS */

.partners-track img {
  height: 140px;
  width: auto;
  object-fit: contain;
  opacity: .85;
  filter: brightness(0) invert(1);
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.partners-track img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

/* ANIMAÇÃO */

@keyframes scrollRight {

  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }

}

/* FORMULÁRIO */

.contact-form-section {
  position: relative;
  padding: 130px 24px;
  overflow: hidden;
  background: #ffffff;
}

/* FUNDO */

.contact-form-bg {
   position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 221px;
  z-index: 1;
  overflow: hidden;
}

.contact-form-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CARD */

.contact-form-card {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;

  box-shadow:
    0 20px 18px -12px rgba(0, 0, 0, 0.095),
    0 0 28px rgba(0, 0, 0, 0.044);
}

/* ESQUERDA */

.contact-form-left {
  width: 100%;
  max-width: 300px;
  padding-top: 22px;
}

.contact-form-left h3 {
  font-size: 1.84rem;
  line-height: 1.1;

  color: #04274f;

  margin-bottom: 14px;
}

.contact-form-left p {
  font-size: .95rem;
  line-height: 1.4;

  color: #000000;
}

/* DIREITA */

.contact-form-right {
  width: 100%;
  max-width: 500px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid input {
  width: 100%;
  height: 50px;

  border: 1px solid #dcdfe4;
  border-radius: 10px;

  padding: 0 18px;

  font-size: 0.92rem;

  outline: none;

  transition: .3s ease;
}

.form-grid input:focus {
  border-color: #0a3d77;
}

/* CHECKBOX */

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  margin-top: 8px;
  margin-bottom: 14px;

  font-size: .82rem;
  line-height: 1.5;

  color: #4b5563;
}

.checkbox-field a {
  color: #014f7f;
  text-decoration: underline;
}

.checkbox-field a:hover {
  text-decoration: underline;
}

.checkbox-field input {
  margin-top: 3px;
}

/* BOTÃO */

.form-submit-btn {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    #011f41,
    #014f7f,
    #011f41
  );
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  line-height: 1;
}

.form-submit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}

.form-submit-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 12px rgba(86, 103, 255, 0.123);
}

.form-submit-btn:hover .form-submit-icon {
  transform: translateX(5px);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #011c3c;
  color: #ffffff;
  padding: 0 0 0;
}

/* LINHA GRADIENTE + LOGO NO TOPO */
.footer-top-line {
  padding: 20px 20px 0;
}

.footer-top-line-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 0px;
}

.footer-logo-line {
  width:250px;
  flex-shrink: 0;
  opacity: 1;
}

.footer-gradient-line {
  flex: none;
  width: calc(100% + 200px); /* aumenta para a direita */
  height: 3px;

  background: linear-gradient(
    to right,
    #9b793d,
    #c8a55a,
    #e6cf7e,
    #ded7c5
  );

  border-radius: 2px;
}

/* GRID PRINCIPAL */
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  column-gap: 60px;
  align-items: start;
  padding: 40px 20px 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* COLUNAS */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* TÍTULO DAS COLUNAS */
.footer-col-title {
  background: linear-gradient(135deg, #9b793d, #e6cf7e, #9b793d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col-title--spaced {
  margin-top: 28px;
}

/* BOTÃO WHATSAPP BRANCO */
.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.97);
  color: #111;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  width: fit-content;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transition: transform .18s ease, box-shadow .18s ease;
  margin-bottom: 14px;
}

.footer-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}

.footer-whatsapp-icon {
  background: #25D366;
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 15px;
}

/* HORÁRIOS */
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
  letter-spacing: 0.1px;
   margin-top: 8px;
}

.footer-hours p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.1;
  color: #fffc;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
}

.footer-address p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.35;
  color: #fffc;
}

/* LISTA DE SEGUROS / LINKS */
.footer-col-services ul,
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-services a,
.footer-links-list a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color .2s;
}

.footer-col-services a:hover,
.footer-links-list a:hover {
  background: linear-gradient(135deg, #9b793d, #e6cf7e, #9b793d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* REDES SOCIAIS */
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 4px;
}

.footer-social a {
  color: #ffffff;
  font-size: 1.45rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #9b793d, #e6cf7e, #9b793d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform: translateY(-3px);
}

/* RODAPÉ INFERIOR */
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 20px 24px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom-inner span {
  color: rgba(255,255,255,0.42);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-bottom-inner a {
  color: rgba(255,255,255,0.42);
  text-decoration: underline;
  transition: color .2s;
}

.footer-bottom-inner a:hover {
  color: #c8c6c6;
}

.dev-by { display: flex; align-items: center; gap: 10px; }
.dev-by span { color: rgba(255,255,255,0.42); font-size: 0.82rem; }
.virgula-logo { width: 92px; display: block; opacity: 0.78; }


/* PÁGINAS DE SEGURO */
.insurance-detail-page-header {
  background: linear-gradient(135deg, #011f41, #014f7f);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Linha do logo centralizado */
.insurance-detail-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.insurance-detail-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

/* Linha com voltar + nome da empresa */
.insurance-detail-page-header .policy-header-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.insurance-detail-header-name {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

main:has(.insurance-detail-hero) {
  background: linear-gradient(180deg, #eef4fb 0%, #ffffff 100%);
}

.insurance-detail-hero {
  background: transparent;
  padding: 40px 20px 60px;
  border-radius: 0 0 60% 60% / 0 0 40px 40px;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.06);
}

.insurance-detail-hero-inner {
  width: min(1200px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.detail-hero-copy {
  max-width: 620px;
}

.detail-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9b793d;
  font-weight: 700;
  margin-bottom: 18px;
}

.insurance-detail-hero h2 {
  color: #000000;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 700;
  margin: 0;
}

.insurance-detail-hero p {
  color: #000000;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 24px;
}

.detail-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.detail-hero-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 34px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.041);
  border: 1px solid rgba(1, 31, 65, 0.088);
}

.detail-hero-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.detail-hero-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0;
}

.detail-hero-card-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.detail-hero-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  color: #011f41;
  margin: 0.2rem 0 0;
}

.detail-hero-card p {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 24px;
}

.detail-hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.detail-hero-features li {
  position: relative;
  padding-left: 24px;
  color: #000000;
  line-height: 1.2;
}

.detail-hero-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #9b793d;
  font-size: 1.4rem;
  line-height: 1;
}

.insurance-detail-info {
  padding: 40px 20px 100px;
}

.insurance-detail-info .detail-info-grid {
  max-width: 1200px;
  margin: auto;
}

.automotivo-bg,
.empresarial-bg,
.odontologico-bg,
.residencial-bg,
.saude-bg,
.vida-bg {
  background: transparent;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.detail-block {
  max-width: 600px;
  position: relative;
}

/* ===== POSIÇÃO DO CARD POR SEGURO ===== */

.automotivo-bg .detail-block {
  top: 8px;
}

.empresarial-bg .detail-block {
  top: 14px;
}

.odontologico-bg .detail-block {
  top: 14px;
}

.residencial-bg .detail-block {
  top: 14px;
}

.saude-bg .detail-block {
  top: 14px;
}

.vida-bg .detail-block {
  top: 14px;
}

.detail-block h2 {
  font-size: 1.95rem;
  line-height: 1.2;
  color: #011f41;
  margin-bottom: 18px;
}

.detail-block p {
  color: #000000;
  line-height: 1.8;
  margin-bottom: 20px;
}

.detail-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.detail-block li {
  padding-left: 28px;
  position: relative;
  color: #000000;
  line-height: 1.2;
}

.detail-block li::before {
  content: '▸';
  position: absolute;
  left: 0;
  top: 1px;
  color: #9b793d;
  font-size: 1rem;
}

.detail-info-image {
 border-radius: 28px;
  overflow: visible;
  min-height: 260px;
  
}

.detail-info-image img {
  width: 73%;
  height: auto;
  margin-left: -50px;
  object-fit: contain;
  display: block;
}

/* AUTOMOTIVO */

.automotivo-image img {
  width: 92%;

  margin-left: 60px;
  margin-top: 20px;
  margin-bottom: -30px;
}

/* EMPRESARIAL */

.empresarial-image img {
  width: 108%;

  margin-left: -10px;
  margin-top: -30px;
  margin-bottom: -80px;
}

/* ODONTOLÓGICO */

.odontologico-image img {
  width: 94%;

  margin-left: -20px;
  margin-top: 0;
  .footer-channels {
    margin-top: 18px;
  }

  .footer-channels h4 {
    color: #b58cff;
    font-size: 0.95rem;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
  }


  .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.98);
    color: #111;
    padding: 6px 12px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .whatsapp-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }

  .whatsapp-icon {
    background: #25D366;
    color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .whatsapp-icon i { font-size: 18px; }

  .whatsapp-text { color: #111; font-weight: 600; font-size: 0.95rem; }

  .channels-hours p {
    color: rgba(255,255,255,0.75);
    margin-top: 8px;
    font-size: 0.95rem;
  }
  margin-bottom: -40px;
}

/* RESIDENCIAL */
.residencial-image img {
  width: 102%;

  margin-left: 15px;
  margin-top: -20px;
  margin-bottom: -150px;
}

/* SAÚDE */
.saude-image img {
  width: 92%;

  margin-left: 10px;
  margin-top: -10px;
  margin-bottom: -20px;
}

/* VIDA */

.vida-image img {
  width: 100%;

  margin-left: 35px;
  margin-top: -20px;
  margin-bottom: -20px;
}

/* ============================================================
   POLÍTICA DE PRIVACIDADE
   ============================================================ */

.policy-header {
  background: linear-gradient(135deg, #011f41, #014f7f);
  padding: 40px 20px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-header-container {
  max-width: 1400px;
  margin: 0 auto;
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.policy-back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.policy-back-link:hover {
  opacity: 0.8;
}

.policy-back-link img {
  width: 18px;
  height: 18px;
  display: block;
}

.policy-header h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
}

.policy-container {
  background: #ffffff;
  padding: 80px 20px;
  min-height: calc(100vh - 200px);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.policy-section {
  margin-bottom: 52px;
  line-height: 1.8;
}

.policy-section h2 {
  color: #011f41;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e6cf7e;
}

.policy-section p {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.policy-section p a {
  color: #014f7f;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-section p a:hover {
  color: #9b793d;
  text-decoration: none;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.policy-list li {
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.policy-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #9b793d;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.policy-list li strong {
  color: #000000;
  font-weight: 600;
}

.contact-info {
  background: #f3f3f3;
  padding: 24px 28px;
  border-radius: 12px;
  margin-top: 16px;
  border-left: 4px solid #9b793d;
}

.contact-info p {
  color: #000000;
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info strong {
  color: #000000;
  font-weight: 600;
}

.contact-info a {
  color: #014f7f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #9b793d;
  text-decoration: underline;
}

.policy-action {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #dde2f1;
}

/* Estado inicial */
.reveal{
    opacity:0;
    transform:translateY(40px);

    transition:
    opacity .8s ease,
    transform .8s ease;

    will-change: transform, opacity;
}

/* Estado visível */
.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.insurance-card{
    opacity:0;
    transform:translateY(30px);

    transition:
    opacity .7s ease,
    transform .7s ease;
}


.insurance-card.active{
    opacity:1;
    transform:none;
}
