/* ══════════════════════════════════════
   PET GARDEN VETERINARIA – Stylesheet
══════════════════════════════════════ */

:root {
  --green-dark:  #1b4332;
  --green-main:  #2d6a4f;
  --green-mid:   #40916c;
  --green-light: #74c69d;
  --green-pale:  #d8f3dc;
  --cream:       #faf8f4;
  --white:       #ffffff;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --ig-grad:     linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --fb-blue:     #1877f2;
  --tt-dark:     #010101;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.14);
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

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

.section { padding: 96px 0; }

/* ── Logo ── */
.nav-logo {
  width: 48px; height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero-logo-big {
  width: 210px; height: 210px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
}
.footer-logo {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-dark);
  margin: 12px 0;
}
.section-header p {
  color: var(--text-mid);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-main);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}
.ig-tag { background: #fce4ec; color: #c2185b; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 18px;
  color: var(--green-dark);
  flex-shrink: 0;
}
.brand em { font-style: normal; color: var(--green-mid); }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-mark.small { width: 36px; height: 36px; }
.logo-mark.small svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green-main); }

.btn-nav {
  background: var(--green-main);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-main);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(45,106,79,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,106,79,.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-main);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 100px;
  border: 2px solid var(--green-main);
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ig-grad);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(220,39,67,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220,39,67,.45);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 60%, var(--green-mid) 100%);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: #fff;
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 30%; opacity: .04; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  color: #fff;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.star-icon { color: #fbbf24; }

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.hero-content h1 .highlight {
  color: #b7e4c7;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-cta .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.hero-cta .btn-secondary:hover {
  background: rgba(255,255,255,.15);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong { font-size: 22px; font-weight: 900; color: #fff; }
.stat span { font-size: 12px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }
.divider-v {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.25);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.hero-card {
  width: 320px; height: 360px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.hero-paw-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.big-paw { width: 220px; height: 220px; }
.hero-icon-ring {
  position: absolute;
  width: 80px; height: 80px;
}
.hero-icon-ring svg { width: 80px; height: 80px; }

.floating-badge {
  position: absolute;
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.top-right { top: -16px; right: -16px; }
.bottom-left { bottom: -16px; left: -16px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.floating { animation: float 4s ease-in-out infinite; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.servicios { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #eef2f0;
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   NOSOTROS
══════════════════════════════════════ */
.nosotros { background: var(--cream); }
.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.nosotros-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 12px 0 20px;
  color: var(--text-dark);
}
.nosotros-info p {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
}
.check {
  width: 24px; height: 24px;
  background: var(--green-pale);
  color: var(--green-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.review-row {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--green-main);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #f59e0b; font-size: 20px; letter-spacing: 2px; margin-bottom: 10px; }
.review-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}

/* Map Card */
.map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eef2f0;
}
.map-logo-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  color: var(--green-dark);
}
.map-card iframe {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
}
.map-details {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.map-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.map-info-row strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); margin-bottom: 2px; }
.map-info-row p, .map-info-row a { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.map-info-row a { color: var(--green-main); font-weight: 700; }

/* ══════════════════════════════════════
   EQUIPO
══════════════════════════════════════ */
.equipo-section { background: var(--white); }

.equipo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.equipo-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #eef2f0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.equipo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Photo */
.equipo-photo-wrap {
  position: relative;
  height: 300px;
  background: linear-gradient(135deg, var(--green-main), var(--green-mid));
  overflow: hidden;
}
.equipo-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.equipo-photo-ph {
  width: 100%; height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: .35;
}
.equipo-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--green-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.equipo-badge--green {
  background: #1565C0;
}

/* Info */
.equipo-info {
  padding: 28px;
}
.equipo-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.equipo-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.equipo-info p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.equipo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.equipo-tags span {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
}

/* Quote */
.equipo-quote {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  color: #fff;
  position: relative;
}
.quote-mark {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: .6;
  color: rgba(255,255,255,.2);
  margin-bottom: 16px;
}
.equipo-quote p {
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,.92);
  max-width: 680px;
  margin: 0 auto 16px;
}
.quote-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 900px) {
  .equipo-grid { grid-template-columns: 1fr; }
  .equipo-quote { padding: 32px 24px; }
}

/* ══════════════════════════════════════
   TRÁMITES PORTUARIOS — featured card
══════════════════════════════════════ */
.service-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #e8f4fd 0%, #e3f2e8 100%);
  border: 2px solid #b3d9f0;
  padding: 36px;
}
.service-card-featured-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.service-card--featured h3 {
  font-size: 22px;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.service-card--featured p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.tramites-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.tramites-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.btn-tramites {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-main);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(45,106,79,.3);
  transition: background var(--transition), transform var(--transition);
}
.btn-tramites svg { width: 18px; height: 18px; }
.btn-tramites:hover { background: var(--green-dark); transform: translateY(-2px); }

.tramites-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.plane-circle {
  width: 130px; height: 130px;
  background: linear-gradient(135deg, var(--green-main), #1e88e5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.plane-emoji { font-size: 40px; }
.paw-emoji   { font-size: 24px; }
.tramites-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-main);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ══════════════════════════════════════
   REELS SECTION
══════════════════════════════════════ */
.reels-section { background: var(--white); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* Reel Card */
.reel-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d6a4f 100%);
  display: block;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.reel-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.reel-card:hover .reel-overlay { opacity: 1; }
.reel-card:hover .reel-play { transform: translate(-50%, -50%) scale(1.1); }

.reel-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder (shown when image is missing) */
.reel-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  opacity: .25;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  transition: opacity var(--transition);
}

.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.reel-play svg { width: 22px; height: 22px; fill: var(--green-dark); margin-left: 3px; }

.reel-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ig-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .05em;
}

.reel-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  color: #fff;
}
.reel-footer .reel-user {
  font-size: 12px;
  font-weight: 700;
  opacity: .9;
}

