/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-dark:   #0a4f8c;
  --blue:        #1a6bbf;
  --blue-light:  #e8f3fd;
  --green:       #1db87a;
  --green-dark:  #17a067;
  --green-light: #e6f9f1;
  --white:       #ffffff;
  --gray-100:    #f7f9fc;
  --gray-200:    #eef1f6;
  --gray-400:    #9aa5b8;
  --gray-700:    #3d4a5c;
  --text:        #1e293b;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(10,79,140,.10);
  --shadow-lg:   0 8px 48px rgba(10,79,140,.16);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   SCROLL ANIMATION CLASSES
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(29,184,122,.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,184,122,.45);
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 560px;
}
.section-divider {
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  margin: 16px 0 24px;
}
.center-text { text-align: center; }
.center-text .section-subtitle,
.center-text .section-divider { margin-left: auto; margin-right: auto; }

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10,79,140,.06);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 50%;
}
.nav-logo-text {
  line-height: 1.25;
}
.nav-logo-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.nav-logo-text span {
  font-size: .75rem;
  color: var(--gray-400);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-dark);
  background: var(--blue-light);
}

.nav-cta {
  font-size: .85rem !important;
  padding: 10px 20px !important;
  margin-left: 6px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover { background: var(--blue-light); color: var(--blue-dark); }

/* ===========================
   HERO
=========================== */
#inicio {
  padding-top: 72px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-light) 0%, #f0faff 50%, #e8f9f3 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

#inicio::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(29,184,122,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#inicio::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(26,107,191,.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,184,122,.12);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--green);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--gray-700);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn-know-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--blue-dark);
  transition: var(--transition);
}
.btn-know-more svg {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.btn-know-more:hover { color: var(--blue); }
.btn-know-more:hover svg { transform: scale(1.1); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-card .stat-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.stat-card .stat-icon svg { width: 20px; height: 20px; color: var(--blue); }
.stat-card p { font-size: .72rem; font-weight: 600; color: var(--gray-700); line-height: 1.3; }

/* Hero image */
.hero-image-wrap { position: relative; }
.hero-image-wrap img {
  border-radius: 24px;
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Floating cards on image */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-float-card.card-top    { top: 24px; left: -28px; }
.hero-float-card.card-bottom { bottom: 40px; right: -28px; }
.hero-float-card .fc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon.green { background: var(--green-light); }
.fc-icon.blue  { background: var(--blue-light); }
.fc-icon svg { width: 20px; height: 20px; }
.hero-float-card .fc-text strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.hero-float-card .fc-text span { font-size: .7rem; color: var(--gray-400); }

/* ===========================
   SECTION SPACING
=========================== */
section { padding: 96px 0; }

/* ===========================
   SERVICIOS
=========================== */
#servicios { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-content { padding: 36px 32px; }

.service-icon-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon.blue  { background: var(--blue-light); }
.service-icon.green { background: var(--green-light); }
.service-icon svg { width: 26px; height: 26px; }

.service-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.service-desc {
  font-size: .9rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-list { margin-bottom: 24px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--gray-700);
  padding: 6px 0;
}
.service-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231db87a'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

.service-img {
  position: relative;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }

/* ===========================
   SOBRE NOSOTROS
=========================== */
#nosotros { background: var(--gray-100); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 24px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center center;
  box-shadow: var(--shadow-lg);
}
/* Foto de recepción tomada en vertical — se encuadra desde arriba */
.recepcion-img {
  object-position: center top;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(29,184,122,.4);
  text-align: center;
}
.about-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge span { font-size: .78rem; opacity: .9; }

.about-list { margin: 24px 0 32px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.about-list li:last-child { border-bottom: none; }
.about-list .al-icon {
  width: 40px; height: 40px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-list .al-icon svg { width: 20px; height: 20px; color: var(--blue); }
.about-list .al-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 2px;
}
.about-list .al-text p { font-size: .83rem; color: var(--gray-400); }

/* ===========================
   BENEFICIOS
=========================== */
#beneficios {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0d3f70 100%);
  position: relative;
  overflow: hidden;
}
#beneficios::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,184,122,.15) 0%, transparent 70%);
  border-radius: 50%;
}

#beneficios .section-title    { color: var(--white); }
#beneficios .section-subtitle { color: rgba(255,255,255,.65); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.benefit-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-6px);
}

.benefit-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(29,184,122,.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.benefit-icon-wrap svg { width: 32px; height: 32px; color: var(--green); }

.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ===========================
   UBICACIÓN
=========================== */
#ubicacion { background: var(--white); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}

.location-info-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 36px;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}
.location-detail:last-of-type { border-bottom: none; }
.ld-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ld-icon svg { width: 22px; height: 22px; color: var(--blue); }
.ld-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.ld-text p, .ld-text a {
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.ld-text a:hover { color: var(--blue); }

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================
   CONTACTO / REDES SOCIALES
=========================== */
#contacto {
  background: linear-gradient(135deg, #f0faff 0%, var(--green-light) 100%);
  padding: 96px 0;
}

.social-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.social-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: var(--transition);
}
.social-btn:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.social-btn .sb-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sb-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.sb-icon.facebook { background: #1877f2; }
.sb-icon svg { width: 22px; height: 22px; color: var(--white); }
.social-btn .sb-arrow { margin-left: auto; color: var(--gray-400); }

.cta-box {
  background: var(--blue-dark);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(29,184,122,.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}
.cta-box p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  position: relative;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: #07294d;
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-logo-text {
  line-height: 1.25;
}
.footer-logo-text strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

.footer-desc {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--green); transform: translateY(-2px); }
.footer-social a svg { width: 18px; height: 18px; color: var(--white); }

.footer-col h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item p,
.footer-contact-item a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

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

.wa-tooltip {
  background: var(--white);
  color: var(--text);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 60px; height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,.55);
}
.wa-btn svg { width: 32px; height: 32px; color: var(--white); }

@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  70%  { box-shadow: 0 4px 24px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-inner  { gap: 40px; }
  .hero-stats  { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 0;
    text-align: center;
  }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { grid-template-columns: repeat(2, 1fr); }
  .hero-image-wrap { order: -1; }
  .hero-image-wrap img { height: 300px; }
  .hero-float-card.card-top    { left: 0; top: 8px; }
  .hero-float-card.card-bottom { right: 0; bottom: 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card  { grid-template-columns: 1fr; }
  .service-img   { height: 220px; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }

  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 320px; }
  .about-badge { bottom: -16px; right: 0; }

  .location-inner { grid-template-columns: 1fr; }
  .map-wrap { height: 300px; }

  .social-inner { grid-template-columns: 1fr; }

  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom      { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats    { grid-template-columns: repeat(2, 1fr); }
  .btn { padding: 12px 20px; font-size: .88rem; }
}
