﻿#loader,
body {
  background: var(--white)
}

#loader,
.navbar {
  position: fixed;
  left: 0;
  top: 0
}

.btn,
.hero-bg,
.hist-slider,
.map-container,
.raza-card {
  overflow: hidden
}

#nav-toggle,
.back-to-top,
.btn {
  cursor: pointer
}

#main-nav a,
.btn.mini,
.footer a,
.sf-btn,
.social-btn {
  text-decoration: none
}

:root {
  /* 1° Blanco cálido — fondo dominante */
  --white:  #FFF5DC;
  /* 2° Miel — acento, botones, headings */
  --gold:   #D4920A;
  /* 3° Chocolate — navbar, footer, estructural */
  --dark:   #2C1A08;
  --gray:   #5A3A18;
  /* Negro — texto, letras */
  --text:   #1A0E04;
  --shadow: 0 8px 28px rgba(26, 14, 4, 0.12);
  --transition: all 0.4s ease
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  scroll-behavior: smooth
}

html, body {
  max-width: 100vw;
  width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--text);
}

#loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999
}

.loader-logo {
  width: 100px;
  animation: 2s linear infinite spin;
  border-radius: 50%;
  border: 3px solid var(--gold);
  padding: 8px;
  box-shadow: 0 0 20px rgba(212, 146, 10, .4)
}

#main-nav a.active::after,
#main-nav a:hover::after,
.navbar {
  width: 100%
}

@keyframes spin {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

.navbar {
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(44, 27, 9, .5);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: var(--transition)
}

.navbar.scrolled {
  background: linear-gradient(90deg, rgba(38, 18, 6, .97), rgba(48, 22, 8, .97));
  box-shadow: var(--shadow)
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.logo-img {
  width: 85px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transition: transform .3s;
  margin-left: -15px;
  margin-top: -4px
}

.logo-img:hover {
  transform: scale(1.1) rotate(-5deg)
}

#main-nav {
  display: flex;
  gap: 35px
}

#main-nav a {
  position: relative;
  color: #fff;
  font-weight: 600;
  transition: color .3s;
  padding: 10px 12px
}

#main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width .3s
}

#main-nav a.active,
#main-nav a:hover {
  color: var(--gold)
}

#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  background: 0 0;
  border: none;
}

#nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

#nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

#nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

#nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.full-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center
}

.full-hero .animated-bg {
  animation: 10s ease-in-out infinite alternate bgMove
}

@keyframes bgMove {
  0% {
    background-position: 0 50%
  }

  100% {
    background-position: 100% 50%
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--white);
  max-width: 600px;
  padding-left: 6%;
  animation: 1s forwards slideUp
}

.btn.gold,
.section,
.service {
  text-align: center
}

.hero-dog,
.hero-dog-left {
  bottom: 0;
  width: auto;
  filter: brightness(.9);
  animation: 2s fadeInHero;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: .8
}

.hero-content h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #D4920A, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.hero-content p {
  margin-top: 10px;
  color: #ddd;
  font-size: 1.2rem
}

.contact .btn,
.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-btn-main {
  min-width: 240px;
  text-align: center;
}

.hero-btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.hero-btn-row .btn {
  min-width: 160px;
  text-align: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .hero-btn-row {
    flex-direction: column;
    width: 100%;
  }
  .hero-btn-row .btn,
  .hero-btn-main {
    min-width: 0;
    width: 100%;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: scale(1.05)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.hero-bg {
  position: absolute;
  inset: 0
}

.hero-dog {
  right: 0
}

.hero-dog-left {
  left: 0;
  right: auto;
  transform: scaleX(-1);
  z-index: 1
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(38, 18, 6, 0.97) 0%, transparent 50%, rgba(38, 18, 6, 0.97) 100%),
              linear-gradient(0deg, rgba(38, 18, 6, 0.4) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.btn,
.hist-slider,
.raza-card,
.service {
  position: relative
}

.section {
  padding: 120px 20px 100px
}

.container {
  max-width: 1200px;
  margin: auto
}

.section h1,
.section h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 15px
}

.lead {
  color: #aaa;
  margin-bottom: 40px
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .35s
}

.btn.primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 146, 10, .35)
}

.btn.primary:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(212, 146, 10, .5)
}

.btn.outline {
  background: 0 0;
  border: 2px solid var(--gold);
  color: var(--gold)
}

.btn.gold,
.btn.mini,
.btn.mini:hover {
  color: var(--dark)
}

.btn.outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.07)
}

.btn.btn-catalogo {
  background: linear-gradient(135deg, #2C1B09, #2a2a2a);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.btn-catalogo:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.07);
  box-shadow: 0 6px 20px rgba(212, 146, 10,.45);
}

.btn.gold {
  background: var(--gold);
  border: none;
  font-weight: 600;
  width: 70%
}

.btn.gold:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 16px rgba(212, 146, 10, .5);
  background: #D4920A;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .35);
  transform: skewX(-25deg);
  transition: .5s
}

.btn:hover::before {
  left: 100%
}

.btn:active {
  transform: scale(.95)
}

.razas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  min-height: 340px;
  align-items: stretch
}

.raza-card {
  background: var(--gray);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%
}

.garantia,
.service {
  background: #3A2412
}

.raza-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 20px rgba(212, 146, 10, .3)
}

.raza-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .6s
}

.raza-card:hover img {
  transform: scale(1.1)
}

.raza-card h3 {
  color: var(--gold);
  margin: 15px 0 5px
}

.raza-card p {
  color: #ccc
}

.btn.gold {
  background: var(--gold);
  display: block;
  width: fit-content;
  margin: auto auto 20px;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background .3s, transform .2s
}

