:root {
  --primary: #2563eb;
  --secondary: #14b8a6;
  --background: #ffffff;
  --text: #111827;

  --muted: #6b7280;
  --surface: #ffffff;
  --soft: #f7f9fc;
  --border: #e5e7eb;
  --dark: #101827;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-md: 0 18px 50px rgba(15, 23, 42, .10);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,231,235,.8);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--primary);
  display: grid;
  place-items: center;
  font-size: 21px;
  box-shadow: var(--shadow-sm);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
}

.main-nav a {
  color: #374151;
  font-size: .93rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--primary) 28%, transparent);
}

.button-light {
  background: white;
  color: var(--dark);
}

.button-dark {
  background: var(--dark);
  color: white;
}

.button-outline {
  border-color: var(--border);
  background: white;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .9rem;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.22), transparent 25%),
    radial-gradient(circle at 88% 76%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 94%, #000 6%),
      color-mix(in srgb, var(--secondary) 88%, #000 12%)
    );
}

.hero::after {
  content: "🐕";
  position: absolute;
  right: 7%;
  bottom: -55px;
  font-size: clamp(220px, 31vw, 440px);
  line-height: 1;
  opacity: .12;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,.34), transparent 64%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
  color: white;
  padding: 82px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--primary);
}

.hero .eyebrow {
  color: white;
  opacity: .9;
}

.hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255,255,255,.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255,255,255,.83);
}

