:root {
  --verde: #00bb7f;
  --verde-hover: #009f6a;
  --azul-escuro: #032c7b;
  --azul-medio: #1A3E9A;
  --cinza-bg: #F4F6F9;
  --cinza-texto: #5A6475;
  --branco: #FFFFFF;
  --font: 'Onest', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #f6f9fb;
  font-family: 'Onest', sans-serif !important;
  
  color: #111111;
  line-height: 1.6;
}

.container-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--verde);
  color: var(--branco);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.btn-primary:hover { background-color: var(--verde-hover); }

.btn-arrow { width: 16px; height: 16px; }
.btn-arrow-dark { filter: invert(1) brightness(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--azul-escuro);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.7; }

.btn-outline-green {
  background-color: var(--verde);
  color: var(--branco);
  border: 2px solid var(--verde);
}
.btn-outline-green:hover { background-color: var(--verde-hover); color: var(--branco); }

.btn-white {
  background-color: var(--branco);
  color: var(--azul-escuro);
}
.btn-white:hover { background-color: #e8f5ee; }

.hero-bg-wrap {
  background: transparent;
}

.header-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 16px 24px;
}

.header-bar .container-inner {
  background: var(--branco);
  border-radius: 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  padding: 20px 24px 20px 20px;
  max-width: 1200px;
}

.logo-img { height: 44px; width: auto; }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--azul-escuro);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #2d3748;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--verde); }

.hero-section {
  background: transparent;
  padding: 48px 0 56px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--azul-escuro);
  line-height: 1.2;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
  border-radius: var(--radius);
}

.hero-icon {
  position: absolute;
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
}

.hero-icon-1 { top: 26%; left: 6%; }

.hero-icon-2 { bottom: 5%; right: 4%; }

.sobre-section {
  /*padding: 40px 0;*/
}

.sobre-inner {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  background-image: url('/imagens/quem-somos.png');
  background-size: cover;
  background-position: center;
  height: 390px;
}

.sobre-image-wrap {
  display: block;
}

.sobre-img {
  display: none;
}

.sobre-text {
  padding: 24px 120px 24px 32px;
  color: var(--branco);
}

.sobre-title {
  color: #acf7c5;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sobre-text p {
  font-size: 20px;
  line-height: 1.45;
  opacity: 0.92;
}

.exames-section {
  background: var(--cinza-bg);
  padding: 72px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 24px;
}

.exames-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.exame-card {
  background: var(--branco);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  flex: 0 0 calc(33.333% - 16px);
  box-sizing: border-box;
}

.exame-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.exame-icon-wrap {
  width: 52px;
  height: 52px;
  background: #536ded;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.exame-icon-wrap img { width: 28px; height: 28px; object-fit: contain; }

.exame-card h3 {
  font-size: 28px;
  font-weight: 500;
  color: var(--azul-escuro);
  margin-bottom: 8px;
}

.exame-card p {
  font-size: 14px;
  color: #111111;
  line-height: 1.45;
}

.solucoes-section {
  padding: 32px 0;
}

.solucoes-inner {
  background: #e8f5ee;
  border-radius: 20px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.solucoes-text h2 {
  font-size: 52px;
  font-weight: 500;
  color: var(--azul-escuro);
  line-height: 1.25;
  margin-bottom: 28px;
}

.solucoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.solucao-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: transparent;
  border-radius: var(--radius);
  padding: 12px 8px;
}

.solucao-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  background: #acf7cc;
  border-radius: 10px;
  padding: 6px;
  box-sizing: content-box;
}

.solucao-item span {
  font-size: 20px;
  font-weight: 500;
  color: var(--azul-escuro);
  line-height: 1.4;
}

.btn-solucoes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #536ded;
  color: var(--branco);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.btn-solucoes:hover { background-color: #3f58d4; }

.atendemos-section {
  padding: 32px 0;
  background: transparent;
}

.atendemos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  border-radius: 20px;
  padding: 16px;
}

.atendemos-text {
  padding: 40px;
  background: var(--branco);
  box-shadow: var(--shadow);
  border-radius: 30px;
}

.atendemos-text h2 {
  font-size: 35px;
  font-weight: 500;
  color: var(--azul-escuro);
  margin-bottom: 12px;
}

.atendemos-text > p {
  font-size: 16px;
  color: var(--cinza-texto);
  margin-bottom: 20px;
  line-height: 1.6;
}

.atendemos-label {
  font-weight: 700;
  color: var(--azul-escuro);
  font-size: 16px;
  margin-bottom: 16px;
}

.atendemos-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.atendemos-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--azul-escuro);
}

.seta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #acf7cc;
  border-radius: 50%;
}

.seta-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.atendemos-image-wrap {
  overflow: hidden;
  border-radius: 12px;
}

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

.faq-section {
  padding: 32px 0;
  background: transparent;
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 32px;
  font-weight: 500;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--branco);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Onest', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--azul-escuro);
  text-align: left;
  transition: background 0.15s;
}
.faq-question:hover { background: #f9fafb; }

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--verde);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
  font-size: 18px;
}

.faq-answer p {
  font-size: 18px;
  color: #111111;
  line-height: 1.25;
  padding-bottom: 20px;
}

