/* ===== VARIABLES ===== */
:root {
  --primary: #ff7a59;
  --primary-dark: #e85f3c;
  --secondary: #6c5ce7;
  --dark: #2d2438;
  --text: #4a4458;
  --muted: #8a8398;
  --bg: #fffaf6;
  --bg-alt: #fff1ea;
  --white: #ffffff;
  --wa: #25d366;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(45, 36, 56, .08);
  --shadow-lg: 0 20px 50px rgba(45, 36, 56, .14);
  --max: 1140px;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Quicksand', 'Poppins', sans-serif; color: var(--dark); line-height: 1.2; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }

/* ===== BOTONES ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 13px 26px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(255,122,89,.35); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 12px 26px rgba(255,122,89,.45); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid #e7ddd4; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-soft { background: var(--bg-alt); color: var(--primary-dark); }
.btn-soft:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-block { width: 100%; }
.wa-icon { width: 20px; height: 20px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 250, 246, .85); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,36,56,.06);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(45,36,56,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; }
.logo-img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 3px 10px rgba(45,36,56,.15); }
.logo-text { font-family: 'Quicksand', sans-serif; font-weight: 600; color: var(--dark); }
.logo-text strong { color: var(--primary); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 500; color: var(--text); font-size: .97rem; transition: color .15s; }
.nav a:hover { color: var(--primary); }
.nav .nav-cta { color: #fff; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 26px; height: 3px; background: var(--dark); border-radius: 3px; transition: .3s; }

/* ===== HERO ===== */
.hero { position: relative; padding-bottom: 70px; }
.hero-banner { display: block; width: 100%; line-height: 0; }
.hero-banner img { width: 100%; height: auto; display: block; }
.hero-cta {
  position: relative; z-index: 1; text-align: center;
  max-width: 760px; margin: 0 auto; padding-top: 46px;
}
.hero-cta .hero-actions, .hero-cta .hero-trust { justify-content: center; }
.hero-cta .hero-sub { margin-left: auto; margin-right: auto; }
.badge {
  display: inline-block; background: var(--white); color: var(--primary-dark);
  font-weight: 600; font-size: .85rem; padding: 7px 16px; border-radius: 50px;
  box-shadow: var(--shadow); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; margin-bottom: 18px; }
.highlight { color: var(--primary); position: relative; }
.hero-sub { font-size: 1.12rem; color: var(--text); margin-bottom: 28px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .95rem; font-weight: 500; color: var(--text); }

.hero-visual { display: flex; justify-content: center; }
.hero-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  max-width: 460px; width: 100%; animation: float 5s ease-in-out infinite;
  border: 6px solid var(--white);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== SECCIONES ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.eyebrow { display: inline-block; color: var(--primary); font-weight: 700; font-size: .9rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.eyebrow-light { color: #ffd9cd; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ===== RAZAS ===== */
.breeds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.breed-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.breed-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.breed-img { height: 210px; overflow: hidden; background: var(--bg-alt); }
.breed-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.breed-card:hover .breed-img img { transform: scale(1.06); }
.breed-img-right img { object-position: 75% center; }
.breed-body { padding: 22px 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.breed-body h3 { font-size: 1.25rem; }
.breed-body p { color: var(--muted); font-size: .95rem; flex: 0; }
.breed-price { font-size: .95rem; color: var(--text); }
.breed-price strong { color: var(--primary-dark); font-size: 1.15rem; font-weight: 700; }
.breed-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 10px; }
.breed-tags li { background: var(--bg-alt); color: var(--primary-dark); font-size: .76rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.breed-body .btn { margin-top: auto; }

/* ===== NOSOTROS ===== */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 14px; }
.about-text > p { color: var(--text); margin-bottom: 14px; }
.about-points { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 24px; }
.about-points li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--dark); }
.about-points li span { font-size: 1.1rem; }

/* ===== PROCESO ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 44px; }
.step {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 34px 24px 26px; box-shadow: var(--shadow); text-align: center;
  transition: transform .2s;
}
.step:hover { transform: translateY(-5px); }
.step-num {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--primary); color: #fff; font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 1.5rem; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(255,122,89,.4);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature { background: var(--white); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); transition: transform .2s; }
.feature:hover { transform: translateY(-5px); }
.feature-ic { font-size: 2.4rem; margin-bottom: 12px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ===== VALORES ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value { text-align: center; padding: 10px; }
.value-ic {
  width: 76px; height: 76px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--white); display: grid; place-items: center; font-size: 2.2rem;
  box-shadow: var(--shadow);
}
.value h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: .94rem; }

/* ===== GALERÍA ===== */
.gallery { column-count: 3; column-gap: 18px; margin-bottom: 40px; }
.gallery-item {
  display: block; break-inside: avoid; margin-bottom: 18px;
  border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.gallery-item img { width: 100%; height: auto; display: block; }
.gallery-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ===== OPINIONES ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--white); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow); }
.stars { color: #ffb400; font-size: 1.15rem; margin-bottom: 12px; letter-spacing: 2px; }
.review p { font-style: italic; color: var(--text); margin-bottom: 14px; }
.review footer { font-weight: 600; color: var(--muted); font-size: .92rem; }

/* ===== CONTACTO ===== */
.contact { background: linear-gradient(135deg, var(--dark), #43355a); color: #fff; }
.contact .section-head h2, .contact h2, .contact h3 { color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contact-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.contact-text p { color: rgba(255,255,255,.78); margin-bottom: 24px; font-size: 1.05rem; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); }
.contact-list li span { font-size: 1.3rem; }
.contact-list a { color: #ffd9cd; text-decoration: underline; }

.contact-form-wrap { }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-lg); }
.contact-form h3 { color: var(--dark); margin-bottom: 18px; font-size: 1.4rem; }
.contact-form label { display: block; font-weight: 600; color: var(--text); font-size: .92rem; margin-bottom: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px; border: 1.5px solid #e7ddd4;
  border-radius: var(--radius-sm); font-family: inherit; font-size: .96rem; color: var(--text);
  background: var(--bg); transition: border-color .15s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--primary);
}
.contact-form textarea { resize: vertical; }
.form-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 12px; }

/* ===== FOOTER ===== */
.site-footer { background: #241c2e; color: rgba(255,255,255,.7); padding-top: 50px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; padding-bottom: 36px; }
.footer-brand { max-width: 360px; }
.footer-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.footer-brand p { font-size: .95rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: flex-start; }
.footer-links a { color: rgba(255,255,255,.75); font-weight: 500; transition: color .15s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; }
.footer-bottom p { font-size: .88rem; text-align: center; color: rgba(255,255,255,.55); }

/* ===== WHATSAPP FLOTANTE ===== */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: pulse 2.4s infinite; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 34px; height: 34px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== ANIMACIÓN AL HACER SCROLL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .breeds-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { column-count: 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; max-height: 320px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav {
    position: fixed; top: 72px; right: 0; left: 0;
    flex-direction: column; gap: 0; background: var(--white);
    box-shadow: var(--shadow-lg); padding: 10px 0;
    transform: translateY(-150%); transition: transform .35s ease; align-items: stretch;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 24px; border-bottom: 1px solid rgba(45,36,56,.05); }
  .nav .nav-cta { margin: 12px 24px; text-align: center; }
  .menu-toggle { display: flex; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .breeds-grid, .features-grid { grid-template-columns: 1fr; }
  .gallery { column-count: 1; }
  .steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
