/* ===== RESET & BASE ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #1a2e22;
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

:root {
  --green-50: #e8f7ee;
  --green-100: #cdf5e6;
  --green-200: #a8e6c4;
  --green-400: #4ec38a;
  --green-500: #2f9d6e;
  --green-600: #1c6e4c;
  --green-700: #144e36;
  --green-900: #0a2e1f;
  --white: #ffffff;
  --gray-50: #f8faf9;
  --gray-100: #eef2f0;
  --gray-300: #cfd8d4;
  --gray-500: #6b7d75;
  --gray-700: #3a4a42;
  --gray-900: #1a2e22;
  --shadow-sm: 0 2px 8px rgba(28,110,76,.06);
  --shadow-md: 0 8px 24px rgba(28,110,76,.10);
  --shadow-lg: 0 20px 50px rgba(28,110,76,.18);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(47,157,110,.30);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47,157,110,.40);
}
.btn-outline {
  background: transparent;
  color: var(--green-600);
  border-color: var(--green-500);
}
.btn-outline:hover {
  background: var(--green-500);
  color: white;
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--green-600);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: white; color: var(--green-600); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 100;
  transition: all .3s ease;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(47,157,110,.3);
}
.logo-text {
  font-size: 17px;
  color: var(--gray-900);
  font-weight: 400;
}
.logo-text strong { color: var(--green-600); font-weight: 700; }
.logo-light .logo-text { color: white; }
.logo-light .logo-text strong { color: var(--green-200); }

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 20px;
}
.nav-links a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 14.5px;
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--green-600); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--green-500);
  transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-600);
  border-radius: 2px;
  transition: all .25s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0faf4 0%, #ffffff 60%, #e8f7ee 100%);
}
.hero-bg {
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47,157,110,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 580px; }
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(47,157,110,.12);
  color: var(--green-600);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.highlight {
  color: var(--green-500);
  background: linear-gradient(180deg, transparent 65%, rgba(47,157,110,.18) 65%);
  padding: 0 4px;
}
.lead {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green-500);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 28px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.trust-item strong {
  font-size: 22px;
  color: var(--green-600);
  font-weight: 800;
}
.trust-item span {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-100);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  width: 100%;
  max-width: 380px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform .35s;
}
.hero-card:hover { transform: rotate(0); }
.hero-card-img { aspect-ratio: 4/3; overflow: hidden; }
.hero-card-img svg { width: 100%; height: 100%; display: block; }
.hero-card-body { padding: 24px; }
.hero-card-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  margin-bottom: 12px;
}
.hero-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.hero-card-sub {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 16px;
}
.hero-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-100);
}
.hero-card-price span { font-size: 13px; color: var(--gray-500); }
.hero-card-price strong { font-size: 28px; color: var(--green-600); font-weight: 800; }
.hero-card-price small { font-size: 13px; color: var(--gray-500); }

.floating-badge {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.floating-badge-1 {
  top: 20px;
  left: -10px;
  animation-delay: 0s;
}
.floating-badge-2 {
  bottom: 30px;
  right: -10px;
  animation-delay: 1.5s;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-light { background: var(--gray-50); }
.section-green {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: white;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-head-light { color: white; }
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.eyebrow-light {
  background: rgba(255,255,255,.18);
  color: white;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -.5px;
}
.section-head-light h2 { color: white; }
.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
}
.section-head-light .section-sub { color: rgba(255,255,255,.85); }
.text-green { color: var(--green-500); }
.text-white-bold { color: var(--green-200); }
.text-light-green { color: var(--green-200); }

/* ===== UBICACIÓN ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}
.location-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
}
.loc-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.loc-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.loc-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: 12px;
  font-size: 24px;
}
.loc-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.loc-item p { font-size: 14px; color: var(--gray-500); line-height: 1.55; }

/* ===== BENEFICIOS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all .3s;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  border-radius: 16px;
  font-size: 30px;
  margin: 0 auto 18px;
}
.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== LOTES ===== */
.lotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lote-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--gray-900);
  transition: all .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.lote-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.20); }
.lote-featured {
  border: 2px solid var(--green-200);
  position: relative;
  transform: scale(1.03);
}
.lote-featured:hover { transform: translateY(-8px) scale(1.03); }
.lote-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.lote-img svg { width: 100%; height: 100%; }
.lote-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: white;
  color: var(--green-700);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
}
.lote-tag-featured { background: var(--green-500); color: white; }
.lote-body { padding: 24px; }
.lote-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
}
.lote-specs {
  margin-bottom: 22px;
  border-top: 1px solid var(--gray-100);
}
.lote-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.lote-specs span { color: var(--gray-500); }
.lote-specs strong { color: var(--gray-900); font-weight: 600; }

/* ===== PAGOS ===== */
.pago-card {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.pago-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pago-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  transition: transform .25s;
}
.pago-item:hover { transform: translateY(-4px); }
.pago-highlight {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: white;
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(47,157,110,.30);
}
.pago-highlight:hover { transform: scale(1.05) translateY(-4px); }
.pago-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--gray-500);
  margin-bottom: 8px;
  font-weight: 600;
}
.pago-highlight .pago-label { color: rgba(255,255,255,.85); }
.pago-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--green-600);
}
.pago-highlight .pago-value { color: white; }
.pago-value small { font-size: 13px; font-weight: 500; opacity: .8; }
.pago-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px dashed var(--gray-100);
}
.pago-footer p {
  margin-bottom: 20px;
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
}

/* ===== GALERÍA ===== */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}
.galeria-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all .3s;
}
.galeria-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.galeria-item svg { width: 100%; height: 100%; object-fit: cover; }
.galeria-large { grid-column: span 2; grid-row: span 2; }
.galeria-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(20,78,54,.85), transparent);
  color: white;
  font-weight: 600;
  font-size: 14px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content {
  position: relative;
  text-align: center;
  max-width: 720px;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-content p {
  font-size: 17px;
  margin-bottom: 36px;
  opacity: .92;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACTO ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 14px 0;
  color: var(--gray-900);
}
.contact-info > p {
  color: var(--gray-500);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: center;
}
.ci-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: 10px;
  font-size: 20px;
}
.contact-list strong {
  display: block;
  font-size: 13px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
.contact-list a, .contact-list span {
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 500;
}
.contact-list a:hover { color: var(--green-600); }

.contact-form {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: all .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(47,157,110,.10);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 14px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; }
.footer h5 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: var(--green-200); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.40);
  z-index: 99;
  transition: transform .25s, box-shadow .25s;
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,.55);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.40); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,.40), 0 0 0 12px rgba(37,211,102,.15); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-content,
  .grid-2,
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .lotes-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .lote-featured { transform: none; }
  .lote-featured:hover { transform: translateY(-8px); }
  .pago-grid { grid-template-columns: repeat(2, 1fr); }
  .pago-highlight { grid-column: span 2; transform: none; }
  .pago-highlight:hover { transform: translateY(-4px); }
  .footer-content { grid-template-columns: 1fr; gap: 30px; }
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .galeria-large { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-content .btn { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: white;
    padding: 24px;
    margin: 0;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    gap: 18px;
  }
  .hero { padding: 110px 0 60px; }
  .hero-trust { width: 100%; justify-content: space-between; padding: 16px; gap: 10px; }
  .trust-item strong { font-size: 18px; }
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .pago-card { padding: 32px 20px; }
  .pago-grid { grid-template-columns: 1fr; }
  .pago-highlight { grid-column: auto; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .floating-badge { font-size: 11px; padding: 8px 12px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-large { grid-column: auto; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
}