.quick-actions {
  position: relative;
  z-index: 4;
  margin-top: -48px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quick-card {
  min-height: 130px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quick-card > span {
  font-size: 1.7rem;
  margin-bottom: 9px;
}

.quick-card strong,
.quick-card small {
  display: block;
}

.quick-card small {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 32px;
}

.section-heading h2,
.about-copy h2,
.contact-section h2,
.dogfit-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.section-heading p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card-media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 13%, white),
      color-mix(in srgb, var(--secondary) 19%, white)
    );
  overflow: hidden;
  display: grid;
  place-items: center;
  font-size: 3.3rem;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-category {
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.card h3 {
  margin: 7px 0 8px;
  font-size: 1.23rem;
}

.card p {
  color: var(--muted);
  margin: 0 0 18px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price {
  display: flex;
  flex-direction: column;
}

.price strong {
  font-size: 1.18rem;
}

.old-price {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: .82rem;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.promotion-card {
  min-height: 270px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 92%, #000 8%),
      color-mix(in srgb, var(--secondary) 82%, #000 18%)
    );
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.promotion-card::after {
  content: "🏷️";
  position: absolute;
  right: 20px;
  top: 5px;
  font-size: 8rem;
  opacity: .12;
  transform: rotate(10deg);
}

.promotion-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  font-size: 1.7rem;
}

.promotion-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  max-width: 520px;
  color: rgba(255,255,255,.86);
}

.promo-coupon {
  display: inline-block;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 8px;
  border: 1px dashed rgba(255,255,255,.55);
  background: rgba(255,255,255,.12);
  font-size: .8rem;
  font-weight: 900;
}

.dogfit-section {
  background: #fff;
}

.dogfit-card {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 40px;
  padding: clamp(32px, 6vw, 70px);
  border-radius: 38px;
  color: white;
  background:
    radial-gradient(circle at 75% 30%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(135deg, #151515, #2b2b2b);
  overflow: hidden;
}

.dogfit-badge {
  display: inline-block;
  padding: 7px 10px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.dogfit-copy p {
  max-width: 650px;
  color: rgba(255,255,255,.76);
}

.dogfit-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.dogfit-benefits span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .86rem;
}

.dogfit-visual {
  display: grid;
  place-items: center;
}

.dogfit-circle {
  width: min(310px, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 1000;
  letter-spacing: -.06em;
  color: white;
  background:
    radial-gradient(circle at 32% 30%, rgba(255,255,255,.25), transparent 24%),
    linear-gradient(145deg, #ff8a00, #ef5b0c);
  box-shadow:
    inset 0 0 0 10px rgba(255,255,255,.08),
    0 28px 80px rgba(0,0,0,.36);
  transform: rotate(-7deg);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.pet-photo-placeholder {
  min-height: 430px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 25% 28%, rgba(255,255,255,.7), transparent 17%),
    linear-gradient(145deg,
      color-mix(in srgb, var(--primary) 18%, white),
      color-mix(in srgb, var(--secondary) 23%, white)
    );
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
  font-size: clamp(6rem, 14vw, 10rem);
  overflow: hidden;
}

.about-copy p {
  margin: 20px 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-points {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.contact-section > .container > div > p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.contact-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.contact-item > span {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--soft);
  display: grid;
  place-items: center;
}

.contact-item strong,
.contact-item p {
  display: block;
  margin: 0;
}

.contact-item p {
  color: var(--muted);
  margin-top: 3px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-panel {
  min-height: 370px;
  padding: 38px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    radial-gradient(circle at 70% 15%, rgba(255,255,255,.18), transparent 20%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: var(--shadow-md);
}

.contact-panel-icon {
  font-size: 4rem;
}

.contact-panel h3 {
  margin: 20px 0 4px;
  font-size: 2rem;
}

.contact-panel p {
  margin: 0;
  opacity: .86;
}

.contact-panel small {
  margin-top: 26px;
  color: rgba(255,255,255,.7);
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c55e;
  color: white;
  font-size: 1.7rem;
  box-shadow: 0 15px 40px rgba(34,197,94,.32);
}

.site-footer {
  background: #0f172a;
  color: white;
  padding: 46px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-inner p {
  margin: 4px 0 0;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: end;
}

.footer-inner > small {
  grid-column: 1 / -1;
  color: #64748b;
  padding-top: 18px;
  border-top: 1px solid #1e293b;
}

.loading-card,
.empty-state {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid var(--border);
  color: var(--muted);
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 0;
  }

  .menu-button {
    display: block;
  }

  .header-whatsapp {
    display: none;
  }

  .quick-grid,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dogfit-card,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .dogfit-visual {
    display: none;
  }

  .about-grid,
  .contact-grid {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: unset;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-copy {
    padding: 68px 0 100px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 8px;
  }

  .quick-actions {
    margin-top: -72px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .quick-card {
    min-height: 118px;
    padding: 17px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 12px;
  }

  .cards-grid,
  .promotions-grid {
    grid-template-columns: 1fr;
  }

  .dogfit-card {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .pet-photo-placeholder {
    min-height: 320px;
  }

  .contact-panel {
    min-height: 300px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }
}


.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.gallery-item{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  background:#e5e7eb;
  aspect-ratio:1;
}
.gallery-item img{width:100%;height:100%;object-fit:cover}
.gallery-item figcaption{
  position:absolute;left:10px;right:10px;bottom:10px;
  padding:8px 10px;border-radius:10px;
  background:rgba(15,23,42,.66);color:white;font-size:.78rem;
  backdrop-filter:blur(6px)
}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.review-card{
  padding:24px;border:1px solid var(--border);border-radius:22px;
  background:white;box-shadow:var(--shadow-sm)
}
.review-stars{letter-spacing:.08em;color:#f59e0b;margin-bottom:14px}
.review-card p{margin:0 0 18px;color:#4b5563}
.review-author{display:flex;align-items:center;gap:10px}
.review-avatar{
  width:42px;height:42px;border-radius:50%;overflow:hidden;
  display:grid;place-items:center;background:var(--soft)
}
.review-avatar img{width:100%;height:100%;object-fit:cover}
.map-wrap{
  margin:24px 0;border-radius:20px;overflow:hidden;
  border:1px solid var(--border);background:var(--soft)
}
.map-wrap iframe{display:block;width:100%;height:300px;border:0}
.dogfit-coupon{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:10px;margin:2px 0 12px;
  background:rgba(255,255,255,.1);border:1px dashed rgba(255,255,255,.32);
  font-weight:900
}
@media(max-width:960px){
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .reviews-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .gallery-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .reviews-grid{grid-template-columns:1fr}
}
