/* ============================================================
   SUKI 好き — Diseño Gatuno Moderno
   ============================================================ */

:root {
  --cream:       #FFF9F4;
  --peach:       #FFCBA4;
  --salmon:      #FF8F6B;
  --warm-orange: #E07850;
  --brown:       #8B5E3C;
  --dark:        #2D1B0E;
  --pink-light:  #FFF0EE;
  --golden:      #F0A96D;
  --text:        #3D2B1F;
  --text-light:  #9A7A5A;
  --white:       #FFFFFF;
  --shadow:      rgba(61, 27, 14, 0.12);
  --shadow-md:   rgba(61, 27, 14, 0.18);
  --shadow-lg:   rgba(61, 27, 14, 0.28);
}

/* ============================
   RESET & BASE
============================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--salmon) var(--cream);
}

::-webkit-scrollbar        { width: 8px; }
::-webkit-scrollbar-track  { background: var(--cream); }
::-webkit-scrollbar-thumb  { background: var(--salmon); border-radius: 4px; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ============================
   NAVBAR
============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s ease, padding 0.45s ease, box-shadow 0.45s ease;
}

.navbar.scrolled {
  background: rgba(255, 249, 244, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px var(--shadow);
  padding: 0.65rem 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: 'Pacifico', cursive;
  font-size: 1.55rem;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.45s ease;
}

.navbar.scrolled .navbar-brand { color: var(--dark); }

.navbar-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: border-color 0.45s ease;
}

.navbar.scrolled .navbar-brand img { border-color: var(--peach); }

.navbar-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.navbar-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.95rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.88);
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar.scrolled .navbar-links a { color: var(--text); }

.navbar-links a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: white;
}

.navbar.scrolled .navbar-links a:hover {
  background: var(--peach);
  color: var(--dark);
}

.navbar-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  color: white;
  font-size: 1.15rem;
  transition: border-color 0.45s ease, color 0.45s ease;
  line-height: 1;
}

.navbar.scrolled .navbar-toggle {
  border-color: var(--brown);
  color: var(--dark);
}

/* ============================
   HERO
============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg,
    #C85A30 0%,
    #E8825A 25%,
    #FFCBA4 55%,
    #FFB3C1 78%,
    #C47A5A 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(255, 200, 160, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

/* Patas flotantes — Font Awesome fa-paw */
.hero-paw {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.22);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.hero-paw:nth-child(1) { top: 8%;     left: 4%;   font-size: 3.6rem;  animation-name: floatPaw;  animation-delay: 0s;   animation-duration: 6s;   }
.hero-paw:nth-child(2) { top: 18%;    right: 6%;  font-size: 1.8rem;  animation-name: floatSway; animation-delay: 1.1s; animation-duration: 8s;   }
.hero-paw:nth-child(3) { top: 52%;    left: 2%;   font-size: 3rem;    animation-name: floatPaw;  animation-delay: 2.3s; animation-duration: 7s;   }
.hero-paw:nth-child(4) { bottom: 10%; right: 4%;  font-size: 2.4rem;  animation-name: floatSway; animation-delay: 0.6s; animation-duration: 9s;   }
.hero-paw:nth-child(5) { bottom: 26%; left: 8%;   font-size: 2.1rem;  animation-name: floatPaw;  animation-delay: 1.7s; animation-duration: 6.5s; }
.hero-paw:nth-child(6) { top: 36%;    right: 3%;  font-size: 1.65rem; animation-name: floatSpin; animation-delay: 3.1s; animation-duration: 12s;  }
.hero-paw:nth-child(7) { top: 76%;    right: 13%; font-size: 2.6rem;  animation-name: floatPaw;  animation-delay: 2.7s; animation-duration: 8.5s; }
.hero-paw:nth-child(8) { top: 5%;     left: 40%;  font-size: 1.45rem; animation-name: floatSway; animation-delay: 0.9s; animation-duration: 7s;   }
.hero-paw:nth-child(9) { bottom: 6%;  left: 28%;  font-size: 2.2rem;  animation-name: floatSpin; animation-delay: 1.4s; animation-duration: 14s;  }

@keyframes floatPaw {
  0%, 100% { transform: translateY(0px)   rotate(-10deg); opacity: 0.22; }
  35%       { transform: translateY(-24px) rotate(8deg);   opacity: 0.38; }
  70%       { transform: translateY(-11px) rotate(-16deg); opacity: 0.28; }
}

@keyframes floatSway {
  0%, 100% { transform: translate(0px, 0px)    rotate(20deg);  opacity: 0.22; }
  30%       { transform: translate(16px, -20px) rotate(36deg);  opacity: 0.36; }
  70%       { transform: translate(-10px, -9px) rotate(10deg);  opacity: 0.28; }
}

