/* ============================================
   CONQUISTA CORRETORA DE SEGUROS
   Stylesheet principal
   Identidade: Manual Seguralta v2.0
   ============================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #232323;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* VARIÁVEIS */
:root {
  --laranja: #FF6400;
  --laranja-escuro: #E55A00;
  --laranja-claro: #F0811A;
  --preto: #232323;
  --cinza: #464646;
  --cinza-claro: #F0F0F0;
  --branco: #FFFFFF;
  --wpp: #25D366;
  --container: 1200px;
  --pad: clamp(20px, 5vw, 32px);
}

/* CONTAINER */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }

/* TIPOGRAFIA */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--laranja);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* =============== CABEÇALHO =============== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid #F0F0F0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
.logo-conquista img { height: 64px; transition: height 0.2s; }
@media (max-width: 767px) {
  .logo-conquista img { height: 52px; }
}

.nav-desktop { display: none; gap: 32px; }
.nav-desktop a {
  font-size: 15px;
  font-weight: 500;
  color: var(--preto);
  position: relative;
  transition: color 0.2s;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--laranja); }
.nav-desktop a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--laranja);
}

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

.franquia-selo {
  display: none;
  align-items: center;
  gap: 10px;
  padding-right: 18px;
  border-right: 1px solid #E0E0E0;
}
.franquia-selo .label {
  font-size: 9px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
  text-align: right;
  line-height: 1.3;
  text-transform: uppercase;
}
.franquia-selo .label strong { color: #666; }
.franquia-selo img { height: 48px; }
.franquia-selo a { display: flex; align-items: center; gap: 10px; transition: opacity 0.2s; }
.franquia-selo a:hover { opacity: 0.75; }

.btn-wpp {
  background: var(--wpp);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wpp:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.btn-wpp svg { width: 18px; height: 18px; }
.btn-wpp .btn-label { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--preto);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Nav mobile */
.nav-mobile {
  display: none;
  position: fixed;
  top: 73px;
  left: 0; right: 0;
  background: white;
  padding: 24px var(--pad);
  border-bottom: 1px solid #F0F0F0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  z-index: 99;
}
.nav-mobile.active { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #F5F5F5;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.active { color: var(--laranja); }

.franquia-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  margin-top: 12px;
  border-top: 1px solid #F0F0F0;
}
.franquia-mobile .label {
  font-size: 10px;
  font-weight: 500;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.franquia-mobile img { height: 36px; }
.franquia-mobile a { display: flex; align-items: center; gap: 10px; }

/* =============== HERO =============== */
.hero {
  background: linear-gradient(135deg, #232323 0%, #1a1a1a 100%);
  color: white;
  padding: clamp(60px, 10vw, 100px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,100,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--laranja); }
.hero p {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 36px;
  opacity: 0.95;
}
.hero-cta {
  background: var(--laranja);
  color: white;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 100, 0, 0.4);
}

.hero-operadoras {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-operadoras p {
  font-size: 11px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  opacity: 0.6;
  text-transform: uppercase;
}
.operadoras-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
}
.operadoras-list span { white-space: nowrap; }

/* =============== SEÇÕES GERAIS =============== */
.section { padding: clamp(60px, 9vw, 96px) 0; }
.section-light { background: #FAFAFA; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 17px;
  color: var(--cinza);
  max-width: 600px;
  margin: 0 auto;
}

/* =============== PRODUTOS =============== */
.produtos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.produto-card {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
}
.produto-card:hover {
  border-color: var(--laranja);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.produto-card.destaque {
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-claro) 100%);
  color: white;
  border: none;
}
.produto-card.destaque .produto-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.25);
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.produto-card h3 { font-size: 22px; margin-bottom: 12px; font-weight: 700; }
.produto-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.85;
}
.produto-card .produto-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.produto-card .produto-link:hover { gap: 10px; }
.produto-card:not(.destaque) .produto-link { color: var(--laranja); }
.produto-card .produto-icon { font-size: 32px; margin-bottom: 16px; opacity: 0.9; }

/* =============== POR QUE NÓS =============== */
.porque-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.porque-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.porque-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--laranja);
  color: white;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 700;
}
.porque-item h3 { font-size: 20px; font-weight: 600; }
.porque-item p { font-size: 15px; color: var(--cinza); }

/* =============== COMO FUNCIONA =============== */
.passos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.passo-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #F0F0F0;
  position: relative;
}
.passo-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--laranja);
  color: white;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 16px;
}
.passo-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.passo-card p { font-size: 14px; color: var(--cinza); }