.reels-cta { text-align: center; }


/* ══════════════════════════════════════
   SOCIALS
══════════════════════════════════════ */
.socials-section { background: var(--cream); }
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.social-card svg { width: 40px; height: 40px; }
.social-card em { font-style: normal; font-size: 13px; opacity: .8; font-weight: 600; }

.social-card.instagram { background: var(--ig-grad); }
.social-card.facebook  { background: var(--fb-blue); }
.social-card.tiktok    { background: var(--tt-dark); }

/* ══════════════════════════════════════
   CONTACTO
══════════════════════════════════════ */
.contacto-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  color: #fff;
}
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contacto-text .section-tag { background: rgba(255,255,255,.15); color: #fff; }
.contacto-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  margin: 16px 0 20px;
  color: #fff;
}
.contacto-text p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 32px; }

.contacto-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background var(--transition);
}
.info-card:hover { background: rgba(255,255,255,.18); }
.info-icon { font-size: 24px; flex-shrink: 0; }
.info-card strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; opacity: .65; margin-bottom: 4px; }
.info-card p { font-size: 14px; line-height: 1.5; opacity: .9; }
.info-card a { color: #b7e4c7; font-weight: 700; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--green-dark);
  padding: 40px 0;
  color: rgba(255,255,255,.7);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.footer-brand strong { display: block; font-size: 16px; font-weight: 800; }
.footer-brand p { font-size: 13px; opacity: .6; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; font-weight: 600; transition: color var(--transition); }
.footer-links a:hover { color: var(--green-light); }
.footer-copy { font-size: 13px; width: 100%; text-align: center; opacity: .55; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { display: none; }

  .nosotros-inner { grid-template-columns: 1fr; gap: 40px; }
  .contacto-inner { grid-template-columns: 1fr; gap: 40px; }
  .contacto-cards { grid-template-columns: 1fr; }

  .reels-grid { grid-template-columns: repeat(3, 1fr); }

  .service-card-featured-inner { grid-template-columns: 1fr; }
  .tramites-visual { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { padding: 24px; }
}
