/* =============================================
   EXPRESSO ANIMAL — STYLESHEET COMPLETO
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary:       #E8007D;
  --primary-dark:  #C2006A;
  --primary-light: #FF4DB8;
  --primary-glow:  rgba(232, 0, 125, 0.15);
  --secondary:     #FF8C00;
  --green-wa:      #25D366;
  --white:         #FFFFFF;
  --dark:          #1C1C2E;
  --dark-2:        #2A2A40;
  --gray-light:    #F8F7FC;
  --gray:          #E8E6F0;
  --text:          #2D2D3A;
  --text-light:    #6B6B80;
  --shadow:        0 8px 32px rgba(28, 28, 46, 0.12);
  --shadow-pink:   0 16px 48px rgba(232, 0, 125, 0.25);
  --radius:        18px;
  --radius-sm:     10px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}
.btn-white {
  background: white;
  color: var(--primary);
}
.btn-white:hover {
  background: var(--gray-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}
.btn-whatsapp-btn {
  background: var(--green-wa);
  color: white;
}
.btn-whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: var(--primary-glow);
  color: var(--primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header h2 span { color: var(--primary); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
}
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.65); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(28,28,46,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo { height: 54px; width: auto; }
.nav-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: #FFD6EE; }
.navbar.scrolled .nav-logo-text { color: var(--primary); }
.navbar.scrolled .nav-logo-text span { color: var(--dark); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
  justify-content: center;
  margin: 0 20px;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 7px 15px;
  border-radius: 50px;
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: white !important;
}

.btn-nav-wa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--green-wa);
  color: white;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: auto;
}
.btn-nav-wa:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}
.navbar.scrolled .menu-toggle span { background: var(--text); }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: 0; right: -100%;
  width: 290px; height: 100vh;
  background: white;
  z-index: 2000;
  padding: 90px 32px 40px;
  transition: right 0.35s ease;
  box-shadow: -4px 0 40px rgba(0,0,0,0.18);
  overflow-y: auto;
}
.nav-mobile.open { right: 0; }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-close {
  position: absolute; top: 22px; right: 22px;
  background: none; border: none;
  font-size: 1.6rem; cursor: pointer;
  color: var(--text); padding: 4px;
}
.nav-mobile ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 28px;
}
.nav-mobile ul a {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile ul a:hover {
  background: var(--primary-glow);
  color: var(--primary);
  padding-left: 20px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, #1C1C2E 0%, #3D0028 45%, #E8007D 100%);
  overflow: hidden;
  padding: 110px 0 100px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232,0,125,0.2) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,77,184,0.15) 0%, transparent 50%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-content h1 .hl { color: #FFD6EE; }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 38px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.hero-units {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.unit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}
.unit-pill i { color: #FFD6EE; }

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-circle-wrap {
  position: relative;
  width: 420px;
  height: 420px;
}
.hero-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7.5rem;
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.hero-paw {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float-paw 5s ease-in-out infinite;
}
.hero-paw:nth-child(2) { top: 10%; right: 8%; animation-delay: 0s; }
.hero-paw:nth-child(3) { bottom: 20%; left: 2%; animation-delay: 1.5s; }
.hero-paw:nth-child(4) { top: 55%; right: -2%; animation-delay: 3s; }
@keyframes float-paw {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.25; }
  50% { transform: translateY(-14px) rotate(10deg); opacity: 0.45; }
}
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.float-card i { color: var(--primary); font-size: 1rem; }
.float-card-1 { top: 30px; right: -30px; animation: float 3.5s ease-in-out infinite; }
.float-card-2 { bottom: 50px; left: -40px; animation: float 3.5s ease-in-out infinite 1.75s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Wave Divider */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { display: block; fill: var(--white); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: white;
  padding: 0;
  box-shadow: 0 4px 24px rgba(28,28,46,0.08);
  position: relative; z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--gray);
  transition: var(--transition);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--gray-light); }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}
