* { margin:0; padding:0; box-sizing:border-box; }

:root {
  --mint:   #4ECBA0;
  --mint2:  #3ab48c;
  --dark:   #1a2e25;
  --cream:  #f7f3ec;
  --warm:   #fff8f0;
  --text:   #2d3b34;
  --muted:  #7a9189;
  --card:   #ffffff;
  --accent: #ff8c69;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
}

/* NAV */
nav {
  position: sticky; top:0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78,203,160,0.2);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}

.nav-logo img {
  height: 58px; width: 58px; object-fit: contain;
}

.nav-logo span {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}

.nav-logo small {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem; font-weight: 400;
  color: var(--mint2);
  letter-spacing: 2px; text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}

.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mint2); }

.nav-cta {
  background: var(--mint);
  color: white; border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--mint2); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: calc(100vh - 72px);
  background: linear-gradient(145deg, #e8f7f1 0%, #f7f3ec 55%, #fff3e8 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 5%;
  gap: 4rem;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(78,203,160,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(78,203,160,0.12);
  border: 1px solid rgba(78,203,160,0.35);
  color: var(--mint2);
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.08;
  color: var(--dark);
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  font-style: italic; color: var(--mint);
}

.hero p {
  margin-top: 1.4rem;
  font-size: 1.05rem; line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--mint);
  color: white; border: none;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--mint2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(78,203,160,0.35); }

.btn-secondary {
  background: transparent;
  color: var(--dark); border: 2px solid rgba(78,203,160,0.35);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--mint); color: var(--mint2); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  animation: fadeUp 0.7s 0.4s ease both;
}

.stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 900; color: var(--dark);
}

.stat span {
  font-size: 0.8rem; color: var(--muted); font-weight: 500;
  letter-spacing: 0.5px;
}

/* hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: fadeIn 1s 0.3s ease both;
  position: relative;
}

.hero-card-wrap {
  background: white;
  border-radius: 32px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(26,46,37,0.12), 0 0 0 1px rgba(78,203,160,0.1);
  text-align: center;
  max-width: 360px; width: 100%;
  position: relative;
}

.hero-card-wrap::before {
  content: '✨';
  position: absolute; top: -16px; right: -16px;
  font-size: 2rem;
  animation: spin 4s linear infinite;
}

.hero-logo-big {
  width: 200px; height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(78,203,160,0.3));
  margin-bottom: 1.5rem;
}

.hero-card-wrap h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; color: var(--dark);
}

.hero-card-wrap p {
  color: var(--muted); font-size: 0.85rem; margin-top: 0.5rem;
}

.rating-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; margin-top: 1rem;
  font-size: 0.85rem; color: var(--muted);
}

.stars { color: #f59e0b; letter-spacing: 1px; }

.floating-tag {
  position: absolute;
  background: white; border-radius: 12px;
  padding: 0.6rem 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
  white-space: nowrap;
}

.tag1 { bottom: 20px; left: -60px; animation: float 3s ease-in-out infinite; }
.tag2 { top: 30px; left: -50px; animation: float 3s 1s ease-in-out infinite; }
.tag3 { top: 10px; right: -40px; animation: float 3s 2s ease-in-out infinite; }

/* SECTION GENERAL */
section { padding: 6rem 5%; }

.section-tag {
  display: inline-block;
  color: var(--mint2); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900;
  color: var(--dark); line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.7;
  max-width: 540px;
}

/* SERVICES */
#servicios { background: white; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}

.service-card {
  background: var(--warm);
  border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(78,203,160,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--mint);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(78,203,160,0.15); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(78,203,160,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; color: var(--dark); margin-bottom: 0.5rem;
}

.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

.service-price {
  margin-top: 1.2rem;
  font-size: 1.1rem; font-weight: 700; color: var(--mint2);
}

/* PROCESS */
#proceso { background: var(--cream); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3.5rem; position: relative;
}

.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--mint) 0%, rgba(78,203,160,0.2) 100%);
  z-index: 0;
}

.step {
  text-align: center; position: relative; z-index: 1;
}

.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--mint); color: white;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 20px rgba(78,203,160,0.35);
}

.step h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem; color: var(--dark); margin-bottom: 0.4rem;
}

