/* Fuço Pet Care — Opção 1 (editorial / elegante) */

:root {
  --gold: #F2B23C;
  --gold-deep: #E19E27;
  --gold-soft: #FBE7B6;
  --gold-tint: #FCF3DD;
  --ink: #1A140A;
  --ink-soft: #5A4E38;
  --line-l: #E7DCC2;
  --paper: #F7F1E3;
  --paper-2: #FBF6EA;
  --white: #FFFFFF;
  --green: #5F7F4E;

  --font-sans: "Red Hat Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; }

.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

.eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: #141009;
  padding: 15px 26px;
  font-size: 16px;
}
.btn-primary:hover { background: var(--gold-soft); }
.btn-ghost {
  border: 1px solid var(--line-l);
  color: var(--ink);
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 600;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-sm { padding: 11px 20px; font-size: 15px; }

/* NAV */
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--line-l);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 227, .92);
  backdrop-filter: blur(8px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 999px; }
.brand-name { font-weight: 800; font-size: 19px; letter-spacing: -.01em; }
.brand-name span { color: var(--ink-soft); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; font-size: 15px; font-weight: 600; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; color: var(--ink); }

/* HERO */
.hero { padding: 64px 40px 40px; }
.hero h1 {
  margin: 20px 0 0;
  font-weight: 500;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -.025em;
  max-width: 900px;
}
.hero .lead {
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 26px; margin-top: 22px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 9px; }
.hero-trust .sep { width: 1px; height: 22px; background: var(--line-l); }
.hero-trust span { font-size: 14px; color: var(--ink-soft); }
.hero-trust b { color: var(--ink); }

/* Placeholder image slot */
.slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-tint), var(--gold-soft) 55%, #efe6cf);
  border: 1px solid var(--gold-soft);
  color: var(--gold-deep);
}
.slot .slot-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.slot .slot-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  opacity: .8;
  max-width: 80%;
}
.hero-slot { height: 440px; border-radius: 18px; margin-top: 34px; }

