/* ===== Variables y base ===== */
:root {
  --bg-dark: #000000;
  --bg-black: #000000;
  --bg-red-gradient: linear-gradient(135deg, #420a0a 0%, #000000 100%);
  --text-white: #ffffff;
  --text-gray: #e0e0e0;
  --accent-red: #E31E24;
  --accent-red-bright: #ff2d4a;
  --accent-pink: #FF007F;
  --accent-salmon: #ff8c8c;
  --font: 'Plus Jakarta Sans', sans-serif;
}


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

html {
  scroll-behavior: smooth;
  font-size: 115%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-black);
  color: var(--text-white);
  line-height: 1.4;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZWxsaXBzZSBjeD0iMTYiIGN5PSIyMiIgcng9IjciIHJ5PSI2IiBmaWxsPSIjRTMxRTI0Ii8+PGVsbGlwc2UgY3g9IjgiIGN5PSIxMiIgcng9IjMuNSIgcnk9IjQiIGZpbGw9IiNFMzFFMjQiIHRyYW5zZm9ybT0icm90YXRlKC0xNSA4IDEyKSIvPjxlbGxpcHNlIGN4PSIxNSIgY3k9IjgiIHJ4PSIzIiByeT0iMy41IiBmaWxsPSIjRTMxRTI0Ii8+PGVsbGlwc2UgY3g9IjIyIiBjeT0iMTAiIHJ4PSIzLjUiIHJ5PSI0IiBmaWxsPSIjRTMxRTI0IiB0cmFuc2Zvcm09InJvdGF0ZSgxNSAyMiAxMCkiLz48ZWxsaXBzZSBjeD0iMTYiIGN5PSIyMS41IiByeD0iNC41IiByeT0iMy41IiBmaWxsPSIjZmY0YTRhIiBvcGFjaXR5PSIwLjQiLz48L3N2Zz4=") 16 16, auto;
}

a, button, [role="button"], input[type="submit"] {
  cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZWxsaXBzZSBjeD0iMTYiIGN5PSIyMiIgcng9IjciIHJ5PSI2IiBmaWxsPSIjRTMxRTI0Ii8+PGVsbGlwc2UgY3g9IjgiIGN5PSIxMiIgcng9IjMuNSIgcnk9IjQiIGZpbGw9IiNFMzFFMjQiIHRyYW5zZm9ybT0icm90YXRlKC0xNSA4IDEyKSIvPjxlbGxpcHNlIGN4PSIxNSIgY3k9IjgiIHJ4PSIzIiByeT0iMy41IiBmaWxsPSIjRTMxRTI0Ii8+PGVsbGlwc2UgY3g9IjIyIiBjeT0iMTAiIHJ4PSIzLjUiIHJ5PSI0IiBmaWxsPSIjRTMxRTI0IiB0cmFuc2Zvcm09InJvdGF0ZSgxNSAyMiAxMCkiLz48ZWxsaXBzZSBjeD0iMTYiIGN5PSIyMS41IiByeD0iNC41IiByeT0iMy41IiBmaWxsPSIjZmY0YTRhIiBvcGFjaXR5PSIwLjQiLz48L3N2Zz4=") 16 16, pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.24rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent-red);
}

/* Nav dropdown for Productos → Perro / Gato */
.nav-item--dropdown {
  position: relative;
}