.step p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* GALLERY / BREEDS */
#razas { background: white; }

.breeds-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; margin-top: 3rem;
}

.breed-pill {
  background: var(--warm);
  border: 1px solid rgba(78,203,160,0.2);
  border-radius: 50px;
  padding: 0.8rem 1.2rem;
  text-align: center; font-size: 0.88rem;
  font-weight: 500; color: var(--text);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.2s;
  cursor: default;
}
.breed-pill:hover { background: rgba(78,203,160,0.1); border-color: var(--mint); color: var(--mint2); }

/* TESTIMONIALS */
#resenas { background: linear-gradient(160deg, #e8f7f1, var(--cream)); }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

.review-card {
  background: white; border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(26,46,37,0.06);
  border: 1px solid rgba(78,203,160,0.1);
}

.review-stars { font-size: 1rem; color: #f59e0b; margin-bottom: 0.8rem; }

.review-text {
  font-size: 0.9rem; color: var(--text); line-height: 1.65;
  font-style: italic;
}

.reviewer {
  display: flex; align-items: center; gap: 0.8rem;
  margin-top: 1.2rem;
}

.reviewer-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: white; font-weight: 700;
}

.reviewer strong { font-size: 0.85rem; display: block; color: var(--dark); }
.reviewer span { font-size: 0.75rem; color: var(--muted); }

/* CONTACT */
#contacto {
  background: var(--dark);
  padding: 6rem 5%;
  text-align: center;
}

#contacto .section-tag { color: var(--mint); }

#contacto .section-title { color: white; margin: 0 auto 1rem; }

#contacto .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 3rem; }

.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto 3rem;
}

.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(78,203,160,0.2);
  border-radius: 18px; padding: 2rem 1.5rem;
  text-align: center; color: white;
  transition: background 0.2s, border-color 0.2s;
}

.contact-card:hover {
  background: rgba(78,203,160,0.12);
  border-color: rgba(78,203,160,0.5);
}

.contact-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.contact-card h4 { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--mint); margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.95rem; font-weight: 500; }

.contact-card a {
  color: white; text-decoration: none;
}

.wsp-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: white; border: none;
  padding: 1rem 2.5rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.wsp-btn:hover { background: #1eb855; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* FOOTER */
footer {
  background: #111e18;
  padding: 2.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}

.footer-logo {
  display: flex; align-items: center; gap: 0.6rem;
}

.footer-logo img { height: 44px; filter: brightness(0) invert(1) opacity(0.7); }
.footer-logo span { font-family: 'Fraunces', serif; color: rgba(255,255,255,0.6); font-size: 1rem; }

footer p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

@keyframes spin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}


/* GALLERY IMAGES */
.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
  margin-top: 3rem;
  border-radius: 24px;
  overflow: hidden;
}

.g-item {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.g-item:hover img { transform: scale(1.07); }

.g-item .g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,46,37,0.75));
  color: white; padding: 1.2rem 1rem 0.8rem;
  font-size: 0.82rem; font-weight: 600;
  opacity: 0; transition: opacity 0.3s;
}

.g-item:hover .g-label { opacity: 1; }

.g1 { grid-column: span 5; grid-row: span 2; }
.g2 { grid-column: span 4; grid-row: span 1; }
.g3 { grid-column: span 3; grid-row: span 1; }
.g4 { grid-column: span 3; grid-row: span 1; }
.g5 { grid-column: span 4; grid-row: span 1; }

/* PASEO SECTION */
.paseo-section {
  background: linear-gradient(160deg, #1a2e25 0%, #2a4a38 100%);
  padding: 6rem 5%;
}

.paseo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.paseo-img-collage {
  position: relative;
  height: 460px;
}

.paseo-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.paseo-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  border-radius: 20px;
  object-fit: cover;
  border: 4px solid #1a2e25;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.paseo-badge-float {
  position: absolute;
  top: 50%; left: 68%;
  transform: translate(-50%, -50%);
  background: var(--mint);
  color: white;
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  text-align: center; line-height: 1.3;
  box-shadow: 0 4px 20px rgba(78,203,160,0.5);
  z-index: 2;
}

