:root {
  --color-primary: #F1D1D1;
  --color-primary-dark: #dfbbbb;
  --color-primary-soft: #faeeee;
  --color-bg: #FFFFFF;
  --color-bg-alt: #fcf8f8;
  --color-text: #54585A;
  --color-text-soft: #7a7f82;
  --color-border: #C8C8C8;
  --color-silver: #C8C8C8;
  --color-dark: #54585A;
  --color-success: #2f9e72;

  --shadow-soft: 0 12px 35px rgba(84, 88, 90, 0.08);
  --shadow-hover: 0 18px 40px rgba(84, 88, 90, 0.14);

  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --container: 1180px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background: var(--color-bg-alt);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 10px 0 14px;
}

.section-heading p {
  color: var(--color-text-soft);
  font-size: 1.05rem;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-soft);
  color: var(--color-text);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Header */
.header {
  height: 84px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,200,200,0.3);
}

..header .logo {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 84px;
  position: relative;
  z-index: 5;
}

.header .logo-img {
  width: 130px;
  height: 130px;
  transform: translateY(34px); /* 🔥 clave */
}

.header .logo-text {
  padding-bottom: 10px;
}

.nav-container {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}
.header .logo {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 84px;
  position: relative;
  z-index: 5;
}

.header .logo-img {
  width: 150px;
  height: 150px;
  transform: translateY(85px);
}

.header .logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.02;
  padding-bottom: 10px;
}

.footer .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: auto;
}

.footer .logo-img {
  width: 56px;
  height: 56px;
  transform: none;
}

.footer .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
  padding-bottom: 0;
}
.logo {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 84px;
  position: relative;
  z-index: 5;
}

.logo-img {
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.02;
  padding-bottom: 10px;
}

.logo-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-text);
}

.logo-subtitle {
  font-size: 0.76rem;
  color: var(--color-text-soft);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  color: var(--color-text-soft);
  font-weight: 600;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--color-text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #e8c2c2);
  color: var(--color-text);
  box-shadow: 0 16px 30px rgba(84, 88, 90, 0.12);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  box-shadow: 0 18px 34px rgba(84, 88, 90, 0.16);
}

.btn-secondary {
  background: #fff;
  border-color: rgba(200, 200, 200, 0.65);
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: rgba(241, 209, 209, 0.8);
  background: rgba(241, 209, 209, 0.12);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(200, 200, 200, 0.6);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  margin: 4px auto;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 0 1rem 1.2rem;
  background: #fff;
  border-bottom: 1px solid rgba(200, 200, 200, 0.45);
}

.mobile-menu a {
  font-weight: 600;
  color: var(--color-text-soft);
}

.mobile-menu.active {
  display: flex;
}

.mobile-cta {
  margin-top: 6px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(241, 209, 209, 0.35), transparent 35%),
    linear-gradient(180deg, #ffffff, #fdf9f9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(241, 209, 209, 0.32), transparent 68%);
  pointer-events: none;
  animation: heroFloatOne 12s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(241, 209, 209, 0.18), transparent 70%);
  pointer-events: none;
  animation: heroFloatTwo 15s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.98;
  margin: 18px 0 20px;
  letter-spacing: -0.03em;
}

.hero-content h1 strong {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.hero-text {
  max-width: 620px;
  color: var(--color-text-soft);
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 30px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--color-text-soft);
  font-weight: 600;
}

.hero-features div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-features i {
  color: var(--color-text);
}

