/* ============================================
   VARIABLES Y CONFIGURACIÓN BASE
   ============================================ */

:root {
  --font-sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "LoRes12", "Lo-Res", "Lato", sans-serif;
  --color-primary: #6032b9;
  --color-primary-dark: #44228d;
  --color-secondary: #13c28c;
  --color-accent: #ec378e;
  --color-magenta: #f34fe3;
  --color-bright: #ffe66d;
  --color-dark: #1f1744;
  --color-light: #fef3ff;
  --color-white: #ffffff;
  --color-gray: #6c6a87;
  --shadow-soft: 0 18px 36px rgba(31, 23, 68, 0.17);
  --shadow-card: 0 16px 30px rgba(31, 23, 68, 0.12);
  --max-width: 1080px;
  --radius-lg: 24px;
}

/* ============================================
   FUENTES
   ============================================ */

@font-face {
  font-family: "LoRes12";
  src: url("assets/fonts/LoRes12OT-Regular.woff2") format("woff2"),
    url("assets/fonts/LoRes12OT-Regular.woff") format("woff"),
    url("assets/fonts/LoRes12OT-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("assets/fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-magenta));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.preloader__logo {
  width: 200px;
  height: auto;
  animation: logoFloat 2s ease-in-out infinite;
}

.preloader__spinner {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.preloader__pixel {
  width: 16px;
  height: 16px;
  background: var(--color-white);
  animation: pixelBounce 1s ease-in-out infinite;
}

.preloader__pixel--1 {
  animation-delay: 0s;
}

.preloader__pixel--2 {
  animation-delay: 0.15s;
}

.preloader__pixel--3 {
  animation-delay: 0.3s;
}

.preloader__pixel--4 {
  animation-delay: 0.45s;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pixelBounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(2);
    opacity: 0.7;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   ESTILOS GLOBALES
   ============================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
  max-width: 100%;
}

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

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

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  background: #ffffff;
  padding: 22px 0 18px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 6px solid #1f1744;
}

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

.header-logo {
  height: 68px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}


.nav__actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-cta {
  display: block;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.nav-cta__image {
  display: block;
  width: 170px;
  height: auto;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  background: url("assets/images/bg-banner.webp") center/cover no-repeat;
  padding: 120px 0 90px;
  color: var(--color-white);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
}

.hero__content {
  grid-column: span 7;
  opacity: 0;
  animation: slideInLeft 0.8s ease-out 0.1s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--color-white);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__media {
  grid-column: span 5;
  justify-self: center;
  opacity: 0;
  animation: slideInRight 0.8s ease-out 0.3s forwards;
}

.hero__cta {
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease, filter 0.2s ease;
  animation: pulse 2s ease-in-out infinite;
}

.hero__cta:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
}

.hero__cta-img {
  display: block;
  width: min(100%, 340px);
  height: auto;
}

.cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--primary {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.btn--secondary {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: none;
}

.btn--white-outline {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
  box-shadow: none;
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */

.section {
  padding: 100px 0;
  position: relative;
}

.section--light {
  background: url("assets/images/bg-block-1.webp") top/cover no-repeat,
    var(--color-light);
}

.section--bright {
  background: url("assets/images/bg-block-2.webp") center/cover no-repeat,
    linear-gradient(135deg, var(--color-secondary), var(--color-magenta));
  color: var(--color-dark);
}

.section--purple {
  background: url("assets/images/bg-block-3.webp") center/cover no-repeat,
    linear-gradient(135deg, var(--color-magenta), var(--color-primary));
  color: var(--color-white);
}

.section--testimonials {
  background: url("assets/images/bg-block-4.webp") center/cover no-repeat,
    var(--color-light);
}

.section--hosting {
  background: url("assets/images/bg-block-5.webp") center/cover no-repeat,
    linear-gradient(160deg, var(--color-primary), var(--color-dark));
  color: var(--color-white);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.two-col__content {
  grid-column: span 7;
}

.two-col__aside {
  grid-column: span 5;
}

.card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.card--floating {
  border: 3px solid var(--color-primary);
}

/* ============================================
   BLOQUE 1 - SERVICIOS
   ============================================ */

.section--block1 .block-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 72px;
  position: relative;
}

.section--block1 .block-header__content {
  flex: 1;
}

.section--block1 .block-title {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--color-dark);
}

.section--block1 .block-subtitle {
  font-family: var(--font-sans);
  font-size: 35PX;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.section--block1 .block-description {
  font-size: 25PX;
  line-height: 1.6;
  margin: 0;
  color: #7a7891;
  max-width: 520px;
}

.section--block1 .block-header__cta {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.2s ease;
  align-self: flex-start;
  animation: pulse 2s ease-in-out infinite;
}

.section--block1 .block-header__cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.section--block1 .block-header__cta-img {
  display: block;
  width: min(100%, 260px);
  height: auto;
}

.section--block1 .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.section--block1 .feature-item {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(31, 23, 68, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.section--block1 .feature-item:nth-child(1) {
  animation-delay: 0.2s;
}

.section--block1 .feature-item:nth-child(2) {
  animation-delay: 0.4s;
}

.section--block1 .feature-item:nth-child(3) {
  animation-delay: 0.6s;
}

.section--block1 .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 23, 68, 0.12);
}

.section--block1 .feature-item__icon {
  width: 72px;
  height: auto;
  margin: 0 auto 24px;
}

.section--block1 .feature-item__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #2d2654;
}

.section--block1 .feature-item__text {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
  color: #6c6a87;
  text-align: left;
}

.feature-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.feature-list img {
  width: 72px;
}


/* ============================================
   BLOQUE 2 - ¿QUÉ HACEMOS?
   ============================================ */

.section--block2 {
  color: var(--color-white);
  position: relative;
}

.block2-header {
  text-align: left;
  margin-bottom: 56px;
}

.block2-title {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--color-white);
}

.block2-subtitle {
  font-size: 25px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.block2-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 48px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.15);
}

.block2-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block2-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  align-items: start;
  opacity: 0;
  animation: slideInLeft 0.6s ease-out forwards;
}

.block2-item:nth-child(1) {
  animation-delay: 0.1s;
}

.block2-item:nth-child(2) {
  animation-delay: 0.3s;
}

.block2-item:nth-child(3) {
  animation-delay: 0.5s;
}

.block2-item__icon {
  width: 120px;
  height: auto;
}

.block2-item__content {
  flex: 1;
}

.block2-item__title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--color-white);
}

.block2-item__text {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   BLOQUE 3 - CTA
   ============================================ */

.section--block3 {
  color: var(--color-white);
}

.block3-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.block3-text {
  max-width: 580px;
}

.section--block3 .block3-title {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--color-white);
}

.section--block3 .block3-description {
  font-size: 24px;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.block3-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}

.block3-bubble-img {
  display: block;
  width: min(100%, 380px);
  height: auto;
}

.block3-btn {
  display: block;
  width: min(100%, 320px);
  height: auto;
  transition: transform 0.3s ease, filter 0.2s ease;
  animation: pulse 2s ease-in-out infinite;
}

.block3-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.block3-ornament-bottom {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 50px;
  height: auto;
}


/* ============================================
   BLOQUE 4 - TESTIMONIOS
   ============================================ */

.section--block4 {
  background: var(--color-light);
}

.block4-header {
  text-align: center;
  margin-bottom: 56px;
}

.block4-title {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--color-dark);
}

.block4-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 32px;
  color: var(--color-gray);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.block4-google {
  display: block;
  width: min(100%, 200px);
  height: auto;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.testimonial__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonial__google-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 28px;
  height: auto;
}

.testimonial__name {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-dark);
}

.testimonial__stars {
  font-size: 18px;
  color: #fbbc04;
  margin-bottom: 12px;
}

.testimonial__text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--color-gray);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d1d1;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--color-primary);
}

.block4-cta {
  text-align: center;
  margin-top: 24px;
}

.block4-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(110, 75, 207, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.block4-btn:hover {
  transform: translateY(-3px);
  background: var(--color-magenta);
  box-shadow: 0 8px 20px rgba(110, 75, 207, 0.4);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}


/* ============================================
   BLOQUE 5 - HOSTING
   ============================================ */

.section--block5 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #8b6bce, #6e4bcf);
  color: var(--color-white);
  text-align: center;
}