@keyframes floatSpin {
  0%   { transform: translateY(0px)   rotate(0deg);   opacity: 0.18; }
  50%  { transform: translateY(-18px) rotate(180deg); opacity: 0.34; }
  100% { transform: translateY(0px)   rotate(360deg); opacity: 0.18; }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 2rem 1.5rem;
}

.hero-img {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22), 0 0 0 12px rgba(255, 255, 255, 0.15);
  margin: 0 auto 2rem;
  animation: heroFloat 4.5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0);    box-shadow: 0 20px 60px rgba(0,0,0,0.22), 0 0 0 12px rgba(255,255,255,0.15); }
  50%       { transform: translateY(-14px); box-shadow: 0 35px 80px rgba(0,0,0,0.28), 0 0 0 12px rgba(255,255,255,0.18); }
}

.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  color: white;
  text-shadow: 0 4px 35px rgba(0, 0, 0, 0.18);
  margin-bottom: 0.3rem;
  animation: fadeInDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.15rem, 3.2vw, 1.75rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.12em;
  margin-bottom: 1.8rem;
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-divider {
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  margin: 0 auto 1.8rem;
  animation: scaleIn 0.7s ease 0.4s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: white;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  color: white;
}

/* ============================
   SECTION LAYOUT
============================ */
.section {
  padding: 5.5rem 2rem;
}

.section-alt {
  background: linear-gradient(145deg, #FFF0EE 0%, #FFE4D6 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  background: var(--peach);
  color: var(--warm-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: var(--dark);
  margin-bottom: 0.6rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 4px;
  background: linear-gradient(90deg, var(--peach), var(--salmon));
  border-radius: 2px;
}

.section-desc {
  font-family: 'Dancing Script', cursive;
  font-size: 1.25rem;
  color: var(--text-light);
  margin-top: 1.2rem;
}

/* ============================
   FOTO GRID
============================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1080px;
  margin: 0 auto;
}

.photo-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 30px var(--shadow);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease;
  background: var(--peach);
}

.photo-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 24px 60px var(--shadow-lg);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-card:hover img { transform: scale(1.12); }

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(45, 27, 14, 0.82));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}

.photo-card:hover .photo-overlay { opacity: 1; }

.photo-label {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.photo-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.photo-card:hover .photo-zoom { transform: translate(-50%, -50%) scale(1); }

/* ============================
   LIGHTBOX
============================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 8, 4, 0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-box {
  position: relative;
  max-width: 820px;
  width: 100%;
  text-align: center;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34, 1.46, 0.64, 1);
}

.lightbox.active .lightbox-box { transform: scale(1) translateY(0); }

.lightbox-box img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.lightbox-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.45rem;
  color: white;
  margin-top: 1.2rem;
}

.lightbox-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover { background: white; color: var(--dark); }

/* ============================
   PRODUCTOS
============================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 28px var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease;
}

.product-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 28px 65px var(--shadow-lg);
}

.product-thumb {
  height: 195px;
  overflow: hidden;
  background: var(--pink-light);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-thumb img { transform: scale(1.09); }

.product-body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.product-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  flex: 1;
}

.product-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--salmon) 0%, var(--warm-orange) 100%);
  color: white;
  text-decoration: none;
  padding: 0.68rem 1.1rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 120, 80, 0.45);
  color: white;
}

/* Telegram banner */
.telegram-banner {
  max-width: 820px;
  margin: 3rem auto 0;
  background: white;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 35px var(--shadow);
  flex-wrap: wrap;
}

.telegram-text h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.telegram-text p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.telegram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #229ED9;
  color: white;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.telegram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(34, 158, 217, 0.45);
  color: white;
}

/* ============================
   ABOUT / RAZA
============================ */
.about-content {
  max-width: 880px;
  margin: 0 auto;
}

.about-block {
  background: white;
  border-radius: 22px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 28px var(--shadow);
  border-left: 5px solid var(--salmon);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-block:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 55px var(--shadow-md);
}

.about-block:nth-child(even)  { border-left-color: var(--golden); }
.about-block:nth-child(3n)    { border-left-color: var(--peach); }

.about-block p {
  font-size: 1.02rem;
  line-height: 1.88;
  color: var(--text);
}

.sub-header {
  text-align: center;
  margin: 4rem 0 2.5rem;
}

/* ============================
   FOOTER
============================ */
.site-footer {
  background: var(--dark);
  padding: 4rem 2rem 1.8rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 2.4rem;
  color: var(--peach);
  margin-bottom: 1.8rem;
}

.footer-insta-wrap {
  display: inline-block;
  margin-bottom: 0.6rem;
  transition: transform 0.35s ease;
}

.footer-insta-wrap:hover { transform: scale(1.1) rotate(6deg); }

.footer-insta-wrap img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(255, 143, 107, 0.3);
}

