/* =============================================
   QuickVet — Landing Page Stylesheet
   Fernandes Tecnologia e Software Ltda
   ============================================= */

:root {
  --limao: #C8D700;
  --vinho: #7D3260;
  --branco: #FFFFFF;
  --preto: #111111;
  --cz: #F6F6F6;
  --czm: #E2E2E2;
  --czt: #666666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--preto); background: var(--branco); overflow-x: hidden; }

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--limao);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 8px; }
.nav-logo-img { height: 36px; width: auto; }
.nav-logo-txt { font-size: 1.5rem; font-weight: 900; color: var(--limao); letter-spacing: -0.5px; display: none; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--preto); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--vinho); }
.btn-login {
  background: var(--vinho) !important; color: #fff !important;
  padding: 9px 24px; border-radius: 50px; font-weight: 800 !important;
  transition: all 0.2s !important;
}
.btn-login:hover { background: #5c2448 !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(125,50,96,0.35) !important; }
.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.ham span { display: block; width: 24px; height: 3px; background: var(--preto); border-radius: 2px; transition: all 0.3s; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh; background: #0d0d0d;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5% 60px; position: relative; overflow: hidden;
}
.hero-bg-circle {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(200,215,0,0.07) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-line1 {
  position: absolute; top: 28%; left: -5%; width: 110%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,215,0,0.12), transparent);
  transform: rotate(-6deg); pointer-events: none;
}
.hero-line2 {
  position: absolute; top: 68%; left: -5%; width: 110%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125,50,96,0.15), transparent);
  transform: rotate(-6deg); pointer-events: none;
}
.hero-wrap { display: flex; align-items: center; gap: 56px; max-width: 1160px; width: 100%; position: relative; z-index: 2; }
.hero-left { flex: 1; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,215,0,0.1); border: 1px solid rgba(200,215,0,0.25);
  color: var(--limao); padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.pulse-dot { display: inline-block; width: 7px; height: 7px; background: var(--limao); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.8)} }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--limao); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--limao); color: var(--preto); padding: 14px 32px;
  border-radius: 50px; font-weight: 800; font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-primary:hover { background: #d4e600; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(200,215,0,0.3); }
.btn-ghost {
  background: transparent; color: #fff; padding: 14px 32px;
  border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2); transition: all 0.25s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--limao); color: var(--limao); transform: translateY(-3px); }

/* Hero Direita */
.hero-right { flex: 0 0 440px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-logo-box {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,215,0,0.18);
  border-radius: 20px; padding: 28px 36px; width: 100%;
}
.hero-logo-box img { max-width: 260px; width: 100%; height: auto; }
.hero-logo-fallback { font-size: 2rem; font-weight: 900; color: var(--limao); }
.hero-video-box {
  width: 100%; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(200,215,0,0.18); background: #000; position: relative;
}
.hero-video-box video { width: 100%; display: block; }
.video-label {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.65); color: var(--limao);
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 14px; border-radius: 50px; white-space: nowrap;
}

/* =============================================
   STRIP
   ============================================= */