/* =============== CTA SECTION =============== */
.cta-section {
  background: var(--laranja);
  color: white;
  text-align: center;
  padding: clamp(64px, 9vw, 96px) var(--pad);
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.cta-section .btn-cta-final {
  background: white;
  color: var(--laranja);
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}
.cta-section .btn-cta-final:hover { transform: translateY(-2px); }

/* =============== FOOTER =============== */
.footer {
  background: var(--preto);
  color: white;
  padding: 64px var(--pad) 24px;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-footer { height: 60px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 320px;
}
.footer h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--laranja);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a, .footer p.info {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  transition: color 0.2s;
}
.footer a:hover { color: var(--laranja); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-franquia {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-franquia .label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-franquia img { height: 56px; }
.footer-franquia a { display: flex; align-items: center; gap: 16px; transition: opacity 0.2s; }
.footer-franquia a:hover { opacity: 0.85; }

/* =============== BOTÃO WHATSAPP FLUTUANTE =============== */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--wpp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform 0.2s;
}
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 30px; height: 30px; fill: white; }
.wpp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wpp);
  opacity: 0.6;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* =============== LANDING SAÚDE PJ =============== */
.landing-hero {
  background: linear-gradient(135deg, #232323 0%, #1a1a1a 100%);
  color: white;
  padding: clamp(60px, 10vw, 100px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,100,0,0.12) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.landing-hero-content { position: relative; max-width: 820px; margin: 0 auto; }

.problema-solucao {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
.problema-card, .solucao-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid #F0F0F0;
}
.problema-card { border-left: 4px solid #FF4444; }
.solucao-card { border-left: 4px solid var(--laranja); }
.problema-card h3, .solucao-card h3 { font-size: 22px; margin-bottom: 16px; }
.problema-card p, .solucao-card p { font-size: 16px; color: var(--cinza); }

.comparacao-tabela {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #F0F0F0;
  margin: 0 auto;
  max-width: 720px;
}
.comparacao-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid #F5F5F5;
  align-items: center;
}
.comparacao-row:last-child { border-bottom: none; }
.comparacao-row.header {
  background: #FAFAFA;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cinza);
}
.comparacao-row.destaque {
  background: linear-gradient(90deg, rgba(255,100,0,0.05) 0%, rgba(255,100,0,0.1) 100%);
  font-weight: 600;
}
.comparacao-row .col-empresarial { color: var(--laranja); font-weight: 600; }

.faq-item {
  background: white;
  border: 1px solid #F0F0F0;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--preto);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.2s;
}
.faq-question:hover { background: #FAFAFA; }
.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--laranja);
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* =============== RESPONSIVO =============== */
@media (min-width: 768px) {
  .btn-wpp .btn-label { display: inline; }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); }
  .porque-grid { grid-template-columns: repeat(2, 1fr); }
  .passos-grid { grid-template-columns: repeat(2, 1fr); }
  .problema-solucao { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .franquia-selo { display: flex; }
  .menu-toggle { display: none; }
  .produtos-grid { grid-template-columns: repeat(3, 1fr); }
  .produto-card.destaque { grid-row: span 1; }
  .passos-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============== NÚMEROS INSTITUCIONAIS (SEGURALTA) =============== */
.numeros-section {
  background: #FAFAFA;
  padding: clamp(48px, 7vw, 72px) var(--pad);
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}
.numeros-header {
  text-align: center;
  margin-bottom: 40px;
}
.numeros-header .eyebrow { margin-bottom: 12px; }
.numeros-header p {
  font-size: 16px;
  color: var(--cinza);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.numero-item .numero {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: var(--laranja);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.numero-item .descricao {
  font-size: 13px;
  font-weight: 500;
  color: var(--cinza);
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .numeros-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* =============== SEGURADORAS PARCEIRAS =============== */
.seguradoras-section {
  padding: clamp(48px, 7vw, 64px) var(--pad);
  background: white;
}
.seguradoras-header {
  text-align: center;
  margin-bottom: 32px;
}
.seguradoras-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 32px;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(14px, 1.7vw, 17px);
  font-weight: 600;
  color: var(--cinza);
}
.seguradoras-list span:not(.bullet) { padding: 6px 0; }
.seguradoras-list .bullet {
  color: var(--laranja);
  font-weight: 400;
  opacity: 0.5;
}
.seguradoras-mais {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--cinza);
  font-style: italic;
}

/* =============== TRIPLA DOR (LANDING SAÚDE) =============== */
.dores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.dor-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #F0F0F0;
  border-left: 4px solid var(--laranja);
  transition: transform 0.2s, box-shadow 0.2s;
}
.dor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.dor-card .dor-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.dor-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--preto);
}
.dor-card p {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .dores-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============== EXTRAS EMPRESARIAL (LANDING) =============== */
.extra-empresa {
  background: linear-gradient(135deg, #232323 0%, #1a1a1a 100%);
  color: white;
  border-radius: 20px;
  padding: 48px clamp(24px, 4vw, 56px);
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.extra-empresa::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,100,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.extra-empresa .eyebrow {
  color: var(--laranja);
  margin-bottom: 16px;
}
.extra-empresa h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 720px;
}
.extra-empresa p {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.9;
  max-width: 720px;
  line-height: 1.7;
}

/* =============== LINKS DE LOGO =============== */
.logo-link { transition: opacity 0.2s; display: inline-flex; align-items: center; }
.logo-link:hover { opacity: 0.85; }