.hero-visual {
  min-height: 540px;
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.hero-card-main {
  background: linear-gradient(180deg, #fff, #fffafa);
  border: 1px solid rgba(241, 209, 209, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  height: 100%;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.hero-card-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(84, 88, 90, 0.12);
}

.hero-image-container {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card-main:hover .hero-image {
  transform: scale(1.035);
}

.hero-badge {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  min-width: 220px;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.hero-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(84, 88, 90, 0.12);
}

.hero-badge strong {
  display: block;
  margin-bottom: 4px;
}

.hero-badge span {
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.badge-top {
  top: 36px;
  right: -20px;
}

.badge-bottom {
  bottom: 40px;
  left: -16px;
}

/* Servicios */
#servicios.section-light {
  background: #ffffff;
}

#servicios .section-heading {
  text-align: left;
  max-width: 680px;
  margin: 0 0 38px;
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  border-radius: 22px;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  min-height: 190px;
  padding: 24px 24px 22px;
  box-shadow: none;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
  transform-origin: center center;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow: 0 24px 48px rgba(84, 88, 90, 0.12);
  border-color: rgba(241, 209, 209, 0.95);
}

.service-card-modern {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card-modern h3,
.service-card-promo h3 {
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-text);
  margin: 18px 0 8px;
}

.service-card-modern p,
.service-card-promo p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #7d8285;
  max-width: 220px;
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fbf6f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e3bfc0;
  font-size: 1.2rem;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.service-card:hover .service-icon-box {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 22px rgba(241, 209, 209, 0.26);
  background: rgba(241, 209, 209, 0.30);
  color: var(--color-text);
}

.service-card-promo {
  background: linear-gradient(180deg, #efd3d3 0%, #ebcccc 100%);
  border: 1px solid #efd3d3;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.service-card-promo .service-top {
  margin-bottom: 10px;
}

.service-card-promo h3 {
  color: #ffffff;
  font-size: 1.05rem;
}

.service-card-promo p {
  color: rgba(255, 255, 255, 0.85);
}

.service-card-promo .service-icon-box {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.08);
}

.service-card-promo .service-icon-box i {
  font-size: 1.05rem;
  opacity: 1;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 18px rgba(84, 88, 90, 0.08);
  backdrop-filter: blur(6px);
}

.services-grid-modern .service-card:nth-child(1) { transition-delay: 0.04s; }
.services-grid-modern .service-card:nth-child(2) { transition-delay: 0.10s; }
.services-grid-modern .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid-modern .service-card:nth-child(4) { transition-delay: 0.22s; }
.services-grid-modern .service-card:nth-child(5) { transition-delay: 0.28s; }
.services-grid-modern .service-card:nth-child(6) { transition-delay: 0.34s; }
.services-grid-modern .service-card:nth-child(7) { transition-delay: 0.40s; }

/* Promoción */
.promo-banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding: 64px;
  border-radius: 30px;
  background: #e9c8c8;
  box-shadow: 0 20px 45px rgba(84, 88, 90, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px rgba(84, 88, 90, 0.12);
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}


.promo-banner::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.promo-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--color-text);
}

.promo-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #667074;
  max-width: 460px;
  margin-bottom: 28px;
}

.promo-benefits {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  padding: 0;
}

.promo-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5f6669;
  font-size: 0.98rem;
  line-height: 1.5;
}

.promo-benefits li i {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  color: #6d7477;
  font-size: 0.72rem;
}

.promo-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #5b6468;
  color: #ffffff;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 14px 24px rgba(84, 88, 90, 0.18);
  transition: all 0.3s ease;
}

.promo-button:hover {
  transform: translateY(-3px);
  background: #4d5559;
  box-shadow: 0 18px 30px rgba(84, 88, 90, 0.22);
}

.promo-image-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
}

.promo-image {
  width: 100%;
  max-width: 450px;
  height: 446px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 34px rgba(84, 88, 90, 0.10);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.promo-banner:hover .promo-image {
  transform: scale(1.03);
}

/* Nosotros */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 12px 0 18px;
}

.about-content p {
  color: var(--color-text-soft);
  margin-bottom: 16px;
}

.about-image-container {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Beneficios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card,
.testimonial-card,
.contact-card {
  background: #fff;
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
  transform-origin: center center;
}

.benefit-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow: 0 24px 48px rgba(84, 88, 90, 0.12);
  border-color: rgba(241, 209, 209, 0.95);
}

.benefit-card {
  padding: 28px;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--color-primary-soft);
  color: var(--color-text);
  margin-bottom: 18px;
  font-size: 1.35rem;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 22px rgba(241, 209, 209, 0.26);
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.benefit-card p {
  color: var(--color-text-soft);
}

/* Testimonios */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 30px;
}

.testimonial-card h3 {
  margin-top: 16px;
  font-size: 1.05rem;
}

.testimonial-card p {
  color: var(--color-text-soft);
}

