/* ═══════════════════════════════════════════════════════════
   Ponto Pet Club — css/main.css
   Sora · #DD2D42 · gerado por rewrite-website
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --primary:        #DD2D42;
  --primary-dark:   #b8212f;
  --primary-light:  #fde8eb;
  --secondary:      #F1C202;
  --header-bg:      #331F21;
  --shadow-primary: 0 8px 32px rgba(221,45,66,.2);

  --dark:         #111827;
  --dark-2:       #1f2937;
  --text:         #111827;
  --text-soft:    #6B7280;
  --text-lighter: #9CA3AF;
  --bg:           #FFFFFF;
  --bg-alt:       #F9FAFB;
  --border:       #E5E7EB;

  --header-h:  72px;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --t:         all .28s ease;
  --max-w:     1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { font-size: 16px; scroll-behavior: smooth; }
body   { font-family: 'Sora', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img    { display: block; max-width: 100%; height: auto; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container   { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 28px; }
.section     { padding-block: 96px; background: var(--bg); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--header-bg); }
section[id]  { scroll-margin-top: calc(var(--header-h) + 8px); }
.grid-2         { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.grid-2-reverse { grid-template-columns: 1fr 1.1fr; }

.section-header   { text-align: center; margin-bottom: 56px; }
.section-label    { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.section-title    { font-size: clamp(1.65rem, 3vw, 2.2rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
.section-subtitle { font-size: .98rem; color: var(--text-soft); max-width: 580px; margin-inline: auto; line-height: 1.75; }
.section-label-dark    { display: inline-block; background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.section-title-dark    { font-size: clamp(1.65rem, 3vw, 2.2rem); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; }
.section-subtitle-dark { font-size: .98rem; color: rgba(255,255,255,.65); max-width: 580px; margin-inline: auto; line-height: 1.75; }

.animate-in         { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.animate-in.visible { opacity: 1; transform: none; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: 'Sora', sans-serif; font-size: .9rem; font-weight: 700; transition: var(--t); white-space: nowrap; }
.btn i { width: 17px; height: 17px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.18); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.btn-header { background: #fff; color: var(--header-bg); padding: 10px 20px; font-size: .82rem; font-weight: 700; border-radius: 50px; box-shadow: 0 2px 12px rgba(0,0,0,.12); transition: var(--t); display: inline-flex; align-items: center; gap: 7px; }
.btn-header i { width: 15px; height: 15px; }
.btn-header:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 16px 36px; border-radius: 50px; font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; box-shadow: 0 6px 24px rgba(37,211,102,.4); transition: var(--t); }
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); }

.header            { position: sticky; top: 0; z-index: 1000; height: var(--header-h); background: var(--header-bg); transition: box-shadow .3s; }
.page-home .header { position: fixed; inset: 0 0 auto; }
.hero              { padding-top: var(--header-h); }
.header.scrolled   { box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav      { display: flex; align-items: center; height: var(--header-h); }
.nav-logo { flex-shrink: 0; margin-right: auto; }
.nav-logo img { height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-right: 20px; }
.nav-link { font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.85); padding: 6px 12px; border-radius: 7px; transition: var(--t); background: none; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--header-bg); border-radius: 8px; min-width: 200px; box-shadow: 0 8px 28px rgba(0,0,0,.28); z-index: 200; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-item { display: block; padding: 11px 18px; font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.82); }
.nav-dropdown-item:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-dropdown-item-active { background: rgba(255,255,255,.12); color: #fff !important; }
.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; margin-left: 12px; }
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: var(--t); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero            { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg         { position: absolute; inset: 0; z-index: 0; }
.hero-bg img     { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay    { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(51,31,33,.85) 0%, rgba(51,31,33,.6) 60%, rgba(51,31,33,.2) 100%); }
.hero-content    { position: relative; z-index: 1; padding-block: 80px; }
.hero-text-inner { max-width: 620px; }
.hero-title      { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 28px; letter-spacing: -.02em; }
.hero-actions    { display: flex; flex-wrap: wrap; gap: 12px; }

.footer         { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-content { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 52px; padding-block: 64px; }
.footer-logo    { height: 60px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; line-height: 1.65; margin-bottom: 18px; }
.footer-contato h4, .footer-nav h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-contato p   { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 10px; }
.footer-contato i   { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.footer-contato a:hover { color: #fff; }
.footer-nav ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a   { font-size: .85rem; transition: var(--t); }
.footer-nav a:hover { color: #fff; padding-left: 6px; }
.footer-bottom  { border-top: 1px solid rgba(255,255,255,.08); padding-block: 20px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-credit  { color: rgba(255,255,255,.35) !important; }
.footer-credit strong { color: rgba(255,255,255,.55); }

.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 22px rgba(37,211,102,.55); z-index: 999; transition: var(--t); }
.whatsapp-float:hover { transform: scale(1.1); }

/* ══ SEÇÕES ESPECÍFICAS ══════════════════════════════════════ */