.raza-card::after {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition)
}

.raza-card:hover::after {
  opacity: .8
}

/* ═══ CARRUSEL DE RAZAS (dinámico, administrado desde Admin → Razas y Precios) ═══ */
.raza-carrusel-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.raza-carrusel-track {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 22px;
  min-height: 320px;
}

/* Si hay menos de 3 tarjetas visibles (pocas razas activas todavía), que no
   se estiren para llenar todo el ancho ni dejen huecos raros */
.raza-carrusel-track:has(.rc-card:only-child) { grid-template-columns: minmax(0, 380px); }
.raza-carrusel-track:has(.rc-card:nth-child(2):last-child) { grid-template-columns: repeat(2, minmax(0, 380px)); }

.rc-cargando {
  grid-column: 1 / -1;
  text-align: center;
  color: #9A7040;
  padding: 60px 0;
}

.rc-card {
  background: #fff;
  border: 1.5px solid rgba(212, 146, 10, 0.18);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(44, 26, 8, 0.08);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s, border-color 0.35s;
  animation: rcIn 0.45s ease;
}

@keyframes rcIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 146, 10, 0.5);
  box-shadow: 0 16px 40px rgba(44, 26, 8, 0.15);
}

.rc-img-wrap {
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, #FBEBCB 0%, #F6DDA8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rc-img-placeholder {
  font-size: 2rem;
  color: rgba(212, 146, 10, 0.35);
}

.rc-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rc-cat-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9A6200;
  background: rgba(212, 146, 10, 0.1);
  border: 1px solid rgba(212, 146, 10, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}

.rc-info h3 {
  font-size: 1.15rem;
  color: #2C1A08;
  margin: 2px 0 0;
}

.rc-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  transition: gap 0.2s;
}

.rc-card:hover .rc-cta { gap: 10px; }

.rc-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(212, 146, 10, 0.3);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.25s;
  box-shadow: 0 4px 14px rgba(44, 26, 8, 0.08);
}

.rc-arrow:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.08);
}

.rc-sin-flechas .rc-arrow { display: none; }

@media (max-width: 900px) {
  .raza-carrusel-track { grid-template-columns: repeat(2, 1fr); }
  .rc-card:nth-child(3) { display: none; }
}

@media (max-width: 600px) {
  .raza-carrusel-track { grid-template-columns: 1fr; }
  .rc-card:nth-child(2), .rc-card:nth-child(3) { display: none; }
  .raza-carrusel-wrap { gap: 8px; }
  .rc-arrow { width: 36px; height: 36px; font-size: .85rem; }
}

.section.alt {
  background: #221408
}

.hist-slider {
  max-width: 800px;
  margin: 20px auto
}

.slide {
  display: none;
  color: #fff;
  font-size: 1.2rem
}

.faq-item h4,
.garantia i,
.service h4,
.service-icon {
  color: var(--gold)
}

.slide.active {
  display: block;
  animation: 1s slideUp
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px
}

.service {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
  padding: 32px 20px 24px;
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid var(--gold)
}

.garantia,
.map-container,
.social-btn {
  box-shadow: var(--shadow)
}

.back-to-top,
.footer a,
.reveal,
.social-btn {
  transition: var(--transition)
}

.service:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(212, 146, 10, .18)
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px
}

.service h4 {
  font-size: 1.3rem;
  margin-bottom: 10px
}

.btn.mini {
  margin-top: 18px;
  padding: 7px 18px;
  font-size: .95rem;
  border-radius: 30px;
  background: var(--gold);
  border: none;
  transition: background .2s
}

.btn.mini:hover {
  background: #fff3c4
}

.garantias-box {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: 30px auto;
  text-align: left
}

.garantia {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px
}

.garantia i {
  font-size: 1.5rem
}

.nota {
  margin-top: 15px;
  font-size: .95rem;
  color: #aaa
}

.faq-item {
  background: var(--gray);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  text-align: left
}

.faq-item h4 {
  margin-bottom: 5px
}

.faq-item p {
  color: #bbb
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
  flex-wrap: wrap
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem
}

.social-btn i {
  font-size: 1.3rem
}

.sf-btn.whatsapp,
.social-btn.whatsapp {
  background: #25d366
}

.sf-btn.facebook,
.social-btn.facebook {
  background: #1877f2
}

.sf-btn.instagram,
.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888)
}

.social-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, .5)
}

.map-container {
  margin-top: 20px;
  border-radius: 12px
}

/* ═════════════��════════════════════════
   RESEÑAS
══════════════════════════════���═══════ */
.resenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0 32px;
}

.resena-card {
  background: linear-gradient(145deg, #3A2412, #111);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, border-color .25s;
}

.resena-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 146, 10,.25);
}

.resena-foto-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.resena-foto {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(212, 146, 10,.2);
  flex-shrink: 0;
}