.stars {
  color: #d1ab60;
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* =========================
   CONTACTO PREMIUM
========================= */
.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

.contact-info {
  max-width: 760px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 12px 0 18px;
}

.contact-info p {
  color: var(--color-text-soft);
  margin-bottom: 24px;
  max-width: 760px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(200, 200, 200, 0.42);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(84, 88, 90, 0.06);
  backdrop-filter: blur(10px);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(84, 88, 90, 0.10);
  border-color: rgba(241, 209, 209, 0.95);
  background: rgba(255, 255, 255, 0.94);
}

.contact-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--color-primary-soft);
  color: var(--color-text);
  flex-shrink: 0;
  font-size: 1.05rem;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.contact-card:hover i {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 22px rgba(241, 209, 209, 0.26);
}

.contact-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--color-text);
}

.contact-card span {
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-whatsapp {
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.05);
}

.contact-whatsapp i {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

/* MAPA PREMIUM */
.contact-map-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-map-shell {
  position: relative;
}

.contact-map-card {
  width: 100%;
  height: 460px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(200, 200, 200, 0.42);
  box-shadow:
    0 24px 50px rgba(84, 88, 90, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-floating-card {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  max-width: 320px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 20px 36px rgba(84, 88, 90, 0.10);
}

.map-floating-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(241, 209, 209, 0.45);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.map-floating-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--color-text);
}

.map-floating-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.map-overlay-button {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 28px rgba(84, 88, 90, 0.10);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.map-overlay-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 34px rgba(84, 88, 90, 0.14);
}

.map-overlay-button i {
  font-size: 0.92rem;
}

/* Footer */
.footer {
  background: #faf6f6;
  border-top: 1px solid rgba(200, 200, 200, 0.45);
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 30px;
  padding-bottom: 34px;
}

.footer p,
.footer li {
  color: var(--color-text-soft);
}

.footer h4 {
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-logo .logo-img {
  width: 56px;
  height: 56px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(200, 200, 200, 0.55);
  background: #fff;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(241, 209, 209, 0.18);
  color: var(--color-text);
  border-color: rgba(241, 209, 209, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(200, 200, 200, 0.45);
  padding: 18px 0 24px;
  text-align: center;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.35);
  z-index: 1001;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 38px rgba(37, 211, 102, 0.42);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.28);
  z-index: -1;
  animation: whatsappRing 2.2s infinite;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); }
  8% { transform: scale(1.04); }
  16% { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes whatsappRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes heroFloatOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, 14px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroFloatTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, -16px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-visual,
  .hero-card-main,
  .hero-image,
  .service-card,
  .benefit-card,
  .testimonial-card,
  .contact-card,
  .promo-banner,
  .promo-image,
  .hero::before,
  .hero::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .promo-banner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .badge-top,
  .badge-bottom {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .promo-banner {
    gap: 34px;
    padding: 42px;
  }

  .promo-content {
    max-width: 100%;
  }

  .promo-image {
    max-width: 100%;
    height: auto;
    max-height: 520px;
  }
}

@media (max-width: 860px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: clamp(2.3rem, 9vw, 3.8rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .promo-banner {
    padding: 34px 26px;
  }

  .nav-container {
    min-height: 92px;
  }

  .logo-img {
    width: 66px;
    height: 66px;
  }

  .logo-title {
    font-size: 1.35rem;
  }

  .logo-subtitle {
    font-size: 0.72rem;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-grid-modern,
  .benefits-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-container,
  .about-image-container,
  .contact-map-card {
    min-height: 320px;
  }

  .contact-map-card iframe {
    min-height: 320px;
  }

  .benefit-card,
  .testimonial-card,
  .contact-card {
    padding: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .service-card-modern p,
  .service-card-promo p {
    max-width: 100%;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  #servicios .section-heading {
    text-align: left;
    margin-bottom: 30px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .logo-img {
    width: 58px;
    height: 58px;
  }

  .logo-title {
    font-size: 1.2rem;
  }

  .logo-subtitle {
    font-size: 0.64rem;
  }

  .promo-banner {
    padding: 28px;
    border-radius: 24px;
    gap: 26px;
  }

  .promo-content h2 {
    font-size: 2.5rem;
  }

  .promo-description {
    font-size: 0.98rem;
  }

  .promo-button {
    width: 100%;
    justify-content: center;
  }

  .promo-image {
    border-radius: 18px;
  }

  .map-button {
    width: 100%;
  }
}