.nav-link {
  padding: 0.5rem 0;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-link:hover {
  color: var(--accent-red);
  background: rgba(255, 255, 255, 0.04);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: auto;
  background: #000000;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 2rem;
  padding: 9.5rem 3rem 1.5rem;
}

.hero-quote {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding-top: 1.5rem;
  font-size: clamp(2.6rem, 5.75vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  justify-self: end;
  align-self: start;
  max-width: 420px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-quote .hero-quote-white {
  white-space: nowrap;
}

.hero-quote-white {
  color: var(--text-white);
}

.hero-quote-red {
  color: var(--accent-red);
}

.hero-collab {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: end;
  padding: 0 0 0 7rem;
  position: relative;
  z-index: 2;
}

.hero-bg {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: end;
  padding-top: 6rem;
  position: relative;
  z-index: 1;
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  object-position: bottom left;
  position: relative;
  z-index: 3;
}

.hero-collab-line {
  display: block;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.95;
}

.hero-logo-patitas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
}

.hero-logo-paw {
  font-size: 1.2rem;
}

.hero-logo-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-logo-todo {
  color: var(--text-white);
}

.hero-logo-patitas-pink {
  color: var(--accent-pink);
}




/* ===== Fundación ===== */
.fundacion {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0d0208 0%, #1a0510 30%, #0d0208 70%, #000000 100%);
}

.fundacion-logo {
  display: block;
  max-width: 220px;
  margin: 0 auto 3rem;
}

.fundacion-title {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: clamp(3.38rem, 6.76vw, 5.07rem);
  font-weight: 800;
  text-align: left;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fundacion-pink {
  color: var(--accent-pink);
}

.fundacion-white {
  color: var(--text-white);
}

.fundacion-red {
  color: var(--accent-red);
}


.fundacion-text {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: left;
}

.fundacion-text p {
  margin: 0 0 1.5rem;
  color: var(--text-white);
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
}


.fundacion-image {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}

.fundacion-image img {
  display: block;
  margin: 0 auto;
}

.fundacion-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, #000000 0%, #000000 35%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.4) 75%, transparent 100%);
  pointer-events: none;
}

.fundacion-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0;
}


/* ===== Secciones numeradas (1, 2, 3) ===== */
.section-num {
  padding: 5rem 0;
  background: var(--bg-dark);
  position: relative;
}

.section-num-inner {
  position: relative;
  display: grid;
  gap: 2rem;
}

.section-num-label {
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  font-weight: 800;
  color: #5a5a5a;
  line-height: 1;
  pointer-events: none;
}

.section-num-content {
  max-width: 580px;
}

.section-num-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-num-body {
  margin: 0;
  color: var(--text-white);
  font-size: 1.1rem;
  max-width: 560px;
  font-weight: 400;
  line-height: 1.5;
}

.text-white {
  color: var(--text-white);
  font-weight: 800;
}

.text-red {
  color: var(--accent-red);
  font-weight: 800;
}

/* ===== Split Sections (1, 2 y 3 unificados) ===== */
.split-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 4rem;
}