.resena-avatar {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(212, 146, 10,.1);
  border: 1px solid rgba(212, 146, 10,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.resena-nombre {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.resena-raza {
  font-size: .75rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
}

.resena-estrellas {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: 1px;
}

.resena-msg {
  font-size: .88rem;
  color: #aaa;
  line-height: 1.6;
  flex: 1;
}

.resena-img-adjunta {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 180px;
  border: 1px solid rgba(255,255,255,.07);
}

.resenas-cargando {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gold);
  padding: 40px 0;
  font-size: .9rem;
}

.resenas-cta-area {
  text-align: center;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ── Reseña con foto (admin) ── */
.resena-card--foto {
  padding: 0;
  overflow: hidden;
  border-color: rgba(212, 146, 10,.2);
}

.resena-foto-full {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.resena-foto-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resena-foto-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
}

.resena-card--foto .resena-msg {
  padding: 16px 20px 20px;
  margin: 0;
}

/* ── Reseña texto (usuario) ── */
.resena-card--texto {
  position: relative;
}

.resena-quote-icon {
  color: rgba(212, 146, 10,.25);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: -6px;
}

.resena-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.resena-avatar-sm {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 146, 10,.15);
  border: 1px solid rgba(212, 146, 10,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.resenas-cta-area p {
  color: #666;
  font-size: .9rem;
}

/* Modal reseña */
.modal-resena-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  backdrop-filter: blur(6px);
}

.modal-resena-box {
  background: #221408;
  border: 1px solid rgba(212, 146, 10,.2);
  border-radius: 22px;
  padding: 32px 28px;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-resena-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.07);
  border: none;
  color: #aaa;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.modal-resena-close:hover { background: rgba(255,255,255,.15); color: #fff; }

.mrb-header {
  text-align: center;
  margin-bottom: 24px;
}

.mrb-icon {
  font-size: 2rem;
  color: #e74c5e;
  display: block;
  margin-bottom: 10px;
}

.mrb-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.mrb-header p {
  font-size: .84rem;
  color: #666;
  line-height: 1.5;
}

.rform-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.rform-group label {
  font-size: .78rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.rform-group input,
.rform-group textarea {
  background: #2C1B09;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
}

.rform-group input:focus,
.rform-group textarea:focus {
  border-color: rgba(212, 146, 10,.4);
}

.rform-file {
  color: #666;
  font-size: .82rem;
  padding: 8px 0 !important;
  background: transparent !important;
  border: none !important;
}

/* ═══════════════���══════════════════════
   FAQ
══════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: linear-gradient(145deg, #3A2412, #111);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open {
  border-color: rgba(212, 146, 10,.25);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #ddd;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: color .2s;
}

.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }

.faq-arrow {
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--gold);
  transition: transform .3s;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 22px;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 22px 20px;
}

.faq-a p {
  font-size: .88rem;
  color: #999;
  line-height: 1.7;
  margin-bottom: 10px;
}

.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: #ccc; }
.faq-a em { color: #aaa; font-style: normal; }

/* ══════════���═══════════════════════════
   NAV FAQ/RESEÑAS
══════════════════════════════════════ */

.footer {
  background: #1E1006;
  color: #bbb;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-wrap h3 {
  font-size: 1.2rem;
  color: #fff;
}

.footer-logo-wrap span { color: var(--gold); }

.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: #888; margin-bottom: 20px; }

.footer-address { color: var(--gold); font-size: 0.9rem; font-weight: 600; }

.footer h4 { color: #fff; margin-bottom: 25px; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #888; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; }
.footer-links a:hover { color: var(--gold); transform: translateX(5px); }

.social-links { display: flex; gap: 15px; }
.social-links a { 
  width: 40px; height: 40px; background: #151515; border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  color: #fff; font-size: 1.1rem; transition: 0.3s;
}
.social-links a:hover { background: var(--gold); color: #000; transform: translateY(-5px); }

.footer-bottom { 
  border-top: 1px solid rgba(255, 255, 255, 0.03); 
  padding: 25px 0; 
  background: #1E1006;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom .copy { margin: 0; font-size: 0.8rem; }
.footer-bottom .footer-legal { font-size: 0.8rem; color: #555; }


.footer-logo {
  width: 70px;
  border-radius: 12px;
  border: 2px solid var(--gold)
}

.footer a {
  color: #777;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.copy {
  margin-top: 25px;
  color: #777;
  font-size: .9rem
}

.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  opacity: 0;
  visibility: hidden
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  animation: 1.5s infinite pulseGold
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 146, 10, .6)
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 146, 10, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 146, 10, 0)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px)
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

@media (max-width:1024px) {
  .razas-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:768px) {
  #main-nav {
    display: none;
    flex-direction: column;
    background: #2C1A08;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 16px 20px 24px;
    border-radius: 0 0 20px 20px;
    border-top: 1px solid rgba(212, 146, 10,0.15);
    border-bottom: 1px solid rgba(212, 146, 10,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  }

  #main-nav.nav-open {
    display: flex;
    animation: slideDownNav 0.25s ease forwards;
  }

  @keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  #main-nav a {
    margin: 4px 0;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
  }

  #main-nav a:last-child {
    border-bottom: none;
  }

  #nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem
  }

  .razas-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:600px) {
  .social-floating {
    top: auto;
    bottom: 90px;
    right: 12px;
    transform: none;
    flex-direction: row;
    gap: 10px
  }
}

.social-floating {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1200
}

.sf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  background: #222;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
  transition: background .2s, transform .2s
}

.sf-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 0 12px rgba(212, 146, 10, .25)
}

/* ==== MÉTODOS DE PAGO ==== */
.pagos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  justify-items: center;
  margin-top: 30px;
}

.pago-card {
  background: #3A2412;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 160px;
}

.pago-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 8px 32px rgba(212, 146, 10, 0.25);
}

