/* Plano Canicat — tema pet-friendly (teal + azul claro) */
:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --sky: #e0f2fe;
  --sky-deep: #7dd3fc;
  --cream: #f8fafc;
  --text: #0f172a;
  --text-muted: #475569;
  --white: #ffffff;
  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --radius: 1.25rem;
  --shadow: 0 10px 40px -15px rgba(15, 118, 110, 0.35);
  --shadow-sm: 0 4px 20px rgba(15, 23, 42, 0.08);
  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 148, 136, 0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--teal-dark);
  min-width: 0;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.brand-logos-sep {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text-muted);
  line-height: 1;
}

.brand-logo--canicat {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.brand-logo--vetvale {
  height: 40px;
  width: auto;
  max-width: min(118px, 32vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  padding: 2px 6px;
}

.brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

@media (max-width: 420px) {
  .brand-text {
    max-width: 9rem;
  }

  .brand-logo--vetvale {
    max-width: 28vw;
    height: 34px;
  }
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--teal);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(13, 148, 136, 0.5);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-header {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--sky) 0%, var(--cream) 55%, var(--white) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(125, 211, 252, 0.45) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem 1.25rem 4rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text);
}

.hero h1 .paw {
  display: inline-block;
  animation: wiggle 2.5s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-8deg);
  }
  75% {
    transform: rotate(8deg);
  }
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 32ch;
}

.price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid rgba(13, 148, 136, 0.2);
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal);
}

.price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1.2;
}

.price-value .price-note {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

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

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 118, 110, 0.15) 100%);
  pointer-events: none;
}

/* Sections common */
section {
  padding: 3.25rem 1.25rem;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 900;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 auto 2.25rem;
  max-width: 36rem;
}

/* Benefits */
.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: linear-gradient(180deg, var(--sky) 0%, var(--white) 100%);
  border: 1px solid rgba(13, 148, 136, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.benefit-card h3::before {
  content: "🐾";
  font-size: 0.85rem;
  opacity: 0.9;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.paw-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.paw-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.paw-list li::before {
  content: "🐾";
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Economy */
.economy {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sky) 100%);
}

.compare {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .compare {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.compare-bad {
  background: var(--white);
  border: 2px dashed rgba(100, 116, 139, 0.35);
  opacity: 0.92;
}

.compare-good {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.compare-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.compare-bad h3 {
  color: var(--text-muted);
}

.compare-card ul {
  text-align: left;
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
}

.compare-good ul {
  color: rgba(255, 255, 255, 0.95);
}

.economy-quote {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-dark);
  max-width: 34rem;
  margin: 2rem auto 0;
  line-height: 1.5;
}

/* Why */
.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(13, 148, 136, 0.1);
  box-shadow: var(--shadow-sm);
}

.why-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
  color: var(--teal-dark);
}

/* Steps */
.how {
  background: var(--white);
}

.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(13, 148, 136, 0.12);
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--sky) 0%, var(--cream) 100%);
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 148, 136, 0.08);
}

.stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

.testimonial footer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.testimonial footer span {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Final CTA */
.cta-final {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #115e59 50%, var(--teal) 100%);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.25rem;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 900;
  margin: 0 0 1.5rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .btn-primary {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-final .btn-primary:hover {
  background: var(--sky);
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer strong {
  color: #e2e8f0;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: pulse-wa 2.5s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.75);
  }
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