/* SERVICES */
.services {
  background: var(--white);
  padding: 80px 40px 72px;
  border-top: 1px solid var(--line-l);
  border-bottom: 1px solid var(--line-l);
}
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.services-head h2 {
  margin: 14px 0 0;
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -.02em;
}
.services-head .aside {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 280px;
  text-align: right;
  line-height: 1.5;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.svc {
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 12px;
  padding: 28px;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), border-color .18s;
}
.svc:hover { border-color: var(--gold); transform: translateY(-3px); }
.svc .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
}
.svc h3 { margin: 18px 0 8px; font-size: 21px; font-weight: 600; }
.svc p { margin: 0; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.svc-cta {
  background: var(--gold);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-cta h3 { margin: 0 0 8px; font-size: 21px; font-weight: 700; color: #141009; }
.svc-cta p { margin: 0 0 16px; color: #3a2c0e; line-height: 1.5; }
.svc-cta a {
  display: inline-flex; align-items: center; gap: 8px;
  color: #141009; font-weight: 700; font-size: 15px; text-decoration: none;
}
.svc-cta a:hover { gap: 12px; }

/* AWARD BAND */
.award {
  margin: 56px 40px 0;
  background: var(--gold);
  border-radius: 16px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.award .left { display: flex; align-items: center; gap: 28px; }
.award .medal {
  width: 92px; height: 92px;
  border-radius: 999px;
  background: #141009;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.award .eyebrow { color: #3a2c0e; }
.award h2 { margin: 8px 0 6px; font-weight: 500; font-size: 32px; color: #141009; }
.award p { margin: 0; font-size: 15px; color: #3a2c0e; }
.award .rank { text-align: right; }
.award .rank .num { font-size: 56px; font-weight: 300; font-style: italic; color: #141009; line-height: 1; }
.award .rank .cap { font-size: 13px; color: #3a2c0e; letter-spacing: .04em; }

/* FOUNDERS */
.founders {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.founders-slot { height: 440px; border-radius: 16px; }
.founders h2 { margin: 16px 0 6px; font-weight: 500; font-size: 40px; letter-spacing: -.02em; }
.founders .role { margin: 0 0 20px; font-size: 16px; font-weight: 600; color: var(--gold-deep); }
.founders p { margin: 0 0 18px; font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
.founders p b { color: var(--ink); }
.founders p.small { font-size: 16px; }
.tags { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.tag {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--line-l);
  border-radius: 999px;
  font-size: 14px;
}

/* TESTIMONIALS */
.testi {
  background: var(--white);
  border-top: 1px solid var(--line-l);
  padding: 72px 40px;
}
.testi h2 { margin: 14px 0 34px; font-weight: 500; font-size: 38px; letter-spacing: -.02em; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.quote {
  background: var(--paper-2);
  border: 1px solid var(--line-l);
  border-radius: 12px;
  padding: 32px;
}
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.quote p { margin: 0 0 20px; font-size: 18px; line-height: 1.6; color: var(--ink); }
.quote cite { font-size: 14px; color: var(--ink-soft); font-weight: 600; font-style: normal; }

/* CTA / FOOTER */
.footer { background: var(--gold); padding: 64px 40px 0; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(20,16,9,.15);
}
.footer-top h2 {
  margin: 0;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -.02em;
  color: #141009;
  max-width: 600px;
}
.footer-phone {
  background: #141009;
  color: var(--gold);
  padding: 17px 30px;
  font-size: 17px;
  flex-shrink: 0;
}
.footer-phone:hover { background: #241a0d; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 36px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .name { font-weight: 800; font-size: 17px; color: #141009; }
.footer-meta { display: flex; align-items: center; gap: 22px; color: #3a2c0e; font-size: 14px; flex-wrap: wrap; }
.footer-meta a, .footer-meta span { display: flex; align-items: center; gap: 7px; text-decoration: none; }
.footer-meta a:hover { color: #141009; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { height: 60px; padding: 0 18px; }
  .brand img { width: 34px; height: 34px; }
  .brand-name { font-size: 16px; }
  .brand-name span { display: none; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav .btn { display: none; }

  .hero { padding: 28px 20px 4px; }
  .hero h1 { font-size: 34px; line-height: 1.05; letter-spacing: -.02em; }
  .hero .lead { font-size: 15px; margin-top: 14px; }
  .hero-actions { margin-top: 18px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions .btn-ghost { display: none; }
  .hero-slot { height: 220px; margin-top: 18px; }
  .hero-trust { gap: 12px; margin-top: 16px; }
  .hero-trust .sep { display: none; }

  .services { padding: 36px 20px 32px; }
  .services-head { flex-direction: column; align-items: flex-start; margin-bottom: 22px; }
  .services-head h2 { font-size: 26px; }
  .services-head .aside { display: none; }
  .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .svc { display: flex; align-items: center; gap: 15px; padding: 16px; }
  .svc .ic { width: 44px; height: 44px; border-radius: 12px; }
  .svc .body { flex: 1; }
  .svc h3 { margin: 0; font-size: 16px; }
  .svc p { font-size: 13px; margin-top: 2px; }
  .svc-cta { flex-direction: column; align-items: flex-start; }
  .svc-cta h3 { font-size: 18px; }

  .award { margin: 24px 20px 0; flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; }
  .award .left { gap: 18px; }
  .award .medal { width: 64px; height: 64px; }
  .award h2 { font-size: 24px; }
  .award .rank { display: none; }

  .founders { padding: 32px 20px 36px; grid-template-columns: 1fr; gap: 18px; }
  .founders-slot { height: 200px; order: -1; }
  .founders h2 { font-size: 24px; }
  .founders p { font-size: 15px; }
  .tags { gap: 10px; }

  .testi { padding: 40px 20px; }
  .testi h2 { font-size: 26px; margin-bottom: 22px; }
  .testi-grid { grid-template-columns: 1fr; }
  .quote { padding: 24px; }
  .quote p { font-size: 16px; }

  .footer { padding: 34px 20px 0; }
  .footer-top { flex-direction: column; align-items: flex-start; padding-bottom: 28px; gap: 18px; }
  .footer-top h2 { font-size: 26px; }
  .footer-phone { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 0 28px; }
}
