:root {
  --green: #43bd22;
  --green-dark: #087331;
  --orange: #ff9d00;
  --orange-dark: #ef6b00;
  --dark: #121820;
  --muted: #667085;
  --light: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(18, 24, 32, 0.14);
}

/* RESET */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--dark);
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1320px, 92%);
  margin: auto;
}

/* TOPO */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand img {
  height: 68px;
  width: auto;
  mix-blend-mode: multiply;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.menu a {
  font-size: 14px;
}

.btn-nav,
.btn {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-nav,
.primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 12px 30px rgba(67, 189, 34, 0.28);
}

.secondary {
  border: 2px solid rgba(8, 115, 49, 0.18);
  color: var(--green-dark);
  background: #fff;
}

.menu-btn {
  display: none;
  border: 0;
  background: var(--green-dark);
  color: white;
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 24px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(67, 189, 34, 0.18), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f7fff3 55%, #fff4e5 100%);
  padding: 84px 0 74px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -28% -8%;
  height: 260px;
  background: linear-gradient(135deg, var(--orange), var(--green));
  border-radius: 50% 50% 0 0;
  opacity: 0.12;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: #fff2da;
  color: #aa5100;
  border: 1px solid #ffd39b;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.eyebrow.dark {
  background: #ecfff0;
  color: var(--green-dark);
  border-color: #bfeac8;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  margin: 20px 0 18px;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero p {
  font-size: 19px;
  line-height: 1.65;
  color: #475467;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.trust-row div {
  background: white;
  border: 1px solid #edf0f5;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.trust-row strong {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
}

.trust-row span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.hero-card {
  min-height: 520px;
  position: relative;
  border-radius: 42px;
  background: linear-gradient(145deg, #101820, #182635);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 34px;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -60px;
  width: 290px;
  height: 290px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.88;
}

.circle {
  position: absolute;
  border-radius: 50%;
  border: 34px solid;
}

.circle.one {
  width: 310px;
  height: 310px;
  border-color: rgba(67, 189, 34, 0.32);
  left: -95px;
  bottom: -70px;
}

.circle.two {
  width: 240px;
  height: 240px;
  border-color: rgba(255, 157, 0, 0.34);
  right: -55px;
  bottom: 30px;
}

.person-card {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 90px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 12px;
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.person-card h2 {
  font-size: 34px;
  margin: 15px 0 10px;
}

.person-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.person-card a {
  color: var(--green-dark);
  font-weight: 900;
}

/* SEÇÕES */
.section {
  padding: 82px 0;
}

.section-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

.section-title span {
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.section-title h2,
.audience-grid h2,
.cta-box h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  margin: 12px 0;
  font-weight: 900;
}

.section-title p,
.audience-grid p,
.cta-box p {
  color: var(--muted);
  line-height: 1.7;
}

/* EMPRÉSTIMOS */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: white;
  border: 1px solid #eef0f4;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-7px);
}

.service-card.highlight {
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  color: white;
}

.service-card.highlight p {
  color: #eaffed;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff4df;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 18px;
}

.highlight .icon {
  background: rgba(255, 255, 255, 0.18);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
}

/* ATENDIMENTO */
.audience-section {
  background: var(--light);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.audience-card,
.audience-list > div {
  background: #fff;
  border-radius: 24px;
  padding: 24px 28px;
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  font-weight: 900;
  font-size: 1.35rem;
  color: #061426;
}

.audience-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.prefeitura-icon {
  font-size: 44px;
  line-height: 1;
}

/* PLANOS DE SAÚDE */
.health-section {
  background: linear-gradient(135deg, #101820, #0d2a1a);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.health-section::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -120px;
  width: 390px;
  height: 390px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.18;
}

.health-section .container {
  width: min(1440px, 94%);
}

.health-section .section-title {
  max-width: 1280px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.section-title.light {
  color: white;
}

.section-title.light p {
  color: #d5e6da;
}

.health-section .section-title h2 {
  max-width: 1220px;
  margin: 14px auto 22px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -2px;
}

.health-section .section-title p {
  max-width: 980px;
  margin: 0 auto;
  font-size: 18px;
}

.health-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.logo-card {
  width: 190px;
  min-width: 190px;
  height: 125px;
  background: #fff;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
  border-bottom: 6px solid var(--green);
  transition: .3s;
}

.logo-card {
  background: #fff;
  border-radius: 25px;
  min-height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-bottom: 6px solid var(--green);
  transition: 0.3s;
}

.logo-card:hover {
  transform: translateY(-8px);
}

.logo-card img {
  max-width: 150px;
  max-height: 78px;
  object-fit: contain;
}

/* Caso alguma logo ainda esteja como texto */
.logo-card:not(:has(img)) {
  text-align: center;
  font-weight: 900;
  font-size: 18px;
}

.amil { color: #1765d8; }
.assim { color: #e73828; }
.unimed { color: #008f4c; }
.golden { color: #b88100; }
.notre { color: #662d91; }
.bradesco { color: #c91517; }
.sulamerica { color: #f57c00; }

/* CTA */
.cta-section {
  background: #fff;
}

.cta-box {
  background: linear-gradient(135deg, #fff8eb, #ecfff0);
  border: 1px solid #ffe0aa;
  border-radius: 34px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: var(--shadow);
}

/* RODAPÉ */
.footer {
  background: #0c1118;
  color: white;
  padding: 54px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  height: 95px;
  background: white;
  border-radius: 18px;
  padding: 8px;
  mix-blend-mode: normal;
}

.footer p {
  color: #d7dde7;
  line-height: 1.65;
}

.copy {
  text-align: center;
  margin-top: 40px;
  padding: 18px;
  background: #070a0f;
  color: #abb4c2;
  font-size: 13px;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .hero-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .health-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-card {
    min-height: 460px;
  }

  .menu {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 92px;
    background: white;
    border-radius: 24px;
    padding: 20px;
    display: none;
    flex-direction: column;
    box-shadow: var(--shadow);
  }

  .menu.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .health-section .section-title h2 {
    font-size: clamp(36px, 7vw, 58px);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1320px);
  }

  .brand img {
    height: 54px;
  }

  .hero {
    padding: 52px 0;
  }

  .trust-row,
  .cards,
  .audience-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .health-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .logo-card {
    min-height: 105px;
    padding: 16px;
  }

  .logo-card img {
    max-width: 125px;
    max-height: 62px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .person-card {
    left: 20px;
    right: 20px;
    bottom: 70px;
  }

  .person-card h2 {
    font-size: 27px;
  }

  .hero-card {
    min-height: 420px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .health-section {
    padding: 72px 0;
  }

  .health-section .section-title h2 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .health-section .section-title p {
    font-size: 15px;
  }
}



#loader{
    position:fixed;
    inset:0;
    background:linear-gradient(135deg,#ffffff,#f4fff0);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

#loader img{
    width:600px;
    max-width:85%;
    margin-bottom:25px;
    filter:drop-shadow(0 15px 35px rgba(0,0,0,.15));
}

#loader h2{
    margin:0;
    font-size:38px;
    font-weight:900;
    color:#121820;
}

#loader p{
    margin-top:15px;
    color:#087331;
    font-weight:700;
    font-size:18px;
}

.loader-bar{
    width:260px;
    height:8px;
    background:#e5e7eb;
    border-radius:999px;
    margin-top:25px;
    overflow:hidden;
}

.loader-bar span{
    display:block;
    height:100%;
    width:0%;
    background:linear-gradient(90deg,#43bd22,#ff9d00);
    animation:loading 2s linear forwards;
}

@keyframes loading{
    to{
        width:100%;
    }
}




/* MELHORIAS MOBILE WASP CRED */
@media (max-width:768px){

    /* Loader */
    #loader img{
        width:220px;
        max-width:80%;
    }

    #loader h2{
        font-size:32px;
    }

    #loader p{
        font-size:16px;
        text-align:center;
        padding:0 20px;
    }

    /* Hero */
    .hero h1{
        font-size:36px;
        line-height:1.1;
        text-align:center;
    }

    .hero p{
        font-size:16px;
        text-align:center;
    }

    .hero-actions{
        flex-direction:column;
    }

    /* Card principal */
    .person-card{
        left:15px;
        right:15px;
        padding:24px;
    }

    .person-card h2{
        font-size:24px;
    }

    /* Logo topo */
    .brand img{
        max-height:55px;
        width:auto;
    }

    /* Cards militares */
    .audience-list{
        grid-template-columns:1fr;
    }

    .audience-card{
        font-size:18px;
        min-height:90px;
    }

    /* Logos planos */
    .health-logos{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .logo-card img{
        max-width:100px;
        max-height:50px;
    }

    /* WhatsApp */
    .whatsapp-float{
        width:60px;
        height:60px;
        right:15px;
        bottom:15px;
    }
}