.stat-item:hover::before { transform: translateX(-50%) scaleX(1); }
.stat-num {
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services {
  padding: 110px 0;
  background: var(--gray-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(28,28,46,0.06);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-pink);
}
.service-icon {
  width: 82px; height: 82px;
  border-radius: 50%;
  background: var(--primary-glow);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  font-size: 2.1rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.1) rotate(-5deg);
}
.service-icon i { color: var(--primary); transition: var(--transition); }
.service-card:hover .service-icon i { color: white; }
.service-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== PROMOTIONS ===== */
.promotions {
  padding: 110px 0;
  background: white;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: white;
}
.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
}
.promo-img {
  height: 190px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative;
}
.promo-img-1 { background: linear-gradient(135deg, #FFD6EE, var(--primary-light)); }
.promo-img-2 { background: linear-gradient(135deg, #FFE5CC, #FF8C00); }
.promo-img-3 { background: linear-gradient(135deg, #CCF0FF, #0099CC); }
.promo-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--secondary);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-body { padding: 26px; }
.promo-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.promo-body p {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}
.promo-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.promo-cta:hover { gap: 12px; }

/* ===== GALLERY ===== */
.gallery { padding: 110px 0; background: var(--gray-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.g-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  transition: var(--transition);
  font-size: 3rem;
}
.g-1 { background: linear-gradient(135deg, #FFD6EE, var(--primary-light)); }
.g-2 { background: linear-gradient(135deg, #FFECD9, #FFB347); }
.g-3 { background: linear-gradient(135deg, #D6F0FF, #56CCF2); }
.g-4 { background: linear-gradient(135deg, #D6FFE8, #56D99C); }
.g-5 { background: linear-gradient(135deg, #F0D6FF, #BE56D9); }
.g-6 { background: linear-gradient(135deg, #FFD6D6, #D95656); }
.g-7 { background: linear-gradient(135deg, #FFFBD6, #D9C856); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(232,0,125,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 2rem;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item:hover .g-placeholder { transform: scale(1.08); }
.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: '❝';
  position: absolute;
  top: -60px; left: 40px;
  font-size: 22rem;
  color: rgba(255,255,255,0.025);
  line-height: 1;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 34px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-8px);
  border-color: rgba(232,0,125,0.4);
}
.stars { color: #FFD700; font-size: 1rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.t-name {
  font-weight: 700;
  color: white;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.t-pet {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ===== LOCATION ===== */
.location { padding: 110px 0; background: white; }
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.location-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.location-card:hover { box-shadow: var(--shadow-pink); }
.loc-map { height: 260px; overflow: hidden; }
.loc-map iframe { width: 100%; height: 100%; border: none; display: block; }
.loc-info { padding: 30px; background: var(--gray-light); }
.loc-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.loc-badge.hours { background: var(--secondary); }
.loc-info h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.55;
}
.loc-detail i {
  color: var(--primary);
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}
.loc-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ===== WHATSAPP FLOATING ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-main {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--green-wa);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
  cursor: pointer;
  border: none;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-main:hover { background: #128C7E; transform: scale(1.1); }
.wa-options {
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: var(--transition);
}
.wa-float.open .wa-options {
  opacity: 1; pointer-events: all;
  transform: translateY(0) scale(1);
}
.wa-option {
  display: flex; align-items: center; gap: 10px;
  background: white;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: var(--transition);
  white-space: nowrap;
}
.wa-option i { color: var(--green-wa); font-size: 1rem; }
.wa-option:hover { background: var(--green-wa); color: white; transform: translateX(-4px); }
.wa-option:hover i { color: white; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 52px;
}
.footer-logo {
  height: 50px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.footer-logo-text span { color: var(--primary-light); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}
.social-link:hover { background: var(--primary); color: white; transform: translateY(-4px); }

.footer-col h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: white;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-links a i { font-size: 0.75rem; opacity: 0.7; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  line-height: 1.55;
}
.footer-contact-item i {
  color: var(--primary);
  margin-top: 2px;
  width: 15px; flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--primary-light); }

/* ===== PAGE HERO (páginas internas) ===== */
.page-hero {
  background: linear-gradient(130deg, #1C1C2E 0%, #3D0028 50%, #E8007D 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 20px;
  font-size: 0.83rem; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== SCHEDULING PAGE ===== */
.schedule-section { padding: 90px 0; background: var(--gray-light); }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.schedule-form {
  background: white;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}
.schedule-form h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.schedule-form .sub {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group label span { color: var(--primary); }
.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--gray);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  background: white;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.schedule-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.info-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--primary-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.info-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== BLOG PAGE ===== */
.blog-section { padding: 90px 0; background: white; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: white;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-pink); }
.blog-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
}
.blog-b1 { background: linear-gradient(135deg, #FFD6EE, #FF99D1); }
.blog-b2 { background: linear-gradient(135deg, #D6E8FF, #99BFFF); }
.blog-b3 { background: linear-gradient(135deg, #D6FFE8, #99FFCC); }
.blog-b4 { background: linear-gradient(135deg, #FFE8D6, #FFBE99); }
.blog-b5 { background: linear-gradient(135deg, #F0D6FF, #D899FF); }
.blog-b6 { background: linear-gradient(135deg, #FFFBD6, #FFEA99); }
.blog-body { padding: 26px; }
.blog-cat {
  display: inline-block;
  background: var(--primary-glow);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-body h3 {
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
}
.read-more {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.read-more:hover { gap: 8px; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 90px 0; background: var(--gray-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 2px 16px rgba(28,28,46,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); }
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--primary-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card p, .contact-card a {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  text-decoration: none;
}
.contact-card a:hover { color: var(--primary); }
.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form .sub {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-circle-wrap { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-wa { display: none; }
  .menu-toggle { display: flex; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 100px 0 80px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:last-child { border-bottom: none; }

  .services-grid,
  .promo-grid,
  .testimonials-grid,
  .location-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .schedule-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .schedule-form,
  .contact-form { padding: 28px; }

  .form-row { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: fit-content; }

  .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .promo-grid { grid-template-columns: 1fr; }
  .hero-units { flex-direction: column; align-items: flex-start; }
}