.strip { background: var(--limao); padding: 22px 5%; }
.strip-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 14px; }
.strip-item { text-align: center; }
.strip-num { font-size: 2rem; font-weight: 900; color: var(--preto); line-height: 1; }
.strip-label { font-size: 0.73rem; font-weight: 700; color: rgba(0,0,0,0.55); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.strip-div { width: 1px; height: 34px; background: rgba(0,0,0,0.15); }

/* =============================================
   SEÇÕES — BASE
   ============================================= */
section { padding: 80px 5%; }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.sec-tag {
  display: inline-block; background: rgba(200,215,0,0.1); color: #7a8500;
  border: 1px solid rgba(200,215,0,0.35); padding: 4px 14px; border-radius: 50px;
  font-size: 0.73rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.sec-tag-dark { background: rgba(200,215,0,0.12); color: var(--limao); border-color: rgba(200,215,0,0.25); }
.sec-title { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.sec-title-light { color: #fff; }
.sec-sub { font-size: 1rem; color: var(--czt); line-height: 1.7; max-width: 540px; }
.sec-sub-light { color: rgba(255,255,255,0.55); }

/* =============================================
   FEATURES
   ============================================= */
.features { background: var(--cz); }
.features-head { text-align: center; margin-bottom: 52px; }
.features-head .sec-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 22px; }
.feat-card {
  background: var(--branco); border-radius: 18px; padding: 28px;
  border: 1px solid var(--czm); transition: all 0.3s; position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--limao); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(0,0,0,0.09); border-color: rgba(200,215,0,0.4); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon { width: 48px; height: 48px; background: rgba(200,215,0,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.feat-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.feat-card p { font-size: 0.88rem; color: var(--czt); line-height: 1.65; }
.badge-soon { background: var(--limao); color: var(--preto); font-size: 0.6rem; padding: 2px 8px; border-radius: 50px; font-weight: 800; vertical-align: middle; margin-left: 6px; }

/* =============================================
   PARA QUEM
   ============================================= */
.for-quem { background: var(--branco); }
.forquem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-top: 44px; }
.forquem-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.forquem-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--cz); border-radius: 14px;
  border-left: 4px solid var(--limao); transition: all 0.2s;
}
.forquem-list li:hover { background: rgba(200,215,0,0.07); transform: translateX(4px); }
.fq-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 1px; }
.forquem-list strong { display: block; font-weight: 800; font-size: 0.92rem; margin-bottom: 2px; }
.forquem-list span { font-size: 0.82rem; color: var(--czt); }
.manifesto-box { background: var(--preto); border-radius: 22px; padding: 36px; position: relative; overflow: hidden; }
.manifesto-box::after {
  content: ''; position: absolute; bottom: -50px; right: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(200,215,0,0.12) 0%, transparent 70%); border-radius: 50%;
}
.manifesto-logo { margin-bottom: 20px; position: relative; z-index: 1; }
.manifesto-logo img { max-width: 160px; height: auto; opacity: 0.85; }
.quote-mark { font-size: 4.5rem; color: var(--limao); line-height: 0.8; font-family: Georgia, serif; display: block; margin-bottom: 4px; }
.manifesto-box blockquote { color: #fff; font-size: 1.05rem; font-weight: 600; line-height: 1.65; margin-bottom: 24px; position: relative; z-index: 1; }
.manifesto-box blockquote em { font-style: normal; color: var(--limao); }
.manifesto-author { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.author-avatar { width: 42px; height: 42px; background: var(--limao); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.manifesto-author div strong { display: block; color: #fff; font-size: 0.88rem; font-weight: 700; }
.manifesto-author div span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais { background: var(--preto); }
.dif-header { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-bottom: 48px; }
.dif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.dif-item {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 26px; transition: all 0.3s;
}
.dif-item:hover { background: rgba(200,215,0,0.07); border-color: rgba(200,215,0,0.25); transform: translateY(-4px); }
.dif-highlight { background: var(--limao); border-color: var(--limao); }
.dif-highlight h4 { color: var(--preto); }
.dif-highlight p { color: rgba(0,0,0,0.6); }
.dif-icon { font-size: 1.7rem; margin-bottom: 12px; display: block; }
.dif-item h4 { font-size: 0.95rem; font-weight: 800; color: var(--limao); margin-bottom: 7px; }
.dif-item p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.badge-dev {
  background: rgba(200,215,0,0.2); color: var(--limao);
  font-size: 0.58rem; padding: 2px 7px; border-radius: 50px;
  font-weight: 800; vertical-align: middle; margin-left: 5px; white-space: nowrap;
}

/* =============================================
   PLANOS
   ============================================= */
.planos { background: var(--cz); text-align: center; }
.planos-head { margin-bottom: 44px; }
.planos-head .sec-sub { margin: 0 auto; }
.planos-wrap { display: flex; justify-content: center; }
.plano-card {
  background: var(--branco); border-radius: 22px; padding: 40px 36px;
  width: 380px; border: 2px solid var(--limao);
  box-shadow: 0 16px 52px rgba(200,215,0,0.18); position: relative;
}
.plano-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--vinho); color: #fff; font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; padding: 5px 18px; border-radius: 50px; white-space: nowrap;
}
.plano-name { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--czt); margin-bottom: 10px; }
.plano-price { margin-bottom: 6px; }
.plano-price .cur { font-size: 1rem; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; }
.plano-price .val { font-size: 3.4rem; font-weight: 900; line-height: 1; }
.plano-price .per { font-size: 0.82rem; color: var(--czt); }
.plano-desc { font-size: 0.84rem; color: var(--czt); margin-bottom: 24px; line-height: 1.5; }
.plano-feats { list-style: none; text-align: left; margin-bottom: 28px; }
.plano-feats li { display: flex; align-items: center; gap: 9px; padding: 8px 0; font-size: 0.88rem; font-weight: 500; border-bottom: 1px solid var(--czm); }
.plano-feats li:last-child { border-bottom: none; }
.check { width: 22px; height: 22px; background: rgba(200,215,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #7a8500; font-size: 0.75rem; font-weight: 900; flex-shrink: 0; }
.btn-plano {
  display: block; text-align: center; padding: 15px; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem; text-decoration: none;
  background: var(--limao); color: var(--preto); transition: all 0.25s;
}
.btn-plano:hover { background: #d4e600; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,215,0,0.3); }
.planos-note { margin-top: 28px; font-size: 0.83rem; color: var(--czt); }
.planos-note a { color: var(--vinho); text-decoration: none; font-weight: 700; }
.planos-note a:hover { text-decoration: underline; }

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  background: var(--vinho); text-align: center; padding: 80px 5%; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200,215,0,0.1) 0%, transparent 70%); border-radius: 50%;
}
.cta-final::after {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); border-radius: 50%;
}
.cta-final .sec-inner { position: relative; z-index: 2; }
.cta-logo { margin-bottom: 28px; }
.cta-logo img { max-width: 200px; height: auto; opacity: 0.9; }
.cta-final h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 14px; line-height: 1.15; }
.cta-final h2 em { font-style: normal; color: var(--limao); }
.cta-final p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  background: #fff; color: var(--vinho); padding: 15px 36px;
  border-radius: 50px; font-weight: 800; font-size: 0.95rem; text-decoration: none;
  transition: all 0.25s; display: inline-block;
}
.btn-cta-white:hover { background: var(--limao); color: var(--preto); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.btn-cta-outline {
  background: transparent; color: #fff; padding: 15px 36px;
  border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3); transition: all 0.25s; display: inline-block;
}
.btn-cta-outline:hover { border-color: var(--limao); color: var(--limao); transform: translateY(-3px); }

