/* Landing: Pienso para perros */
.pienso-landing {
  background: #fff8f0;
  --pienso-amber: #f59e0b;
  --pienso-amber-dark: #d97706;
  --pienso-brown: #78350f;
  --pienso-cream: #fff8f0;
  --pienso-warm: #fef3c7;
}

.pienso-hero {
  position: relative;
  background: linear-gradient(135deg, #92400e 0%, #b45309 35%, #d97706 70%, #f59e0b 100%);
  color: #fff;
  overflow: hidden;
}
.pienso-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.08) 0%, transparent 40%);
  pointer-events: none;
}
.pienso-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.pienso-hero__glow--1 { width: 280px; height: 280px; background: #fde68a; top: -60px; right: 10%; }
.pienso-hero__glow--2 { width: 200px; height: 200px; background: #fed7aa; bottom: 10%; left: 5%; }

.pienso-hero__breadcrumb {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem !important;
}
.pienso-hero__breadcrumb .breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .15rem;
  margin: 0;
  padding: .45rem .95rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
}
.pienso-hero__breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, .88);
  font-size: .8125rem;
  font-weight: 500;
}
.pienso-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .55);
  opacity: 1;
  padding: 0 .45rem;
}
.pienso-hero__breadcrumb .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  opacity: .92;
  transition: opacity .15s ease, text-decoration-color .15s ease;
}
.pienso-hero__breadcrumb .breadcrumb-item a:hover {
  opacity: 1;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pienso-hero__breadcrumb .breadcrumb-item.active {
  color: #fff;
  font-weight: 700;
  opacity: 1;
}

.pienso-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pienso-hero__title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.pienso-hero__lead {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: .95;
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.pienso-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.pienso-stat {
  display: flex;
  flex-direction: column;
  padding: .65rem 1rem;
  background: rgba(255,255,255,.14);
  border-radius: .75rem;
  backdrop-filter: blur(6px);
  min-width: 80px;
}
.pienso-stat__value {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 1.05rem;
}
.pienso-stat__label {
  font-size: .75rem;
  opacity: .85;
}

.pienso-hero__visual {
  position: relative;
  min-height: 280px;
}
.pienso-hero__orb {
  position: absolute;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  animation: pienso-float 4s ease-in-out infinite;
}
.pienso-hero__orb--1 { top: 0; left: 15%; animation-delay: 0s; }
.pienso-hero__orb--2 { top: 35%; right: 5%; animation-delay: .8s; font-size: 1.75rem; }
.pienso-hero__orb--3 { bottom: 15%; left: 35%; animation-delay: 1.6s; font-size: 1.75rem; }
@keyframes pienso-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.pienso-hero__card {
  position: absolute;
  bottom: 20%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 1rem 1.15rem;
  background: #fff;
  color: var(--pienso-brown);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  max-width: 200px;
  animation: pienso-float 5s ease-in-out infinite .3s;
}
.pienso-hero__card--2 {
  bottom: auto;
  top: 25%;
  right: 0;
  left: auto;
  animation-delay: 1s;
}
.pienso-hero__card i {
  font-size: 1.35rem;
  color: var(--pienso-amber-dark);
  margin-bottom: .25rem;
}
.pienso-hero__card strong { font-size: .95rem; }
.pienso-hero__card span { font-size: .78rem; color: #78716c; line-height: 1.35; }

.pienso-hero__wave svg { display: block; width: 100%; height: 48px; }

.pienso-section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pienso-amber-dark);
  margin-bottom: .35rem;
}
.pienso-section-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--pienso-brown);
}

.pienso-type-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(120,53,15,.08);
  box-shadow: 0 4px 20px rgba(120,53,15,.06);
  transition: transform .2s, box-shadow .2s;
}
.pienso-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(120,53,15,.1);
}
.pienso-type-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pienso-warm);
  color: var(--pienso-amber-dark);
  border-radius: .75rem;
  font-size: 1.35rem;
  margin-bottom: .85rem;
}
.pienso-type-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pienso-brown);
  margin-bottom: .5rem;
}
.pienso-type-card__text {
  font-size: .85rem;
  color: #78716c;
  line-height: 1.5;
  margin-bottom: .75rem;
}
.pienso-type-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.pienso-type-card__tags span {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .55rem;
  background: var(--pienso-cream);
  color: var(--pienso-amber-dark);
  border-radius: 999px;
}

.pienso-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.pienso-products-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .pienso-products-grid { grid-template-columns: repeat(4, 1fr); }
  .pienso-products-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.pienso-product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.pienso-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.pienso-product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.pienso-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  background: #fafafa;
  overflow: hidden;
}
.pienso-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .75rem;
}
.pienso-product-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #d6d3d1;
}
.pienso-product-card__badge {
  position: absolute;
  top: .5rem;
  left: .5rem;
  background: var(--brand, #e11d48);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: .35rem;
}
.pienso-product-card__body { padding: .85rem; }
.pienso-product-card__title {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: .35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pienso-product-card--compact .pienso-product-card__title { font-size: .8rem; }
.pienso-product-card__desc {
  font-size: .75rem;
  color: #78716c;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pienso-product-card__footer {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.pienso-product-card__price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--pienso-brown);
}
.pienso-product-card__compare {
  font-size: .8rem;
  color: #a8a29e;
  text-decoration: line-through;
}

.pienso-collection {
  background: linear-gradient(180deg, var(--pienso-cream) 0%, #fff 100%);
}
.pienso-collection__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.pienso-collection__emoji { font-size: 2rem; display: block; margin-bottom: .25rem; }

.pienso-mini-collection {
  background: var(--pienso-cream);
  border-radius: 1.25rem;
  padding: 1.25rem;
  height: 100%;
  border: 1px solid rgba(120,53,15,.08);
}
.pienso-mini-collection--wet { background: #eff6ff; border-color: rgba(59,130,246,.12); }
.pienso-mini-collection__head {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.pienso-mini-collection__head span:first-child { font-size: 1.75rem; }
.pienso-mini-collection__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.pienso-life-stages { background: var(--pienso-cream); }
.pienso-stage-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  transition: border-color .2s, transform .2s;
  height: 100%;
}
.pienso-stage-card:hover {
  border-color: var(--pienso-amber);
  transform: translateY(-3px);
  color: inherit;
}
.pienso-stage-card__icon { font-size: 2.25rem; display: block; margin-bottom: .5rem; }
.pienso-stage-card__price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--pienso-amber-dark);
}

.pienso-tools-banner {
  background: linear-gradient(135deg, var(--pienso-warm) 0%, #fff 100%);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 1.25rem;
  padding: 1.5rem 1.75rem;
}

.pienso-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 1rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  height: 100%;
}
.pienso-trust-card i {
  font-size: 1.5rem;
  color: var(--pienso-amber-dark);
}
.pienso-trust-card strong { font-size: .9rem; }
.pienso-trust-card span { font-size: .78rem; color: #78716c; }

.pienso-cta {
  background: linear-gradient(135deg, #92400e 0%, #b45309 50%, #d97706 100%);
}

@media (max-width: 991.98px) {
  .pienso-hero__visual { min-height: 200px; margin-top: 1rem; }
  .pienso-hero__card { max-width: 170px; padding: .75rem; }
}