/* Especialidades */
.espec-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.espec-card-pet { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: var(--t); text-align: center; }
.espec-card-pet:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.espec-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--primary); }
.espec-icon i { width: 20px; height: 20px; }
.espec-card-pet h3 { font-size: .9rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.espec-card-pet p  { font-size: .78rem; color: var(--text-soft); line-height: 1.6; }

/* Vantagens dark */
.vant-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vant-card-dark { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px; text-align: center; transition: var(--t); }
.vant-card-dark:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.vant-icon-dark { width: 52px; height: 52px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: #fff; }
.vant-icon-dark i { width: 22px; height: 22px; }
.vant-card-dark p { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.65; }

/* Planos tipo (home) */
.planos-tipo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 760px; margin-inline: auto; }
.plano-tipo-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; text-align: center; background: var(--bg); transition: var(--t); }
.plano-tipo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.plano-tipo-icon { width: 64px; height: 64px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary); }
.plano-tipo-icon i { width: 28px; height: 28px; }
.plano-tipo-card h2 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.plano-tipo-card h4 { font-size: .88rem; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.plano-tipo-card p  { font-size: .88rem; color: var(--text-soft); line-height: 1.65; }

/* Parceiros */
.parceiros-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; }
.parceiros-grid img { width: 100%; height: 52px; object-fit: contain; filter: grayscale(1); opacity: .6; transition: var(--t); }
.parceiros-grid img:hover { filter: grayscale(0); opacity: 1; }

/* CTA */
.section-cta { background: var(--primary); }
.cta-block { text-align: center; max-width: 640px; margin-inline: auto; }
.cta-block h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.cta-block p  { font-size: .98rem; color: rgba(255,255,255,.85); margin-bottom: 28px; line-height: 1.7; }

/* Plans grid 3-col (subpáginas) */
.plans-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; margin-bottom: 28px; }
.plan-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; background: var(--bg); box-shadow: var(--shadow-sm); transition: var(--t); position: relative; }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.destaque { border-color: var(--primary); box-shadow: var(--shadow-primary); transform: translateY(-8px); }
.plan-card.destaque:hover { transform: translateY(-12px); }
.plan-popular { position: absolute; top: 0; left: 50%; transform: translate(-50%, -1px); background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 16px; border-radius: 0 0 8px 8px; }
.plan-header  { padding: 28px 24px 16px; border-bottom: 1px solid var(--border); }
.plan-card.destaque .plan-header { background: var(--primary-light); }
.plan-name    { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.plan-tagline { font-size: .82rem; color: var(--text-soft); }
.plan-body    { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.plan-price   { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.price-prefix { font-size: .95rem; font-weight: 700; color: var(--dark); }
.price-value  { font-size: 2.4rem; font-weight: 900; color: var(--dark); line-height: 1; letter-spacing: -.03em; }
.price-period { font-size: .82rem; font-weight: 600; color: var(--text-soft); margin-left: 2px; }
.plan-card.destaque .price-value, .plan-card.destaque .price-prefix { color: var(--primary); }
.plan-payment-label { font-size: .75rem; color: var(--text-lighter); margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.plan-benefits { display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 20px; }
.plan-benefits li { display: flex; align-items: flex-start; gap: 9px; font-size: .85rem; color: var(--text-soft); line-height: 1.5; }
.plan-benefits li i { flex-shrink: 0; width: 16px; height: 16px; color: var(--primary); stroke-width: 2.5; margin-top: 1px; }
.plan-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.plan-action-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: var(--radius-sm); background: var(--bg-alt); border: 1px solid var(--border); font-size: .8rem; font-weight: 600; color: var(--dark); transition: var(--t); }
.plan-action-link:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.plan-action-link i { width: 14px; height: 14px; }
.plan-action-pix { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); }

/* Aviso box */
.aviso-box { display: flex; align-items: flex-start; gap: 14px; background: #FFF8E1; border: 1px solid #F1C202; border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 32px; }
.aviso-box i { width: 18px; height: 18px; color: #9a7c00; flex-shrink: 0; margin-top: 2px; }
.aviso-box p { font-size: .85rem; color: #5a4a00; line-height: 1.6; }

/* Nav active */
.nav-link-active { background: rgba(255,255,255,.2) !important; color: #fff !important; }

/* ══ RESPONSIVO ═════════════════════════════════════════════ */
@media (max-width: 960px) {
  .grid-2, .grid-2-reverse { grid-template-columns: 1fr; gap: 44px; }
  .espec-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .vant-grid    { grid-template-columns: repeat(2, 1fr); }
  .parceiros-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .nav-dropdown-menu { position: static; box-shadow: none; background: rgba(255,255,255,.08); border-radius: 6px; margin-top: 4px; display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
}

@media (max-width: 640px) {
  .section { padding-block: 60px; }
  .nav-menu { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--header-bg); flex-direction: column; gap: 0; padding: 12px 0 20px; border-bottom: 1px solid rgba(255,255,255,.1); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; padding: 12px 28px; border-radius: 0; font-size: .95rem; color: rgba(255,255,255,.85); }
  .nav-link:hover { background: rgba(255,255,255,.1); color: #fff; }
  .btn-header { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 100svh; }
  .hero-content { padding-block: 48px; }
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .espec-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .vant-grid    { grid-template-columns: 1fr 1fr; }
  .planos-tipo-grid { grid-template-columns: 1fr; }
  .parceiros-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}