/* =============================================
   FOOTER
   ============================================= */
footer { background: #080808; color: rgba(255,255,255,0.45); padding: 48px 5% 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 36px; flex-wrap: wrap;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px;
}
.footer-brand .footer-logo { max-width: 150px; height: auto; display: block; margin-bottom: 12px; }
.footer-logo-txt { font-size: 1.5rem; font-weight: 900; color: var(--limao); display: none; margin-bottom: 12px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.6; max-width: 220px; }
.footer-col h4 { color: #fff; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--limao); }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 0.78rem; }
.footer-petropolis { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-style: italic; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.2); font-style: italic; }

/* =============================================
   ANIMAÇÕES
   ============================================= */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 900px) {
  .hero-wrap { flex-direction: column; gap: 36px; }
  .hero-right { width: 100%; flex: none; }
  .forquem-grid, .dif-header { grid-template-columns: 1fr; gap: 32px; }
  .strip-div { display: none; }
}
@media (max-width: 700px) {
  .nav-links {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 24px 5%; gap: 18px;
    border-bottom: 2px solid var(--limao); box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .ham { display: flex; }
  .hero-btns { flex-direction: column; }
  .plano-card { width: 100%; max-width: 380px; }
}

/* Ícone pequeno da logo dentro dos cards de funcionalidade */
.feat-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: rgba(200,215,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feat-icon-img {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.75;
  border-radius: 4px;
}