.paseo-content .section-tag { color: var(--mint); }
.paseo-content .section-title { color: white; }
.paseo-content .section-sub { color: rgba(255,255,255,0.6); }

.paseo-features {
  list-style: none;
  margin-top: 2rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}

.paseo-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.5;
}

.paseo-features li::before {
  content: '✓';
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(78,203,160,0.2);
  border: 1px solid var(--mint);
  color: var(--mint);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

.paseo-cta {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g1,.g2,.g3,.g4,.g5 { grid-column: span 1; grid-row: span 1; height: 180px; }
  .paseo-grid { grid-template-columns: 1fr; }
  .paseo-img-collage { height: 300px; }
}


/* ── WHATSAPP FLOAT ── */
.wsp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 10px;
}

.wsp-float-btn {
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: wsp-pulse 2.5s ease-in-out infinite;
}

.wsp-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.65);
  animation: none;
}

.wsp-float-btn svg { width: 34px; height: 34px; fill: white; }

.wsp-tooltip {
  background: white;
  color: var(--dark);
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.wsp-float:hover .wsp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes wsp-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ── ADMIN PANEL ── */
#admin-toggle {
  position: fixed;
  bottom: 28px; left: 28px;
  z-index: 9999;
  background: rgba(26,46,37,0.85);
  backdrop-filter: blur(8px);
  color: white; border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
}
#admin-toggle:hover { background: var(--mint2); transform: scale(1.08); }

.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.admin-panel.open { display: flex; }

.admin-box {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%; max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.admin-box h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; color: var(--dark);
  margin-bottom: 0.3rem;
}

.admin-box p.sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }

.admin-login { display: flex; flex-direction: column; gap: 1rem; }

.admin-login input[type=password] {
  border: 2px solid rgba(78,203,160,0.3);
  border-radius: 12px; padding: 0.8rem 1.2rem;
  font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color 0.2s;
  width: 100%;
}
.admin-login input[type=password]:focus { border-color: var(--mint); }

.admin-login .btn-primary { border: none; width: 100%; font-size: 0.95rem; padding: 0.85rem; border-radius: 12px; }

.admin-err { color: #e74c3c; font-size: 0.82rem; text-align: center; display: none; }

.admin-content { display: none; }
.admin-content.visible { display: block; }
.admin-login-wrap.hidden { display: none; }

.upload-zone {
  border: 2.5px dashed rgba(78,203,160,0.45);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: rgba(78,203,160,0.04);
  margin-bottom: 1.5rem;
}
.upload-zone:hover, .upload-zone.drag { border-color: var(--mint); background: rgba(78,203,160,0.09); }
.upload-zone p { color: var(--muted); font-size: 0.88rem; margin-top: 0.4rem; }
.upload-zone .upload-icon { font-size: 2.2rem; }

#fileInput { display: none; }

.photo-admin-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 1rem;
}

.photo-admin-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1;
}

.photo-admin-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.photo-delete {
  position: absolute; top: 6px; right: 6px;
  background: rgba(231,76,60,0.9);
  border: none; color: white;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 0.85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.photo-admin-item:hover .photo-delete { opacity: 1; }

.admin-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--muted);
}

.admin-section-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  margin: 1.2rem 0 0.6rem;
}

.upload-progress {
  height: 4px; background: rgba(78,203,160,0.15);
  border-radius: 2px; overflow: hidden; margin-bottom: 1rem; display: none;
}
.upload-bar {
  height: 100%; width: 0%; background: var(--mint);
  transition: width 0.3s; border-radius: 2px;
}

/* live gallery updates */
#galeria-dinamica {
  margin-top: 2rem;
}
.dyn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 1.2rem;
}
.dyn-item {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.dyn-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.dyn-item:hover img { transform: scale(1.06); }
.dyn-item .g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,46,37,0.7));
  color: white; padding: 1rem 0.8rem 0.6rem;
  font-size: 0.78rem; font-weight: 600;
  opacity: 0; transition: opacity 0.3s;
}
.dyn-item:hover .g-label { opacity: 1; }

/* MOBILE */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 3rem 5%; }
  .hero-visual { display: none; }
  .hero p { margin: 1.2rem auto 0; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .nav-links { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  footer { flex-direction: column; text-align: center; }
}