.pago-logo {
  font-size: 64px !important;
  /* tamaño grande para todos */
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.pago-card span {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}

.raza-card img,
.carousel-track img {
  border: 2px solid #D4920A;
  /* Marco fino */
  border-radius: 14px;
  padding: 3px;
  background: #2C1B09;
  box-shadow: 0 0 12px rgba(212, 146, 10, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.raza-card img:hover,
.carousel-track img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(212, 146, 10, 0.45);
}

.service {
  background: #221408;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
}

.service-img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* ===== KIT DE BIENVENIDA ===== */
.kit-box {
  text-align: center;
  background: linear-gradient(135deg, #000000, #2C1B09, #D4920A);
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(212, 146, 10, 0.3);
}

.kit-box h2 {
  color: #D4920A;
  font-size: 2rem;
  margin-bottom: 12px;
}

.kit-box .lead {
  color: #fff;
  margin-bottom: 25px;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.kit-item {
  background: #221408;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kit-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 20px rgba(212, 146, 10, 0.6);
}

.kit-item i {
  font-size: 3rem;
  color: #D4920A;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.kit-item:hover i {
  transform: rotate(12deg) scale(1.2);
}

.kit-item h4 {
  color: #D4920A;
  margin-bottom: 6px;
}

.kit-item p {
  color: #ccc;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* toda la pantalla */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Fondo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Perros */
.hero-dog {
  position: absolute;
  bottom: 0;
  width: 51%; /* Pequeño solapamiento para evitar línea blanca central */
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: brightness(.95);
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  transform-origin: bottom center;
}

/* Izquierda */
.hero-dog-left {
  right: 50%;
  /* Se ancla exactamente en el centro para ser simétrico */
  left: auto;
  transform: scaleX(-1);
  --scaleX: -1;
  z-index: 2;
  /* Para que un perro quede ligeramente encima del otro si se superponen */
}

/* Derecha */
.hero-dog-right {
  left: 50%;
  /* Se ancla exactamente en el centro para ser simétrico */
  right: auto;
  --scaleX: 1;
  z-index: 1;
}

/* Texto centrado */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 20px;
  color: #fff;
  opacity: 0;
  animation: fadeIn 2.2s ease forwards;
  animation-delay: 0.5s;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

/* Fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Carrusel de perros */
.dog-fade-1 {
  animation: dogCarousel1 12s infinite ease-in-out forwards !important;
}

.dog-fade-2 {
  animation: dogCarousel2 12s infinite ease-in-out forwards !important;
  opacity: 0;
}

@keyframes dogCarousel1 {

  0%,
  40% {
    opacity: 1;
    transform: scale(1) scaleX(var(--scaleX, 1)) translateY(0);
  }

  50%,
  90% {
    opacity: 0;
    transform: scale(1.02) scaleX(var(--scaleX, 1)) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) scaleX(var(--scaleX, 1)) translateY(0);
  }
}

@keyframes dogCarousel2 {

  0%,
  40% {
    opacity: 0;
    transform: scale(1.05) scaleX(var(--scaleX, 1));
  }

  50%,
  90% {
    opacity: 1;
    transform: scale(1) scaleX(var(--scaleX, 1));
  }

  100% {
    opacity: 0;
    transform: scale(1.05) scaleX(var(--scaleX, 1));
  }
}

/* Center fade mask has been removed as images now touch directly */
.hero-center-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 146, 10, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

/* ==== ADMIN PANEL PREMIUM DESIGN ==== */
.admin-container {
  background: var(--gray);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(212, 146, 10, 0.2);
  box-shadow: var(--shadow);
  margin-top: 100px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 15px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #221408;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.admin-table th {
  background: var(--gold);
  color: var(--dark);
  padding: 15px;
  text-align: left;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.admin-table td {
  padding: 15px;
  border-bottom: 1px solid #222;
}

.admin-table tr:hover {
  background: rgba(212, 146, 10, 0.05);
}

.status-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: bold;
}

.status-stock {
  background: #27ae60;
  color: #fff;
}

.status-empty {
  background: #e74c3c;
  color: #fff;
}

.admin-actions .btn {
  margin-right: 5px;
}

/* ==== MEJORAS FORMULARIO ADMIN ==== */
.admin-form-container {
  background: #221408;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--gold);
  margin-bottom: 30px;
  display: none;
  /* Se activa con JS */
  animation: slideUp 0.5s ease;
}

.admin-form-container h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.admin-input-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.admin-input-group input,
.admin-input-group select {
  background: #222;
  border: 1px solid #444;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  outline: none;
}

.admin-input-group input:focus {
  border-color: var(--gold);
}

.btn-save {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.btn-cancel {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  margin-left: 10px;
  cursor: pointer;
}

/* Animación para la tabla */
.admin-table tr {
  transition: transform 0.3s ease;
}

.admin-table tr:hover {
  transform: scale(1.01);
  background: rgba(212, 146, 10, 0.1) !important;
}

.category-badge {
  background: #333;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.7rem;
  text-transform: uppercase;
}

/* Estilos para los nuevos controles de filtro y búsqueda */
.filter-search-controls input,
.filter-search-controls select {
  background: #222;
  border: 1px solid #444;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.filter-search-controls input:focus,
.filter-search-controls select:focus {
  border-color: var(--gold);
}

.card-cachorro {
  background: radial-gradient(circle at bottom left, #2C1B09 0%, #1E1006 100%);
  border: 1.5px solid var(--gold);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(212, 146, 10, 0.05);
  position: relative;
}

.raza-card {
  background: linear-gradient(145deg, #161616, #1E1006);
  border: 1px solid rgba(212, 146, 10, 0.15);
  border-radius: 22px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.raza-card::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(212, 146, 10,0.2) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  z-index: 1;
  pointer-events: none;
}

.raza-card:hover::before {
  left: 150%;
}

.raza-card:hover {
  border-color: rgba(212, 146, 10, 0.7);
  box-shadow: 0 15px 40px rgba(212, 146, 10, 0.35), inset 0 0 20px rgba(212, 146, 10, 0.1);
  transform: translateY(-12px) scale(1.02);
}

.raza-card img {
  border-radius: 22px 22px 0 0;
  border-bottom: 3px solid var(--gold);
  filter: grayscale(15%) brightness(0.9);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.raza-card:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.06);
}

.card-cachorro:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 146, 10, 0.2);
  transform: translateY(-10px);
}

.card-cachorro h3 {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin: 15px 0 5px;
}

.card-precio {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.card-precio span {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
}

/* Contenedor Preview Admin */
.admin-preview-part {
  background: #1E1006;
  padding: 20px;
  border-radius: 15px;
  border: 1px dashed #444;
}

/* ═══════════════════════════════════════
   GARANTÍAS - SECCIÓN MEJORADA
═══════════════════════════════════════ */
.garantias-section {
  background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
}

.garantias-header {
  text-align: center;
  margin-bottom: 50px;
}

.garantias-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 146, 10, 0.1);
  border: 1px solid rgba(212, 146, 10, 0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.garantias-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 14px;
}

.garantias-header h2 .gold-text {
  color: var(--gold);
  background: linear-gradient(90deg, #D4920A, #f5e0a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.garantias-subtitle {
  color: #999;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Grid de cards */
.garantias-grid-nueva {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.garantia-card {
  background: linear-gradient(145deg, #161616, #111);
  border: 1px solid rgba(212, 146, 10, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.35s ease;
  cursor: default;
}

.garantia-card:hover {
  border-color: rgba(212, 146, 10, 0.45);
  background: linear-gradient(145deg, #2C1B09, #3A2412);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 146, 10, 0.1);
}

.garantia-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 146, 10, 0.1);
  border: 1px solid rgba(212, 146, 10, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.garantia-icon i {
  font-size: 1.3rem;
  color: var(--gold);
}

.garantia-texto {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.garantia-texto strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.garantia-texto span {
  color: #888;
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Banner veterinaria certificada */
.vet-certificada-banner {
  background: linear-gradient(135deg, rgba(212, 146, 10, 0.08) 0%, rgba(212, 146, 10, 0.02) 100%);
  border: 1px solid rgba(212, 146, 10, 0.25);
  border-radius: 18px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
}

.vet-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(212, 146, 10, 0.12);
  border: 2px solid rgba(212, 146, 10, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vet-icon-wrap i {
  font-size: 1.8rem;
  color: var(--gold);
}

.vet-text {
  flex: 1;
}

.vet-text strong {
  color: var(--gold);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 8px;
}

.vet-text p {
  color: #aaa;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.vet-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.vet-badge i {
  font-size: 2.2rem;
  color: var(--gold);
}

.vet-badge span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .garantias-header h2 {
    font-size: 1.8rem;
  }

  .garantias-grid-nueva {
    grid-template-columns: 1fr;
  }

  .vet-certificada-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .vet-text p {
    text-align: center;
  }

  /* Responsive Hero: Mostrar solo un perro en móvil */
  .hero-dog-left {
    display: none !important;
  }
  .hero-dog-right {
    width: 100% !important;
    left: 0 !important;
    right: auto !important;
  }
}

/* ═══════════════════════════════════════
   MÉTODOS TITLE
═══════════════════════════════════════ */
.metodos-title {
  color: var(--gold);
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, #1E1006 0%, #111 50%, #1E1006 100%);
  border-top: 1px solid rgba(212, 146, 10,0.12);
  border-bottom: 1px solid rgba(212, 146, 10,0.12);
  padding: 52px 20px;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #1A0800;
  -webkit-text-fill-color: #1A0800;
  line-height: 1;
}

@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.stat-sym {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1A0800;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  font-weight: 600;
}

.stat-sep {
  font-size: 1.2rem;
  opacity: 0.25;
  user-select: none;
}

@media (max-width: 600px) {
  .stat-sep  { display: none; }
  .stats-inner { gap: 28px; }
  .stat-num  { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════
   BREED MARQUEE
═══════════════════════════════════════ */
.breed-marquee-wrap {
  background: #1E1006;
  border-bottom: 1px solid rgba(212, 146, 10,0.07);
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}

.breed-marquee-wrap::before,
.breed-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.breed-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #1E1006, transparent);
}

.breed-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #1E1006, transparent);
}

.breed-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}

.breed-marquee-track:hover {
  animation-play-state: paused;
}

.breed-marquee-track span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: color 0.3s;
  cursor: default;
}

.breed-marquee-track span:not(.m-paw):hover {
  color: var(--gold);
}

.breed-marquee-track .m-paw {
  color: var(--gold);
  opacity: 0.3;
  font-size: 0.6rem;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   PAW PARTICLES
═══════════════════════════════════════ */
.paw-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.paw-particle {
  position: absolute;
  color: rgba(212, 146, 10, 0.25);
  pointer-events: none;
  animation: floatPaw var(--dur, 10s) var(--dly, 0s) ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes floatPaw {
  0%   { opacity: 0; transform: translateY(20px) rotate(0deg) scale(0.4); }
  15%  { opacity: 0.8; }
  85%  { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-90vh) rotate(420deg) scale(1.1); }
}

/* ═══════════════════════════════════════
   STAGGERED REVEAL DELAYS
═══════════════════════════════════════ */
.razas-grid .raza-card:nth-child(1) { transition-delay: 0s; }
.razas-grid .raza-card:nth-child(2) { transition-delay: 0.12s; }
.razas-grid .raza-card:nth-child(3) { transition-delay: 0.24s; }

.services-grid .service:nth-child(1) { transition-delay: 0s; }
.services-grid .service:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════
   RAZA CARD CONTENT POLISH
═══════════════════════════════════════ */
.raza-card h3,
.raza-card p {
  padding-left: 16px;
  padding-right: 16px;
}

.raza-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.raza-card p {
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   HERO CONTENT BADGE
═══════════════════════════════════════ */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 146, 10,0.1);
  border: 1px solid rgba(212, 146, 10,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
  animation: fadeIn 2.5s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

/* ═══════════════════════════════════════
   BACK TO TOP MEJORA
═══════════════════════════════════════ */
.back-to-top {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ═══════════════════════════════════════
   LOADER MEJORADO
═══════════════════════════════════════ */
#loader {
  flex-direction: column;
  gap: 20px;
}

.loader-text {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ═══════════════════════════════════════
   BARRA ANUNCIO (PROMO BAR)
═══════════════════════════════════════ */
.promo-bar {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
  z-index: 1001;
}
.promo-track {
  display: inline-flex;
  animation: promoScroll 32s linear infinite;
  will-change: transform;
}
.promo-track span {
  font-size: .76rem;
  font-weight: 700;
  color: #2C1B09;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 0 18px;
  flex-shrink: 0;
}
.promo-track .pb-sep { color: rgba(0,0,0,.3); padding: 0 4px; }
@keyframes promoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════ */
.float-wa-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-wa-btn {
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s;
  position: relative;
}
.float-wa-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: waPulse 2s ease-out infinite;
}
.float-wa-btn:hover { transform: scale(1.08); }
.float-wa-bubble {
  background: #fff;
  color: #2C1B09;
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px 20px 0 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateX(12px);
  transition: all .3s;
  pointer-events: none;
  white-space: nowrap;
}
.float-wa-wrap:hover .float-wa-bubble { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ═══════════════════════════════════════
   TOAST ACTIVIDAD RECIENTE
═══════════════════════════════════════ */
.activity-toast {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9998;
  background: #2C1B09;
  border: 1px solid rgba(212, 146, 10,.2);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 290px;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
  transform: translateY(110px);
  opacity: 0;
  transition: all .45s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.activity-toast.show { transform: translateY(0); opacity: 1; }
.at-icon {
  width: 38px; height: 38px;
  background: rgba(37,211,102,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #25d366; font-size: 1rem; flex-shrink: 0;
}
.at-text strong { font-size: .8rem; color: #fff; display: block; line-height: 1.3; }
.at-text span   { font-size: .7rem; color: #666; }
.at-dot {
  width: 7px; height: 7px;
  background: #25d366; border-radius: 50%;
  animation: atBlink 1.5s ease-in-out infinite; flex-shrink: 0;
}
@keyframes atBlink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ═══════════════════════════════════════
   SECCIÓN DISPONIBLES AHORA
═══════════════════════════════════════ */
.disponibles-section { padding: 10px 0 60px; }
.disponibles-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}
.disponibles-header h2 { margin: 0; font-size: 1.55rem; }
.disponibles-live {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: #25d366; font-weight: 600;
}
.live-dot {
  width: 8px; height: 8px;
  background: #25d366; border-radius: 50%;
  animation: atBlink 1.2s ease-in-out infinite;
}
.disponibles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.dispo-card {
  background: linear-gradient(145deg,#3A2412,#111);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: pointer; text-decoration: none; display: block;
}
.dispo-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(212, 146, 10,.18);
}
.dispo-img-wrap { position: relative; height: 175px; overflow: hidden; }
.dispo-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dispo-card:hover .dispo-img-wrap img { transform: scale(1.06); }
.dispo-badge-live {
  position: absolute; top: 10px; left: 10px;
  background: rgba(37,211,102,.15); border: 1px solid rgba(37,211,102,.4);
  color: #25d366; font-size: .66rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .4px;
  display: flex; align-items: center; gap: 5px;
}
.dispo-badge-live::before {
  content: ''; width: 5px; height: 5px;
  background: #25d366; border-radius: 50%;
  animation: atBlink 1.2s ease-in-out infinite;
}
.dispo-body { padding: 13px 15px 15px; }
.dispo-name { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.dispo-cat  { font-size: .73rem; color: #666; display: flex; align-items: center; gap: 5px; }
.dispo-cat i { color: var(--gold); }
.dispo-cta {
  margin-top: 10px; display: flex; align-items: center;
  gap: 6px; color: var(--gold); font-size: .8rem; font-weight: 700;
}

/* ═══════════════════════════════════════
   RAZAS CARDS - MEJORAS
═══════════════════════════════════════ */
.raza-demand-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(231,76,60,.15); border: 1px solid rgba(231,76,60,.3);
  color: #e74c3c; font-size: .7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  display: flex; align-items: center; gap: 5px; z-index: 2;
}
.raza-card img { transition: transform .4s; }
.raza-card:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════
   KIT V2
═══════════════════════════════════════ */
.kit-value-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212, 146, 10,.1); border: 1px solid rgba(212, 146, 10,.3);
  border-radius: 30px; padding: 8px 20px; margin-bottom: 20px;
  font-size: .8rem; font-weight: 700; color: var(--gold);
}
.kit-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px; margin-top: 20px;
}
.kit-item-v2 {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 16px 14px;
  display: flex; align-items: center; gap: 12px;
  transition: border-color .25s, background .25s;
}
.kit-item-v2:hover {
  border-color: rgba(212, 146, 10,.3);
  background: rgba(212, 146, 10,.04);
}
.kit-item-v2-icon {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
  background: rgba(212, 146, 10,.1); color: var(--gold);
}
.kit-item-v2-text strong { font-size: .83rem; color: #2C1A08; display: block; line-height: 1.2; }
.kit-item-v2-text span   { font-size: .7rem; color: #555; }
.kit-cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 28px; flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   HERO URGENCY CHIP
═══════════════════════════════════════ */
.hero-urgency {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(231,76,60,.12); border: 1px solid rgba(231,76,60,.3);
  color: #e74c3c; font-size: .78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 16px;
}
.hero-urgency-dot {
  width: 7px; height: 7px; background: #e74c3c; border-radius: 50%;
  animation: atBlink 1.2s ease-in-out infinite;
}

@media (max-width: 600px) {
  .float-wa-btn { width: 52px; height: 52px; font-size: 1.4rem; }
  .activity-toast { max-width: 250px; }
  .disponibles-header { flex-direction: column; align-items: flex-start; }
  .kit-grid-v2 { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════
   HERO CON LOGO (sin imágenes de perros)
═══════════════════════════════════════ */
.hero-logo-mode {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 20px 60px;
}

.hero-warm-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #FFF5DC 0%, #FFEDB8 55%, #FFE09A 100%);
  z-index: 0;
}

.hero-logo-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

.hero-logo-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(212,146,10,.5));
  animation: heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-text-col {
  flex: 1;
  color: #2C1A08;
}

.hero-text-col h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #2C1A08;
  -webkit-text-fill-color: #2C1A08;
  margin: 14px 0 16px;
}

.hero-text-col p {
  font-size: 1.1rem;
  color: #7A5020;
  line-height: 1.7;
  margin-bottom: 22px;
}

.hero-trust-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-pills span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(184,122,0,.3);
  color: #B87A00;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .hero-logo-layout {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hero-logo-img { width: 220px; height: 220px; }
  .hero-trust-pills { justify-content: center; }
  .hero-buttons { align-items: center; }
}

@media (max-width: 480px) {
  .hero-logo-img { width: 180px; height: 180px; }
  .hero-text-col h1 { font-size: 1.7rem; }
}

/* ═══════════════════════════════════════
   TEMA CLARO — CREMA CÁLIDO
   El sitio usa crema como base (igual que
   el interior del logo). El chocolate y el
   dorado son los acentos.
═══════════════════════════════════════ */

/* Quitar subrayado en TODOS los botones */
.btn { text-decoration: none !important; }

/* Secciones → crema */
.section        { background: #FFF5DC; }
.section.alt    { background: #FFF5DC; }
.section h2     { color: #2C1A08; }
.lead           { color: #6B4020; }

/* Texto del body en claro */
body { color: var(--text); }

/* Loader crema */
#loader { background: #FFF5DC; }
.loader-text { color: #D4920A; font-weight: 700; }

/* Navbar: chocolate oscuro, igual que el borde del logo */
.navbar         { background: rgba(44, 27, 9, .92) !important; }
.navbar.scrolled{ background: #2C1A08 !important; box-shadow: 0 4px 20px rgba(44,27,9,.3); }
#main-nav a     { color: #FFFBF4; }
#main-nav a.active, #main-nav a:hover { color: #D4920A; }
#main-nav       { background: transparent !important; }

/* Cards de razas → blancas */
.raza-card {
  background: #fff;
  border-color: rgba(212,146,10,.15);
  box-shadow: 0 4px 20px rgba(26,14,4,.08);
}
.raza-card:hover {
  border-color: rgba(212,146,10,.5);
  box-shadow: 0 12px 36px rgba(212,146,10,.18);
}
.raza-card p  { color: #3A2010; }
.raza-card h3 { color: #D4920A; }
.raza-card img { border-color: #D4920A; background: #FFFBF4; }

/* Servicios → blancos */
.service {
  background: #fff;
  border-top-color: #D4920A;
  box-shadow: 0 4px 16px rgba(26,14,4,.07);
}
.service h4 { color: #D4920A; }
.service p  { color: #3A2010; }
.service:hover { box-shadow: 0 10px 30px rgba(212,146,10,.15); }

/* Stats strip → blanco limpio, números miel */
.stats-strip {
  background: #FFFFFF;
  border-top: 1px solid rgba(212,146,10,.1) !important;
  border-bottom: 1px solid rgba(212,146,10,.1) !important;
}
.stat-num { color: #D4920A !important; -webkit-text-fill-color: #D4920A !important; }
.stat-sym { color: #D4920A !important; }
.stat-label { color: #7A5020; }

/* Marquee → crema */
.breed-marquee-wrap { background: #FFF8F0; border-bottom-color: rgba(212,146,10,.12); }
.breed-marquee-wrap::before { background: linear-gradient(to right, #FFF8F0, transparent); }
.breed-marquee-wrap::after  { background: linear-gradient(to left,  #FFF8F0, transparent); }
.breed-marquee-track span   { color: #C4A070; }
.breed-marquee-track span:not(.m-paw):hover { color: #D4920A; }

/* Garantías sección */
.garantias-section   { background: #FFF5DC; }
.garantia-card       { background: #fff; border-color: rgba(212,146,10,.1); }
.garantia-card:hover { background: #fff; border-color: rgba(212,146,10,.4); box-shadow: 0 8px 24px rgba(212,146,10,.14); }
.garantia-texto strong { color: #1A0E04; }
.garantia-texto span   { color: #5A3A18; }
.garantias-header h2   { color: #1A0E04; }
.garantias-subtitle    { color: #3A2010; }
.vet-certificada-banner {
  background: rgba(212,146,10,.06);
  border-color: rgba(212,146,10,.2);
}
.vet-text p   { color: #7A5520; }

/* FAQ */
.faq-item { background: #fff; border-color: rgba(212,146,10,.1); }
.faq-item.open { border-color: rgba(212,146,10,.3); }
.faq-q    { color: #1A0E04; }
.faq-a p  { color: #3A2010; }

/* Reseñas */
.resena-card { background: #fff; border-color: rgba(212,146,10,.1); }
.resena-card:hover { border-color: rgba(212,146,10,.3); }
.resena-msg  { color: #3A2010; }
.resena-nombre { color: #1A0E04; }
.resenas-cta-area p { color: #9A7040; }

/* Kit box → crema boutique */
.kit-box {
  background: linear-gradient(135deg, #FFF5DC 0%, #FFFBF4 100%);
  box-shadow: none;
}
.kit-box h2       { color: #2C1A08 !important; }
.kit-box .lead    { color: #7A5020 !important; }

/* Kit items → tarjetas blancas */
.kit-item-v2 { background: rgba(255,255,255,.9); border-color: rgba(212,146,10,.15); }
.kit-item-v2:hover { background: #fff; border-color: rgba(212,146,10,.4); box-shadow: 0 4px 14px rgba(212,146,10,.12); }
.kit-item-v2-text strong { color: #2C1A08; }
.kit-item-v2-text span   { color: #7A5020; }
.kit-value-badge { background: rgba(212,146,10,.1); border-color: rgba(212,146,10,.25); color: #B87A00; }

/* Como funciona sección */
.como-section { background: #FFFFFF; border-color: rgba(212,146,10,.15); }
.como-section h2 { color: var(--text); }
.como-step { background: #fff; border-color: rgba(212,146,10,.12); }
.como-step p { color: #3A2010; }
.como-arrow { color: rgba(212,146,10,.35); }

/* Pagos */
.pago-card { background: #fff; box-shadow: 0 4px 16px rgba(26,14,4,.07); }
.pago-card:hover { box-shadow: 0 10px 28px rgba(212,146,10,.15); }

/* Modal reseña */
.modal-resena-box { background: #FFF5DC; border-color: rgba(212,146,10,.2); }
.mrb-header h3 { color: #1A0E04; }
.rform-group label { color: #7A5520; }
.rform-group input, .rform-group textarea {
  background: #fff;
  border-color: rgba(212,146,10,.2);
  color: #2C1A08;
}
.rform-group input:focus, .rform-group textarea:focus { border-color: #D4920A; }

/* Footer → chocolate */
.footer { background: #2C1A08; }
.footer-bottom { background: #1E1006; }
.footer h4 { color: #FFFBF4; }
.footer-links a { color: #C4A070; }
.footer-links a:hover { color: #D4920A; }
.footer-brand p { color: #9A7040; }
.footer-address { color: #D4920A; }
.footer-legal { color: #5A3A18; }
.social-links a { background: #3A2412; }
.social-links a:hover { background: #D4920A; }
.copy { color: #9A7040; }

/* Logo del hero — circular */
.hero-logo-img {
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(212,146,10,.45), 0 0 0 6px rgba(212,146,10,.2);
}

/* Fotos reales note en claro */
.fotos-reales-note {
  background: rgba(212,146,10,.06);
  border-color: rgba(212,146,10,.18);
  color: #9A7040;
}
.fotos-reales-note a { color: #D4920A; }

/* Dispo cards (cuando existan) → blancas */
.dispo-card { background: #fff; border-color: rgba(212,146,10,.08); }
.dispo-card:hover { border-color: #D4920A; box-shadow: 0 10px 28px rgba(212,146,10,.14); }
.dispo-name { color: #2C1A08; }
.dispo-cat  { color: #9A7040; }

/* WA flotante bubble → crema */
.float-wa-bubble { background: #FFF5DC; color: #2C1A08; }

/* Back to top */
.back-to-top { background: #D4920A; color: #2C1A08; }

/* Nota global de sección h2 color en claro */
.garantias-header h2 .gold-text {
  background: linear-gradient(90deg, #D4920A, #C47A0A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════
   CÓMO FUNCIONA
═══════════════════════════════════════ */
.como-section {
  background: #FFFFFF;
  padding: 80px 20px;
  border-top: 1px solid rgba(212,146,10,.1);
  border-bottom: 1px solid rgba(212,146,10,.1);
}
.como-section h2 { color: #2C1A08; font-size: 2rem; margin-bottom: 10px; }
.como-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.como-step {
  background: #FFFFFF;
  border: 1px solid rgba(212,146,10,.15);
  border-radius: 20px;
  padding: 32px 24px 26px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 270px;
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.como-step:hover {
  border-color: rgba(212,146,10,.45);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212,146,10,.1);
}
.como-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #D4920A;
  color: #2C1B09;
  font-size: .7rem;
  font-weight: 800;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.como-icon { font-size: 2.4rem; margin-bottom: 14px; }
.como-step h4 {
  color: #2C1A08;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.como-step p { color: #7A5020; font-size: .87rem; line-height: 1.65; }
.como-arrow {
  font-size: 1.5rem;
  color: rgba(212,146,10,.2);
  align-self: center;
  flex-shrink: 0;
  padding-top: 14px;
}
@media (max-width: 700px) {
  .como-arrow { display: none; }
  .como-step  { max-width: 100%; }
}

/* ═══════════════════════════════════════
   BANNER FOTOS REALES
═══════════════════════════════════════ */
.fotos-reales-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,146,10,.06);
  border: 1px solid rgba(212,146,10,.18);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: .82rem;
  color: #A07840;
  margin-top: 20px;
  text-align: left;
}
.fotos-reales-note i { color: #D4920A; flex-shrink: 0; font-size: 1rem; }
.fotos-reales-note a { color: #D4920A; font-weight: 700; text-decoration: underline; }