.section--block5::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/FONDO_BLOQUE 05 LAMEJOR.webp") center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.section--block5 .container {
  position: relative;
  z-index: 1;
}

.block5-title {
  font-family: var(--font-display);
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: var(--color-white);
}

.block5-description {
  font-size: 30px;
  line-height: 1.6;
  margin: 0 0 64px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.block5-card {
  position: relative;
  background: rgba(90, 57, 184, 0.45);
  border-radius: 0;
  padding: 56px 120px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.block5-label {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--color-white);
  text-transform: uppercase;
}

.block5-btn-link {
  display: block;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease;
}

.block5-btn-link:hover {
  transform: translateY(-3px);
}

.block5-btn {
  display: inline-block;
  width: auto;
  max-width: 380px;
  height: auto;
  animation: pulse 2s ease-in-out infinite;
}

.block5-ornament {
  position: absolute;
  width: 70px;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}

.block5-ornament--left {
  left: 40px;
}

.block5-ornament--right {
  right: 40px;
  transform: translateY(-50%) scaleX(-1);
}


/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #ffffff;
  padding: 22px 0 18px;
  border-top: 6px solid #1f1744;
}

.footer-logo {
  height: 68px;
  width: auto;
}

/* ============================================
   BOTONES FLOTANTES
   ============================================ */

.urgency-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--color-bright);
  color: var(--color-dark);
  text-decoration: none;
  border: 4px solid var(--color-dark);
  box-shadow: 4px 4px 0 var(--color-primary-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  transition: transform 0.12s steps(1, start), box-shadow 0.12s steps(1, start);
}

.urgency-float::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 3px solid var(--color-dark);
  opacity: 0.35;
  pointer-events: none;
}

.urgency-float:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--color-primary-dark);
}

.urgency-float__text {
  color: inherit;
  white-space: nowrap;
  text-align: center;
  letter-spacing: inherit;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 5px;
  z-index: 100;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
}

