/* Field Seguros — reconstrução estática fiel ao site WordPress original */

:root {
  --primary: #2A70ED;
  --secondary: #253452;
  --text: #6F747E;
  --accent: #2DDE98;
  --navy: #004094;
  --teal: #55C4D0;
  --magenta: #92278F;
  --yellow: #EBAF04;
  --light: #EFF6FE;
  --gray-border: #E7EBF0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: var(--primary); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

/* ============ TOPBAR ============ */
.topbar {
  background: #fff;
  padding: 14px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.topbar-logo img { width: 220px; }

.topbar-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.topbar-info + .topbar-info { margin-left: 0; }

.topbar-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.topbar-icon svg { width: 22px; height: 22px; }

.topbar-text h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
}

.topbar-text p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  font-family: inherit;
  cursor: pointer;
}

.btn-whats-top {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 6px;
}

.btn-whats-top svg { width: 18px; height: 18px; }

.btn-whats-top:hover { background: var(--navy); }

/* ============ NAVBAR ============ */
.navbar {
  background: #fff;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  min-height: 56px;
}

.nav-toggle { display: none; background: none; border: none; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--secondary);
  padding: 18px 0;
  display: inline-block;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

.nav-social {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social span {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: .5px;
}

.nav-social a {
  color: var(--primary);
  display: flex;
}

.nav-social svg { width: 17px; height: 17px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .5s ease;
  transform: scale(1);
}

.hero-slide.is-active {
  opacity: 1;
  animation: kenburns 10s ease-out forwards;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(60deg, #004094 0%, #55C4D0 70%);
  opacity: .7;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 120px;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 4px;
}

.hero-btn:hover { opacity: .9; }

.btn-navy { background: var(--navy); }
.btn-magenta { background: var(--magenta); }
.btn-teal { background: var(--teal); }
.btn-yellow { background: var(--yellow); }

/* ============ CARDS ============ */
.cards-section {
  background: #fff;
  position: relative;
  z-index: 3;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -90px;
  padding-bottom: 40px;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(37, 52, 82, .1);
  padding: 24px 18px;
  text-align: center;
}

.card-img {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
}

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

.card h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* ============ CONTADORES ============ */
.counters {
  background: var(--light);
  padding: 60px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-icon {
  display: inline-flex;
  color: var(--primary);
}

.counter-icon svg { width: 52px; height: 52px; }

.counter-num {
  font-size: 34px;
  font-weight: 700;
  color: var(--secondary);
  margin: 8px 0 2px;
}

.counter h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

/* ============ SEÇÕES ============ */
.section-title-band {
  background: #fff;
  padding: 70px 0 10px;
  text-align: center;
}

.section-title-band h2 {
  font-size: 48px;
  font-weight: 500;
  color: var(--secondary);
}

.section-title-band .subtitle {
  margin-top: 8px;
  color: var(--text);
}

.section-h2 {
  font-size: 48px;
  font-weight: 500;
  color: var(--secondary);
  line-height: 1.15;
  margin-bottom: 22px;
}

.list-title {
  font-size: 22px;
  font-weight: 400;
  color: var(--secondary);
  margin: 26px 0 14px;
}

.saude-content { padding: 40px 0 60px; }

.section-alt {
  background: var(--light);
  padding: 80px 0;
}

.section-plain {
  background: #fff;
  padding: 80px 0;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-cols p { margin-bottom: 16px; }

.feature-img { margin-bottom: 24px; }

/* Caixas de destaque */
.info-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #F4F8FD;
  border-radius: 8px;
  padding: 24px;
  margin: 20px 0;
}

.info-box-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 52, 82, .08);
}

.info-box-icon svg { width: 34px; height: 34px; }

.info-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.35;
}

/* Listas */
.check-list, .dot-list { list-style: none; }

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  background: var(--secondary);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center / contain no-repeat;
}

.dot-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}

.dot-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--text);
}

.dot-list.spaced li { margin-bottom: 14px; }

/* Vídeos */
.video-circles {
  display: flex;
  gap: 28px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.video-circle {
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
}

.video-circle .circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background .2s, color .2s;
}

.video-circle .circle svg { width: 22px; height: 22px; margin-left: 3px; }