/* Estado aberto */
.faq-open .faq-item,
.faq-item.faq-open {
  background: #eaf7ef;
}

.faq-open .faq-answer {
  max-height: 300px;
  border-top: 1px solid #5070a2;
  padding-top: 16px;
}

.faq-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-open .faq-question {
  background: #eaf7ef;
}

.cta-section {
  padding: 32px 0;
  background: transparent;
}

.cta-inner {
  text-align: center;
  color: var(--branco);
  background-image: url('/imagens/bg-cta.png');
  background-size: cover;
  border-radius: 40px;
  padding: 64px 48px;
}

.cta-inner h2 {
  font-size: 52px;
  font-weight: 500;
  color: #f6f9fb;
  line-height: 1.25;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner p {
  font-size: 22px;
  font-weight: 400;
  color: var(--branco);
  opacity: 0.92;
  margin-bottom: 32px;
}

.footer {
  background: #f8f9fb;
  padding: 56px 0 0;
}
 
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
}
 
.footer-logo {
  height: 60px;
  margin-bottom: 16px;
}
 
.footer-brand p {
  font-size: 16px;
  color: #111111;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 8px;
}
 
.footer-cnpj {
  font-size: 16px;
  color: #111111;
  margin-bottom: 16px !important;
}
 
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
 
.footer-social a img {
  width: 28px;
  height: 28px;
  transition: opacity 0.2s;
}
.footer-social a:hover img { opacity: 0.7; }
 
.footer-nav h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--azul-escuro);
  margin-bottom: 16px;
}
 
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
 
.footer-nav ul li a {
  font-size: 16px;
  color: #111111;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--verde); }
 
.footer-contact p {
  font-size: 16px;
  color: #111111;
  margin-bottom: 6px;
  line-height: 1.6;
}
 
.footer-bottom {
  padding: 16px 0;
}
 
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  min-height: 48px;
}
 
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}
 
.footer-bottom span {
  font-size: 14px;
  color: #111111;
}
 
.footer-dev {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
 
.footer-dev-logo {
  width: auto;
  display: block;
  margin-bottom: 5px;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image-wrap { order: -1; }
  .hero-actions { justify-content: center; }
  .hero-title { font-size: 2rem; }

  .sobre-inner {
    grid-template-columns: 1fr;
    background-size: cover;
    background-position: top center;
    min-height: 340px;
  }
  .sobre-image-wrap { display: none; }
  .sobre-text {
    padding: 32px 28px;
    background: rgba(0, 40, 120, 0.55);
    border-radius: 0;
    backdrop-filter: blur(2px);
    text-align: center;
  }
  .sobre-title { font-size: 2rem; }

  .exame-card { flex: 0 0 calc(50% - 12px); }

  .solucoes-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }
  .solucoes-text h2 { font-size: 2rem; }

  .atendemos-inner {
    grid-template-columns: 1fr;
  }
  .atendemos-text { text-align: center; }
  .atendemos-list { justify-content: center; }
  .atendemos-image-wrap { min-height: 280px; }

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

  .cta-inner {
    background-position: center;
    padding: 48px 28px;
    text-align: center;
  }
  .cta-inner h2 { font-size: 2rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-brand p { max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-nav ul { align-items: center; }
}

@media (max-width: 600px) {

  .header-bar { padding: 10px 16px; }
  .header-bar .btn-primary { display: none; }
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    background: var(--branco);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    z-index: 200;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--azul-escuro);
  }

  .hero-section { padding: 32px 0 40px; }
  .hero-title { font-size: 1.75rem; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hero-icon { width: 80px; height: 80px; }

  .sobre-section { padding: 20px 0; }
  .sobre-inner {
    min-height: 280px;
    border-radius: 14px;
  }
  .sobre-title { font-size: 1.6rem; }
  .sobre-text p { font-size: 16px; }

  .exames-section { padding: 40px 0; }
  .exame-card { flex: 0 0 100%; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 16px; }

  .solucoes-section { padding: 20px 0; }
  .solucoes-inner { padding: 32px 20px; }
  .solucoes-grid { grid-template-columns: 1fr; }
  .solucoes-text h2 { font-size: 1.75rem; }
  .solucao-item {
    align-items: center;
    text-align: center;
  }
  .solucao-item span { text-align: center; }
  .solucao-item img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    padding: 7px;
  }

  .atendemos-section { padding: 20px 0; }
  .atendemos-inner { padding: 8px; }
  .atendemos-text { padding: 24px 20px; }
  .atendemos-text h2 { font-size: 1.75rem; }
  .atendemos-list { grid-template-columns: 1fr; }
  .atendemos-image-wrap { min-height: 220px; border-radius: 14px; }

  .faq-section { padding: 20px 0; }
  .faq-question { font-size: 1rem; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }

  .cta-section { padding: 20px 0; }
  .cta-inner {
    padding: 48px 20px;
    border-radius: 14px;
  }
  .cta-inner h2 { font-size: 1.75rem; }
  .cta-inner p { font-size: 16px; }

  .footer { padding: 40px 0 0; }
  .footer-inner { padding-bottom: 24px; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
  .footer-bottom-left { align-items: center; }
}