.split-col {
  position: relative;
  padding: 6rem 4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.split-col.section-1 {
  background: #050505;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.split-col.section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.split-col.section-2 {
  background: #000000;
}

.split-col .section-num-label {
  font-size: clamp(3rem, 7.5vw, 7rem);
  color: #888888;
  top: 0;
  left: 2rem;
}

.split-col.section-2 .section-num-label {
  left: 2rem;
  right: auto;
}

.split-col .section-num-content {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding-top: 0;
}

.split-col .section-num-content:not(.split-col-nos-preocupamos) {
  margin-top: 5.5rem;
}

.split-col .section-num-content:not(.split-col-nos-preocupamos) .section-num-title {
  margin-top: 0;
}

/* Imagen de croquetas: alta, misma altura que gato + texto derecho */
.split-col-croquetas {
  flex: 1;
  min-height: 224px;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-col-croquetas img {
  width: 80%;
  height: 80%;
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
}

/* Bowl gourmet labels */
.bowl-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
}

.bowl-label-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0.85;
  padding: 0.3rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.bowl-label--top-left {
  top: 15%;
  left: 5%;
}

.bowl-label--top-right {
  top: 10%;
  right: 5%;
}

.bowl-label--bottom-left {
  bottom: 30%;
  left: 3%;
}

.bowl-label--bottom-right {
  bottom: 25%;
  right: 3%;
}

/* Imagen del gato (solo una) */
.split-col-cat {
  flex-shrink: 0;
  height: 450px;
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.split-col-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scaleX(-1);
}

/* Bloque "Nos preocupamos por ti" debajo del gato */
.split-col-nos-preocupamos {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.section-num-3 {
  position: absolute;
  top: 0;
  right: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: #888888;
  line-height: 1;
  pointer-events: none;
}

.split-col-nos-preocupamos .section-num-title {
  margin-bottom: 1rem;
}


/* ===== Filosofía + Productos (dos columnas) ===== */
.filosofia-productos {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: auto;
}

.fp-col {
  padding: 4rem 6.5rem;
}

.fp-filosofia {
  background: linear-gradient(180deg, #3d0505 0%, #1a0000 100%);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section-num-label-light {
  color: #5a5a5a !important;
  font-size: clamp(3rem, 7.5vw, 7rem) !important;
  left: 2rem !important;
  top: 0 !important;
}

.fp-title {
  margin: 5.5rem 0 1rem 0;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 2;
}

.text-salmon {
  color: var(--accent-red);
  display: block;
}

.fp-filosofia p {
  margin: 0 0 1.2rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 90%;
  position: relative;
  z-index: 2;
}

.fp-subtitle {
  margin: 3rem 0 1.5rem;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.fp-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.fp-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--text-white);
  font-weight: bold;
}


.fp-dog {
  margin-top: auto;
  padding-top: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.fp-dog img {
  max-width: 45%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}


/* Columna productos */
.fp-productos {
  background: var(--bg-black);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 4rem 6.5rem 5rem;
}

.fp-productos .section-num-label {
  color: #5a5a5a;
  font-size: clamp(3rem, 7.5vw, 7rem);
  left: 2rem;
  right: auto;
  top: 0;
}

.fp-products-title {
  margin: 2rem 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-red);
  letter-spacing: -0.02em;
}

.fp-products-title:first-of-type {
  margin-top: 5.5rem;
}

.bullet-red {
  color: var(--accent-red-bright);
}

.fp-products-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.fp-products-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-white);
}

.fp-products-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
  font-size: 1.2rem;
  top: -0.1rem;
}


.fp-products-list-simple li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

/* Próximamente highlight */
.proximamente-highlight {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
  border-left: 3px solid var(--accent-red);
  border-radius: 0 8px 8px 0;
}

.proximamente-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent-red);
  line-height: 1.1;
}

.proximamente-highlight .fp-products-list-simple {
  margin-bottom: 0;
}

.fp-presentaciones {
  margin: 2.5rem 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-red);
  letter-spacing: -0.02em;
}

.fp-bags {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fp-bag {
  padding: 0 1.25rem 0 1.75rem;
  background: linear-gradient(180deg, #1a2e1a 0%, #0d1a0d 100%);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  box-sizing: border-box;
}

.fp-bag-2 {
  width: 120px;
  height: 180px;
}

.fp-bag-2 .fp-bag-weight-overlay {
  font-size: 2.8rem;
}

.fp-bag-8 {
  width: 156px;
  height: 234px;
}

.fp-bag-20 {
  width: 192px;
  height: 288px;
}

.fp-bag-20 .fp-bag-weight-overlay {
  font-size: 4.5rem;
}

.fp-bag-visual {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 100px;
}

.fp-bag-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.fp-bag-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
}

.fp-bag-weight-overlay {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--accent-red);
  opacity: 0.9;
  position: absolute;
  top: 10%;
  left: 10%;
  line-height: 1;
  z-index: 2;
}

.fp-bag-kg {
  display: block;
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
}

.fp-list-products li {
  font-size: 1.05rem;
  font-weight: 700;
}

.fp-list-products li::before {
  color: var(--accent-red-bright);
}

/* ===== Secciones personalizadas Perro / Gato ===== */
.pet-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.pet-section--perro {
  background: linear-gradient(160deg, #1a0d00 0%, #000000 50%, #0d0500 100%);
  border-top: 1px solid rgba(227, 30, 36, 0.15);
}

.pet-section--gato {
  background: linear-gradient(160deg, #0a0a1a 0%, #000000 50%, #050510 100%);
  border-top: 1px solid rgba(255, 0, 127, 0.1);
}

.pet-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pet-section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.pet-section-body {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  font-weight: 400;
}

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

.pet-section-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-white);
}