.video-circle:hover .circle {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.video-circle .label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.video-circle.inline {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  margin-top: 10px;
}

.video-circle.inline .circle {
  margin: 0;
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  width: 58px;
  height: 58px;
}

.video-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-block;
  margin-top: 12px;
}

.video-link:hover { text-decoration: underline; }

/* ============ PRODUTOS PARCEIROS ============ */
.partner-box {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(37, 52, 82, .08);
  padding: 36px 40px;
  margin-top: 50px;
}

.section-alt .partner-box { box-shadow: none; }

.partner-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--light);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.partner-box h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.partner-box h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
}

.partner-box > p {
  margin-bottom: 20px;
  max-width: 760px;
}

.partner-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 8px;
}

.partner-note {
  font-size: 14px;
  color: var(--text);
  margin-top: 14px;
}

.partner-btn {
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  margin-top: 16px;
}

.partner-btn:hover { background: var(--navy); }

.partner-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.partner-actions .video-circle.inline { margin-top: 16px; }

@media (max-width: 767px) {
  .partner-box { padding: 26px 22px; }
  .partner-cols { grid-template-columns: 1fr; gap: 20px; }
  .partner-box h3 { font-size: 23px; }
}

/* ============ CTA ============ */
.cta-band {
  background: #fff;
  padding: 40px 0;
}

.section-alt + .cta-band,
.section-plain + .cta-band { background: #fff; }

.cta-bar {
  display: block;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 20px;
  border-radius: 4px;
  transition: background .2s;
}

.cta-bar:hover { background: #24c987; }

/* ============ ATENDIMENTO ============ */
.atendimento {
  background: linear-gradient(180deg, #E3F8FF 0%, #fff 100%);
  padding: 70px 0;
}

.atendimento-text {
  max-width: 640px;
  margin-bottom: 30px;
}

.contact-list { list-style: none; }

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--secondary);
  font-weight: 500;
}

.contact-list a { color: var(--secondary); }

.contact-list a:hover { color: var(--primary); }

.contact-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-icon svg { width: 19px; height: 19px; }

/* ============ RODAPÉ ============ */
.footer {
  background: var(--navy);
  padding: 46px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer img { width: 220px; }

.footer p, .footer a {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.footer a:hover { color: #fff; }

/* ============ WHATSAPP FLUTUANTE ============ */
.whats-float {
  position: fixed;
  right: 22px;
  bottom: 50%;
  transform: translateY(50%);
  width: 54px;
  height: 54px;
  background: #2AC688;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  z-index: 90;
}

.whats-float svg { width: 30px; height: 30px; }

.whats-float:hover { background: #24b57b; }

/* ============ MODAL DE VÍDEO ============ */
.video-modal[hidden] { display: none; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 39, .85);
}

.video-modal-box {
  position: relative;
  width: min(900px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
}

.video-modal-content, .video-modal-content iframe, .video-modal-content video {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 6px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: -6px;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .topbar-info { display: none; }
  .topbar-inner { justify-content: space-between; }
  .btn-whats-top { margin-left: auto; }
  .hero-content h2 { font-size: 38px; }
  .section-h2, .section-title-band h2 { font-size: 38px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .two-cols { gap: 40px; }
}

@media (max-width: 767px) {
  .navbar-inner { min-height: 52px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    display: block;
  }
  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--gray-border);
    box-shadow: 0 12px 24px rgba(37, 52, 82, .12);
    z-index: 100;
    padding: 8px 20px;
  }
  .navbar { position: relative; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 0; }
  .nav-social span { display: none; }
  .hero { min-height: 440px; }
  .hero-content h2 { font-size: 30px; }
  .hero-btn { font-size: 14px; padding: 12px 20px; }
  .cards-grid { grid-template-columns: 1fr; margin-top: -60px; }
  .counters-grid { grid-template-columns: 1fr; gap: 36px; }
  .two-cols { grid-template-columns: 1fr; gap: 30px; }
  .section-h2, .section-title-band h2 { font-size: 30px; }
  .section-alt, .section-plain { padding: 50px 0; }
  .cta-bar { font-size: 15px; }
  .footer-inner { justify-content: center; text-align: center; }
}
