/* ============================================
   Ponto Care — Identidade Visual
   Teal #2BB5A8 → Azul #1E3D8F
   ============================================ */

:root {
  --teal: #2bb5a8;
  --teal-light: #4fd1c5;
  --teal-soft: #e6f7f5;
  --blue: #1e3d8f;
  --blue-dark: #142a63;
  --ink: #1a2332;
  --gray: #5a6678;
  --gray-light: #f4f7fa;
  --white: #ffffff;
  --gradient: linear-gradient(120deg, var(--teal) 0%, var(--blue) 100%);
  --gradient-soft: linear-gradient(120deg, rgba(43, 181, 168, 0.08) 0%, rgba(30, 61, 143, 0.08) 100%);
  --shadow: 0 8px 30px rgba(20, 42, 99, 0.10);
  --shadow-lg: 0 20px 60px rgba(20, 42, 99, 0.16);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--blue); }

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

/* ============ TOP BAR (dados da empresa) ============ */
.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 28px;
}
.topbar span { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar a { color: inherit; }
.topbar a:hover { color: var(--teal-light); }
.topbar svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.85; }

/* ============ HEADER / NAV ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 61, 143, 0.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(30, 61, 143, 0.25);
}
.brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--teal); }
.nav .btn-nav {
  background: var(--gradient);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(43, 181, 168, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav .btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(43, 181, 168, 0.45); color: var(--white); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--gradient);
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.hero::before { width: 480px; height: 480px; top: -180px; right: -120px; }
.hero::after { width: 320px; height: 320px; bottom: -140px; left: -80px; }
.hero .container { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn svg { width: 20px; height: 20px; }
.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn-white:hover { transform: translateY(-3px); color: var(--blue); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); color: var(--white); transform: translateY(-3px); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 700; }
.hero-stat span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.78); }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-alt { background: var(--gray-light); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}
.section-head p { color: var(--gray); font-size: 1.05rem; }

/* ============ SOBRE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: 22px;
}
.about-text p { color: var(--gray); margin-bottom: 18px; }
.about-text strong { color: var(--ink); }
.about-visual {
  background: var(--gradient);
  border-radius: 28px;
  padding: 48px 40px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.about-visual h3 { font-size: 1.3rem; margin-bottom: 28px; }
.pillar { display: flex; gap: 18px; margin-bottom: 26px; }
.pillar:last-child { margin-bottom: 0; }
.pillar-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar strong { display: block; font-size: 1.02rem; margin-bottom: 3px; }
.pillar span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.82); }

/* ============ SERVIÇOS ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(30, 61, 143, 0.07);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(43, 181, 168, 0.3);
}
.card-icon svg { width: 28px; height: 28px; color: var(--white); }
.card h3 { font-size: 1.15rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 12px; }
.card p { color: var(--gray); font-size: 0.93rem; }

/* ============ FRANQUIA ============ */
.franchise {
  background: var(--gradient);
  border-radius: 32px;
  padding: 72px 56px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.franchise h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.25; margin-bottom: 20px; }
.franchise p { color: rgba(255, 255, 255, 0.88); margin-bottom: 16px; }
.franchise-list { list-style: none; }
.franchise-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.franchise-list li:last-child { margin-bottom: 0; }
.franchise-list svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.franchise .btn { margin-top: 12px; }

/* ============ DESTAQUE ============ */
.highlight {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border-radius: 24px;
  border: 1px solid rgba(30, 61, 143, 0.08);
  box-shadow: var(--shadow);
  padding: 48px 56px;
}
.highlight-icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(43, 181, 168, 0.35);
}
.highlight-icon svg { width: 44px; height: 44px; color: var(--white); }
.highlight h3 { font-size: 1.35rem; color: var(--blue-dark); margin-bottom: 10px; }
.highlight p { color: var(--gray); }

/* ============ CONTATO ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(30, 61, 143, 0.07);
  border-radius: var(--radius);
  padding: 38px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.contact-card:hover { transform: translateY(-5px); }
.contact-card .card-icon { margin: 0 auto 22px; }
.contact-card h3 { font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 10px; }
.contact-card p, .contact-card a { color: var(--gray); font-size: 0.93rem; }
.contact-card a:hover { color: var(--teal); }

.socials { display: flex; justify-content: center; gap: 18px; margin-top: 52px; }
.socials a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(43, 181, 168, 0.3);
  transition: transform 0.2s;
}
.socials a:hover { transform: translateY(-4px) scale(1.06); color: var(--white); }
.socials svg { width: 24px; height: 24px; }

/* ============ FOOTER ============ */
.footer { background: var(--blue-dark); color: rgba(255, 255, 255, 0.8); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 11px; }
.footer-brand span { font-weight: 700; font-size: 1.15rem; color: var(--white); }
.footer p { font-size: 0.88rem; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; font-size: 0.88rem; }
.footer ul a { color: rgba(255, 255, 255, 0.8); }
.footer ul a:hover { color: var(--teal-light); }
.footer-info li { display: flex; gap: 10px; align-items: flex-start; }
.footer-info svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 4px; color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============ PÁGINAS LEGAIS ============ */
.legal-hero {
  background: var(--gradient);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 12px; }
.legal-hero p { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; }
.legal-body { max-width: 860px; margin: 0 auto; padding: 72px 24px 96px; }
.legal-body h2 {
  font-size: 1.35rem;
  color: var(--blue-dark);
  margin: 44px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-soft);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.05rem; color: var(--blue); margin: 26px 0 12px; }
.legal-body p { color: var(--gray); margin-bottom: 14px; font-size: 0.95rem; }
.legal-body ul, .legal-body ol { margin: 0 0 16px 24px; color: var(--gray); font-size: 0.95rem; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); }
.legal-meta {
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
  margin-bottom: 36px;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 960px) {
  .cards-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .franchise { grid-template-columns: 1fr; }
  .franchise { padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .highlight { flex-direction: column; text-align: center; padding: 40px 28px; }
}

@media (max-width: 720px) {
  .topbar .container { gap: 4px 16px; font-size: 0.72rem; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav.open { max-height: 480px; }
  .nav a { padding: 15px 24px; border-bottom: 1px solid var(--gray-light); }
  .nav .btn-nav { margin: 16px 24px; border-radius: 14px; }
  .cards-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 88px; }
  .hero-stats { gap: 36px; }
  .section { padding: 64px 0; }
}