.footer-handle {
  color: rgba(255, 204, 164, 0.55);
  font-size: 0.82rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255, 204, 164, 0.72);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--peach); }

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.4rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* ============================
   SCROLL-TO-TOP
============================ */
.scroll-top-btn {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--salmon), var(--warm-orange));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 22px rgba(224, 120, 80, 0.4);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover   { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(224, 120, 80, 0.55); }

/* ============================
   SCROLL ANIMATIONS
============================ */
.fade-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger .fade-up:nth-child(2) { transition-delay: 0.13s; }
.stagger .fade-up:nth-child(3) { transition-delay: 0.21s; }
.stagger .fade-up:nth-child(4) { transition-delay: 0.29s; }
.stagger .fade-up:nth-child(5) { transition-delay: 0.37s; }
.stagger .fade-up:nth-child(6) { transition-delay: 0.45s; }
.stagger .fade-up:nth-child(7) { transition-delay: 0.53s; }
.stagger .fade-up:nth-child(8) { transition-delay: 0.61s; }
.stagger .fade-up:nth-child(9) { transition-delay: 0.69s; }

/* ============================
   KEYFRAMES
============================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-38px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(38px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 249, 244, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1.2rem 2rem;
    box-shadow: 0 15px 40px var(--shadow);
    gap: 0.2rem;
  }
  .navbar-links.open { display: flex; }
  .navbar-links.open a { color: var(--text); }
  .navbar-links.open a:hover { background: var(--peach); color: var(--dark); }
  .navbar-toggle     { display: flex; }

  .photo-grid    { grid-template-columns: repeat(2, 1fr); }
  .telegram-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .photo-grid    { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ============================
   SCATTERED PAWS (todas las secciones)
============================ */

/* Contenedor de huellas — capa absoluta detrás del contenido */
.paw-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Cada huella individual */
.section-paw {
  position: absolute;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

/* El contenido de las secciones flota por encima de las huellas */
#fotos   > .section-header,
#fotos   > .photo-grid,
#compras > .section-header,
#compras > .products-grid,
#compras > .telegram-banner,
#raza    > .section-header,
#raza    > .about-content {
  position: relative;
  z-index: 1;
}

/* Animaciones de movimiento variadas */
@keyframes pawDrift {
  0%, 100% { transform: translateY(0px)   rotate(var(--pr, 0deg)); }
  30%       { transform: translateY(-22px) rotate(calc(var(--pr, 0deg) + 12deg)); }
  70%       { transform: translateY(-10px) rotate(calc(var(--pr, 0deg) - 8deg)); }
}

@keyframes pawSway {
  0%, 100% { transform: translate(0px, 0px)    rotate(var(--pr, 0deg)); }
  25%       { transform: translate(14px, -18px) rotate(calc(var(--pr, 0deg) + 15deg)); }
  75%       { transform: translate(-10px, -8px) rotate(calc(var(--pr, 0deg) - 10deg)); }
}

@keyframes pawPulse {
  0%, 100% { transform: scale(1)    translateY(0px)   rotate(var(--pr, 0deg)); opacity: inherit; }
  40%       { transform: scale(1.18) translateY(-14px) rotate(calc(var(--pr, 0deg) + 8deg)); opacity: 1; }
  80%       { transform: scale(0.92) translateY(-5px)  rotate(calc(var(--pr, 0deg) - 6deg)); }
}

@keyframes pawSpin {
  0%   { transform: translateY(0px)    rotate(var(--pr, 0deg)); }
  50%  { transform: translateY(-16px)  rotate(calc(var(--pr, 0deg) + 180deg)); }
  100% { transform: translateY(0px)    rotate(calc(var(--pr, 0deg) + 360deg)); }
}

/* ============================
   LEGAL PAGE EXTRAS
============================ */
.legal-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(145deg, #FFF0EE 0%, #FFE0CC 100%);
}

.legal-hero-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--salmon);
  box-shadow: 0 10px 40px var(--shadow-md);
  margin: 0 auto 1.4rem;
}

.legal-section {
  padding: 4rem 2rem 6rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-block {
  background: white;
  border-radius: 22px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 28px var(--shadow);
  border-left: 5px solid var(--salmon);
}

.legal-block:nth-child(even)  { border-left-color: var(--golden); }
.legal-block:nth-child(3)     { border-left-color: #8B5CF6; }

.legal-block h2 {
  font-family: 'Pacifico', cursive;
  font-size: 1.55rem;
  color: var(--dark);
  margin-bottom: 1.1rem;
}

.legal-block p {
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block a {
  color: var(--salmon);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-block a:hover { color: var(--warm-orange); }

.legal-block strong { color: var(--dark); }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--salmon), var(--warm-orange));
  color: white;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(224, 120, 80, 0.35);
}

.back-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(224, 120, 80, 0.5);
  color: white;
}