.whatsapp-float img {
  width: 63px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* ============================================
   ORNAMENTOS DECORATIVOS
   ============================================ */

.ornament {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.ornament-rosa {
  top: 10%;
  left: 5%;
  width: 120px;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

.ornament-verde {
  bottom: 15%;
  right: 5%;
  width: 100px;
  opacity: 0.7;
  animation: float 8s ease-in-out 1s infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

h2,
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin: 0 0 16px;
}

h3 {
  font-family: var(--font-display);
  margin: 0 0 12px;
}

p {
  margin: 0;
  color: var(--color-gray);
}

.section--bright p,
.section--purple p,
.section--hosting p,
.hero p {
  color: rgba(255, 255, 255, 0.86);
}

.section--bright h2,
.section--purple h2,
.section--hosting h2,
.hero h1 {
  color: var(--color-white);
}

/* ============================================
   RESPONSIVE - TABLETS (960px)
   ============================================ */

@media (max-width: 900px) {
  .section--block1 .block-header {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .section--block1 .block-header__cta-img {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .section--block1 .block-title {
    font-size: 42px;
  }

  .section--block1 .block-subtitle {
    font-size: 28px;
  }

  .section--block1 .block-description {
    font-size: 20px;
  }
}

@media (max-width: 960px) {
  .hero__grid {
    gap: 40px;
  }

  .hero__content {
    grid-column: span 6;
  }

  .hero__media {
    grid-column: span 6;
  }

  .hero__media img {
    max-width: 100%;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col__content,
  .two-col__aside {
    grid-column: auto;
  }

  .section--block1 .block-header {
    gap: 32px;
  }

  .section--block1 .block-header__cta-img {
    width: min(100%, 220px);
  }

  .section--block1 .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .block2-item {
    grid-template-columns: 100px 1fr;
    gap: 24px;
  }

  .block2-item__icon {
    width: 90px;
  }

  .block3-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .block3-bubble-img {
    width: min(100%, 320px);
  }

  .block3-btn {
    width: min(100%, 280px);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .block5-card {
    padding: 32px 40px;
  }

  .block5-ornament {
    width: 50px;
  }
}

/* ============================================
   RESPONSIVE - TABLETS PEQUEÑAS (768px)
   ============================================ */

@media (max-width: 768px) {
  .hero__grid {
    gap: 32px;
  }

  .hero__content {
    grid-column: span 6;
  }

  .hero__media {
    grid-column: span 6;
  }

  .hero__media img {
    max-width: 100%;
  }

  .section--block1 .block-header {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .section--block1 .block-header__cta-img {
    width: min(100%, 240px);
    margin: 0 auto;
  }

  .section--block1 .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .block2-item {
    grid-template-columns: 90px 1fr;
    gap: 20px;
  }

  .block2-item__icon {
    width: 80px;
  }

  .block3-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .block3-bubble-img {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .block3-btn {
    width: min(100%, 280px);
  }

  .block3-ornament-bottom {
    display: none;
  }
}

/* ============================================
   RESPONSIVE - MÓVILES (720px)
   ============================================ */

@media (max-width: 720px) {
  .site-header {
    padding: 16px 0;
  }

  .header-logo {
    height: 56px;
  }

  .main-nav {
    gap: 10px;
    flex-wrap: wrap;
  }

  .nav__actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .nav-cta__image {
    width: 140px;
  }

  .footer-logo {
    height: 56px;
  }

  .hero {
    padding: 100px 0 70px;
  }

  .cta-group {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .feature-list li {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .testimonial {
    padding: 24px;
  }

  .urgency-float {
    left: 50%;
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    padding: 10px 16px;
    width: min(220px, calc(100% - 48px));
    min-height: auto;
    transform: translateX(-50%);
    writing-mode: horizontal-tb;
    text-orientation: initial;
    letter-spacing: 0.02em;
    font-size: 0.72rem;
  }

  .urgency-float:hover {
    transform: translateX(-50%) translateY(-3px);
  }

  .urgency-float::after {
    inset: -3px;
  }
}

/* ============================================
   RESPONSIVE - MÓVILES PEQUEÑOS (540px)
   ============================================ */

@media (max-width: 540px) {
  .site-header {
    padding: 12px 0;
  }

  .header-logo {
    height: 48px;
  }

  .main-nav {
    gap: 8px;
  }

  .nav__actions {
    gap: 6px;
  }

  .nav-cta__image {
    width: 120px;
  }

  .footer-logo {
    height: 48px;
  }

  .nav__toggle {
    order: 3;
  }

  .hero {
    text-align: center;
    padding: 80px 0 60px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .hero__content {
    order: 2;
  }

  .hero__media {
    order: 1;
  }

  .hero__media img {
    max-width: 360px;
    margin: 0 auto;
  }

  .block5-card {
    padding: 28px 24px;
  }

  .block5-ornament {
    display: none;
  }

  .hero__media {
    order: 1;
  }

  .section {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  .urgency-float {
    width: min(210px, calc(100% - 32px));
    padding: 9px 14px;
    font-size: 0.68rem;
  }

  .urgency-float::after {
    inset: -3px;
  }

  .block2-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .block2-item__icon {
    width: 80px;
    margin: 0 auto;
  }

  .block2-item__title {
    font-size: 16px;
  }

  .block2-item__text {
    font-size: 15px;
  }

  .block5-ornament,
  .block3-ornament-bottom,
  .ornament-rosa,
  .ornament-verde {
    display: none;
  }

  * {
    max-width: 100%;
  }

}

/* ============================================
   RESPONSIVE - MÓVILES MUY PEQUEÑOS (420px)
   ============================================ */

@media (max-width: 420px) {
  .site-header {
    padding: 10px 0;
  }

  .header-logo {
    height: 42px;
  }

  .nav__actions {
    gap: 5px;
  }

  .nav-cta__image {
    width: 100px;
  }

  .footer-logo {
    height: 42px;
  }

  .urgency-float {
    width: min(200px, calc(100% - 28px));
    padding: 8px 12px;
    font-size: 0.66rem;
  }

  .urgency-float::after {
    inset: -2px;
  }

  .whatsapp-float img {
    width: 50px;
  }

  .container {
    width: min(100% - 16px, var(--max-width));
    padding-left: 8px;
    padding-right: 8px;
  }

  body,
  html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .section {
    overflow: hidden;
    width: 100%;
  }

  .hero__media img,
  .block5-btn,
  .block3-bubble-img,
  .block3-btn {
    max-width: 100%;
  }
}