.pet-section-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
}

.pet-section-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pet-section-image img {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
}

.pet-section--gato .pet-section-image img {
  transform: scaleX(-1);
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 2rem;
  background: var(--bg-black);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.footer-tagline {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ===== Mascot System ===== */
.mascot-system {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

/* Peek-in mascots */
.mascot-peek {
  position: fixed;
  width: 100px;
  pointer-events: none;
  z-index: 91;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mascot-peek img {
  width: 100%;
  height: auto;
}

.mascot-peek--cat {
  top: 30%;
  left: -110px;
}

.mascot-peek--dog {
  bottom: 18%;
  right: 0;
  transform: translateX(110px) scaleX(-1);
}

/* Peek-in: slide in from the side, stay visible, then slide back out */
@keyframes peekFromLeft {
  0% { transform: translateX(0); }
  12% { transform: translateX(90px); }
  70% { transform: translateX(90px); }
  78% { transform: translateX(95px); }
  85% { transform: translateX(90px); }
  100% { transform: translateX(0); }
}

@keyframes peekFromRight {
  0% { transform: translateX(110px) scaleX(-1); }
  12% { transform: translateX(20px) scaleX(-1); }
  70% { transform: translateX(20px) scaleX(-1); }
  78% { transform: translateX(15px) scaleX(-1); }
  85% { transform: translateX(20px) scaleX(-1); }
  100% { transform: translateX(110px) scaleX(-1); }
}

.mascot-peek--cat.active {
  animation: peekFromLeft 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.mascot-peek--dog.active {
  animation: peekFromRight 6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Virtual Assistant */
.mascot-assistant {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  pointer-events: auto;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mascot-assistant.show {
  opacity: 1;
  transform: scale(1);
}

.mascot-assistant-img {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(227, 30, 36, 0.3));
  transition: transform 0.2s ease;
}

.mascot-assistant-img:hover {
  transform: scale(1.1);
}

.mascot-bubble {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 0.75rem;
  background: var(--accent-red);
  color: white;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.8) translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
}

.mascot-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 24px;
  border: 6px solid transparent;
  border-top-color: var(--accent-red);
}

.mascot-bubble.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Text Shake — applied to visible text elements when dog walks */
@keyframes textShake {
  0%, 100% { transform: translate(0); }
  10% { transform: translate(-2px, 1px); }
  20% { transform: translate(2px, -1px); }
  30% { transform: translate(-1px, 2px); }
  40% { transform: translate(1px, -1px); }
  50% { transform: translate(-1px, -1px); }
  60% { transform: translate(2px, 1px); }
  70% { transform: translate(-2px, -1px); }
  80% { transform: translate(1px, 2px); }
  90% { transform: translate(-1px, -2px); }
}

.text-shaking {
  animation: textShake 0.4s ease-in-out infinite;
}

/* Screen shake fallback */
.screen-shake {
  animation: textShake 0.35s ease-in-out;
}

/* Mascot bounce animation */
@keyframes mascotBounce {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1) translateY(-6px); }
}

.mascot-assistant.show .mascot-assistant-img {
  animation: mascotBounce 2s ease-in-out infinite;
}

/* ===== Site Controls Bar (Day/Night + Seasons) ===== */
.site-controls {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 0 12px 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  transition: transform 0.3s ease;
}

.site-controls.collapsed {
  transform: translateY(-50%) translateX(-100%);
}

.controls-toggle {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 28px;
  height: 48px;
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  border-radius: 0 8px 8px 0;
  color: white;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.controls-toggle:hover {
  background: rgba(50, 50, 50, 0.9);
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  padding: 0;
  line-height: 1;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.control-btn.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.control-btn[title]::after {
  content: attr(title);
}

.controls-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.15rem 0;
}

/* Light mode */
body.theme-light {
  background: #f5f5f0;
  color: #1a1a1a;
}

body.theme-light .header {
  background: rgba(245, 245, 240, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .logo {
  color: #1a1a1a;
}

body.theme-light .nav-link {
  color: #333;
}

body.theme-light .hero {
  background: #f5f5f0;
}

body.theme-light .hero-quote-white {
  color: #1a1a1a;
}

body.theme-light .text-white {
  color: #1a1a1a;
}

body.theme-light .section-num-body,
body.theme-light .pet-section-body {
  color: #444;
}

body.theme-light .split-sections {
  background: #f5f5f0;
}

body.theme-light .split-col.section-1 {
  background: #ffffff;
}

body.theme-light .split-col.section-2 {
  background: #fafafa;
}

body.theme-light .fp-filosofia {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

body.theme-light .fp-productos {
  background: #f5f5f0;
}

body.theme-light .fp-productos .fp-products-list li {
  color: #333;
}

body.theme-light .fp-list li {
  color: #444;
}

body.theme-light .pet-section--perro {
  background: linear-gradient(180deg, rgba(227, 30, 36, 0.06) 0%, #f5f5f0 100%);
}

body.theme-light .pet-section--gato {
  background: linear-gradient(180deg, rgba(0, 50, 100, 0.06) 0%, #f5f5f0 100%);
}

body.theme-light .fundacion {
  background: linear-gradient(135deg, #fdf0f5 0%, #f5f5f0 100%);
}

body.theme-light .fundacion-white {
  color: #1a1a1a;
}

body.theme-light .fundacion-text p {
  color: #444;
}

body.theme-light .footer {
  background: #1a1a1a;
  color: #fff;
}

body.theme-light .hero-bg::after {
  background: linear-gradient(to top, #f5f5f0 0%, rgba(245, 245, 240, 0.6) 50%, transparent 100%);
}

body.theme-light .hero-collab {
  color: #333;
}

body.theme-light .hero-collab-line {
  color: #555;
}

body.theme-light .hero-logo-todo {
  color: #1a1a1a;
}

body.theme-light .proximamente-highlight {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.06) 0%, rgba(227, 30, 36, 0.02) 100%);
}

body.theme-light .bowl-label-text {
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
}

body.theme-light .pet-section-list li {
  color: #444;
}

body.theme-light .nav-dropdown {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .nav-dropdown-link {
  color: #333;
}

body.theme-light .nav-dropdown-link:hover {
  background: rgba(0, 0, 0, 0.04);
}

body.theme-light .site-controls {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
}

body.theme-light .controls-toggle {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
  color: #333;
}

body.theme-light .control-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: #333;
}

body.theme-light .control-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

body.theme-light .mascot-bubble {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .mascot-peek,
  .mascot-assistant,
  .mascot-bubble {
    transition: none;
  }
  .mascot-peek.active {
    animation: none;
  }
  .screen-shake {
    animation: none;
  }
  .text-shaking {
    animation: none;
  }
  .mascot-assistant.show .mascot-assistant-img {
    animation: none;
  }
}

/* Mobile: smaller assistant, controls at bottom */
@media (max-width: 900px) {
  .mascot-assistant {
    bottom: 1rem;
    right: 1rem;
  }
  .mascot-assistant-img {
    width: 50px;
  }
  .mascot-peek {
    width: 65px;
  }

  .site-controls {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
    padding: 0.4rem 0.75rem;
  }

  .site-controls.collapsed {
    transform: translateY(100%);
  }

  .controls-toggle {
    top: -28px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 24px;
    border-radius: 8px 8px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
  }

  .control-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ===== Scroll Animations ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in--delay-1 { transition-delay: 0.1s; }
.animate-in--delay-2 { transition-delay: 0.2s; }
.animate-in--delay-3 { transition-delay: 0.3s; }
.animate-in--delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .animate-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-dropdown {
    right: auto;
    left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 2rem;
    padding: 9.5rem 1.5rem 1.5rem;
  }

  .hero-quote {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    text-align: center;
    padding-bottom: 0;
  }

  .hero-bg {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    width: 100%;
    max-width: 380px;
  }

  .hero-bg img {
    max-width: 100%;
    max-height: 55vh;
  }

  .hero-collab {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    align-self: center;
    display: flex;
    padding: 0 2rem;
    flex-direction: column;
    align-items: center;
  }

  .hero-collab-line {
    text-align: center;
  }

  .split-sections {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .split-col {
    padding: 3rem 1.5rem;
    align-items: flex-start;
    text-align: left;
  }

  .split-col .section-num-content {
    align-items: flex-start;
    text-align: left;
  }

  .split-col .section-num-content .section-num-title,
  .split-col .section-num-content .section-num-body {
    text-align: left;
  }

  .split-col .section-num-content .section-num-body {
    margin-left: 0;
    margin-right: 0;
  }


  .split-col .section-num-label {
    display: none;
  }

  .section-num-3 {
    display: none;
  }

  .split-col .section-num-content:not(.split-col-nos-preocupamos) {
    margin-top: 0;
  }

  .split-col-croquetas {
    min-height: 256px;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 1rem;
  }

  .split-col-croquetas img {
    width: 80%;
    height: 80%;
  }

  .bowl-label {
    position: static;
  }

  .split-col-croquetas .bowl-label {
    order: 1;
  }

  .split-col-cat {
    height: 400px;
  }

  .filosofia-productos {
    grid-template-columns: 1fr;
  }

  .fp-col {
    padding: 3rem 2rem;
  }

  .fp-productos {
    padding: 4rem 2rem 5rem;
  }

  .fp-productos .section-num-label {
    left: 2rem;
  }

  .fp-col .section-num-label,
  .fp-col .section-num-label-light {
    display: none;
  }

  .fp-title {
    margin-top: 0;
  }

  .fp-products-title:first-of-type {
    margin-top: 0;
  }

  .fp-dog img {
    max-width: 65%;
  }

  .pet-section-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pet-section-image img {
    max-height: 300px;
  }

  .pet-section--gato .pet-section-image {
    order: -1;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.25rem;
  }

  .section-num-label {
    left: 1rem;
    font-size: 3rem;
  }

  .fp-bags {
    justify-content: center;
  }
}

/* ===== Seasonal Theme System ===== */

/* -- Particles container -- */
.seasonal-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
}

.seasonal-particle {
  position: absolute;
  top: -30px;
  animation: particleFall linear forwards;
  will-change: transform;
}

@keyframes particleFall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: var(--particle-opacity, 0.6);
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seasonal-particles {
    display: none;
  }
}

/* -- Christmas Theme (Dec 15-31) -- */
body.theme-christmas {
  --accent-red: #c41e3a;
  --accent-red-bright: #ff3b52;
  --accent-pink: #2d8f2d;
  --accent-salmon: #ff9999;
}

body.theme-christmas .header {
  background: rgba(15, 5, 5, 0.95);
  border-bottom-color: rgba(196, 30, 58, 0.2);
}

body.theme-christmas .hero-quote-red {
  color: #c41e3a;
}

body.theme-christmas .text-red {
  color: #c41e3a;
}

body.theme-christmas .logo {
  color: #c41e3a;
}

body.theme-christmas .pet-section--perro {
  background: linear-gradient(180deg, rgba(45, 143, 45, 0.15) 0%, #000000 100%);
}

body.theme-christmas .pet-section--gato {
  background: linear-gradient(180deg, rgba(196, 30, 58, 0.15) 0%, #000000 100%);
}

body.theme-christmas .fundacion {
  background: linear-gradient(135deg, #1a0505 0%, #0a1a0a 50%, #000 100%);
}

body.theme-christmas .mascot-assistant-img {
  filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.4));
}

body.theme-christmas .proximamente-highlight {
  border-left-color: #2d8f2d;
}

/* -- Halloween Theme (Oct 20-31) -- */
body.theme-halloween {
  --accent-red: #ff6600;
  --accent-red-bright: #ff8833;
  --accent-pink: #9933cc;
  --accent-salmon: #ff9966;
}

body.theme-halloween .header {
  background: rgba(10, 5, 15, 0.95);
  border-bottom-color: rgba(153, 51, 204, 0.2);
}

body.theme-halloween .hero-quote-red {
  color: #ff6600;
}

body.theme-halloween .text-red {
  color: #ff6600;
}

body.theme-halloween .logo {
  color: #ff6600;
}

body.theme-halloween .pet-section--perro {
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.12) 0%, #000000 100%);
}

body.theme-halloween .pet-section--gato {
  background: linear-gradient(180deg, rgba(153, 51, 204, 0.15) 0%, #000000 100%);
}

body.theme-halloween .fundacion {
  background: linear-gradient(135deg, #1a0a00 0%, #0d0520 50%, #000 100%);
}

body.theme-halloween .mascot-assistant-img {
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.5));
}

body.theme-halloween .proximamente-highlight {
  border-left-color: #9933cc;
}

body.theme-halloween .fundacion-pink {
  color: #9933cc;
}

/* -- Valentines Theme (Feb 10-14) -- */
body.theme-valentines {
  --accent-red: #e8365d;
  --accent-red-bright: #ff4d73;
  --accent-pink: #ff69b4;
  --accent-salmon: #ffb3cc;
}

body.theme-valentines .header {
  background: rgba(15, 5, 10, 0.95);
  border-bottom-color: rgba(255, 105, 180, 0.15);
}

body.theme-valentines .hero-quote-red {
  color: #e8365d;
}

body.theme-valentines .text-red {
  color: #e8365d;
}

body.theme-valentines .logo {
  color: #ff69b4;
}

body.theme-valentines .pet-section--perro {
  background: linear-gradient(180deg, rgba(232, 54, 93, 0.12) 0%, #000000 100%);
}

body.theme-valentines .pet-section--gato {
  background: linear-gradient(180deg, rgba(255, 105, 180, 0.12) 0%, #000000 100%);
}

body.theme-valentines .mascot-assistant-img {
  filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.5));
}

/* -- Día de Muertos Theme (Nov 1-2) -- */
body.theme-dia-muertos {
  --accent-red: #ff8c00;
  --accent-red-bright: #ffa500;
  --accent-pink: #e040fb;
  --accent-salmon: #ffcc66;
}

body.theme-dia-muertos .header {
  background: rgba(10, 5, 0, 0.95);
  border-bottom-color: rgba(255, 140, 0, 0.2);
}

body.theme-dia-muertos .hero-quote-red {
  color: #ff8c00;
}

body.theme-dia-muertos .text-red {
  color: #ff8c00;
}

body.theme-dia-muertos .logo {
  color: #ff8c00;
}

body.theme-dia-muertos .pet-section--perro {
  background: linear-gradient(180deg, rgba(255, 140, 0, 0.12) 0%, #000000 100%);
}

body.theme-dia-muertos .pet-section--gato {
  background: linear-gradient(180deg, rgba(224, 64, 251, 0.12) 0%, #000000 100%);
}

body.theme-dia-muertos .fundacion {
  background: linear-gradient(135deg, #1a0d00 0%, #150520 50%, #000 100%);
}

body.theme-dia-muertos .mascot-assistant-img {
  filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.5));
}

body.theme-dia-muertos .fundacion-pink {
  color: #e040fb;
}

/* -- New Year Theme (Jan 1-5) -- */
body.theme-newyear {
  --accent-red: #ffd700;
  --accent-red-bright: #ffe033;
  --accent-pink: #c0c0c0;
  --accent-salmon: #ffe580;
}

body.theme-newyear .header {
  background: rgba(10, 8, 0, 0.95);
  border-bottom-color: rgba(255, 215, 0, 0.2);
}

body.theme-newyear .hero-quote-red {
  color: #ffd700;
}

body.theme-newyear .text-red {
  color: #ffd700;
}

body.theme-newyear .logo {
  color: #ffd700;
}

body.theme-newyear .pet-section--perro {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, #000000 100%);
}

body.theme-newyear .pet-section--gato {
  background: linear-gradient(180deg, rgba(192, 192, 192, 0.1) 0%, #000000 100%);
}

body.theme-newyear .mascot-assistant-img {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}