/* =========================
   VARIABLES Y RESET BÁSICO
========================= */
:root {
    --yellow: #FFD200;
    --dark: #333333;
    --gray: #777777;
    --white: #ffffff;
    --bg-light: #f7f7f7;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-light);
    color: var(--dark);
    line-height: 1.6;
    padding-top: 90px;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 10px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

.menu {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.menu a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

/* =========================
   BOTÓN HAMBURGUESA
========================= */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(0, 0, 0, 0.82);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.18);
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   FOOTER
========================= */
.footer {
    background: linear-gradient(180deg, #2b2b2b 0%, #1f1f1f 100%);
    color: var(--white);
    padding-top: 60px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 140px;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-links ul li a,
.footer-social a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--yellow);
    position: relative;
}

.footer h4::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: var(--yellow);
    border-radius: 10px;
    margin-top: 8px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--yellow);
    transform: translateX(4px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--yellow);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 991px) {
    body {
        padding-top: 82px;
    }

    .header {
        padding: 8px 0;
    }

    .nav {
        height: 62px;
    }

    .logo img {
        height: 48px;
    }

    .menu {
        position: fixed;
        top: 82px;
        right: 16px;
        left: 16px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
        padding: 18px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu a {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 10px 12px;
        border-radius: 12px;
    }

    .menu a:hover {
        background: #fff8d1;
        transform: none;
    }

    .menu-toggle {
        display: flex;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* =========================
   RESPONSIVE - CELULAR
========================= */
@media (max-width: 767px) {
    body {
        padding-top: 78px;
    }

    .container {
        width: min(92%, 100%);
    }

    .nav {
        height: 58px;
    }

    .logo img {
        height: 42px;
    }

    .menu {
        top: 76px;
        left: 12px;
        right: 12px;
        padding: 16px;
        gap: 10px;
    }

    .menu a {
        font-size: 15px;
        padding: 12px;
    }

    .footer {
        padding-top: 45px;
        margin-top: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .footer h4::after {
        margin: 8px auto 0;
    }

    .social-icons {
        justify-content: center;
    }
}

/* =========================
   RESPONSIVE - CELULAR PEQUEÑO
========================= */
@media (max-width: 480px) {
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
        padding: 0 10px;
    }
}


* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root{
      --red-1:#eb1b23;
      --red-2:#d20f1d;
      --red-3:#b90f18;
      --red-4:#960d15;
      --white:rgba(255,255,255,0.96);
      --shadow:rgba(0,0,0,0.18);
      --bill:#b9783d;
      --bill-border:#a3642d;
      --bill-center:rgba(255, 129, 156, 0.16);
      --bill-symbol:rgba(255, 151, 174, 0.9);
    }

    body {
      font-family: 'Poppins', 'Segoe UI', sans-serif;
      overflow-x: hidden;
      background: var(--red-4);
    }

    :root{
  --red-1:#eb1b23;
  --red-2:#d20f1d;
  --red-3:#b90f18;
  --red-4:#960d15;
  --white:rgba(255,255,255,0.96);
  --shadow:rgba(0,0,0,0.18);
  --bill:#b9783d;
  --bill-border:#a3642d;
  --bill-center:rgba(255, 129, 156, 0.16);
  --bill-symbol:rgba(255, 151, 174, 0.9);
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  overflow-x: hidden;
  background: var(--red-4);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 8% 90px;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.06), transparent 22%),
    linear-gradient(135deg, var(--red-1) 0%, var(--red-2) 35%, var(--red-3) 65%, var(--red-4) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.04), transparent 34%);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(
    to top,
    rgba(150, 13, 21, 0.95) 0%,
    rgba(150, 13, 21, 0.6) 40%,
    rgba(150, 13, 21, 0) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* =========================
   BILLETITOS
========================= */
.money-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.mini-bill {
  position: absolute;
  background: var(--bill);
  border: 2px solid var(--bill-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 12px rgba(0,0,0,0.14);
  opacity: 0;
  animation: floatBill linear infinite;
  overflow: hidden;
}

.mini-bill .bill-circle {
  width: 42%;
  height: 68%;
  background: var(--bill-center);
  border-radius: 50%;
  border: 2px solid var(--bill-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--bill-symbol);
  z-index: 2;
  line-height: 1;
}

.mini-bill .bill-circle::before {
  content: "$";
  font-size: 0.9em;
}

.mini-bill .mini-line {
  position: absolute;
  left: 20%;
  right: 20%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}

.mini-bill .mini-line.top {
  top: 18%;
}

.mini-bill .mini-line.bottom {
  bottom: 18%;
}

@keyframes floatBill {
  0% {
    transform: translateY(110vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.42;
  }
  90% {
    opacity: 0.24;
  }
  100% {
    transform: translateY(-120px) rotate(360deg);
    opacity: 0;
  }
}

/* =========================
   CASH BACK
========================= */
.words-area {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.falling-word {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 6px 6px 0 var(--shadow);
  white-space: nowrap;
  opacity: 0;
  user-select: none;
  line-height: .9;
}

.word-cash {
  top: -140px;
  animation: fallCashCentered 2.2s ease-out forwards;
}

.word-back {
  top: -140px;
  animation: fallBackCentered 2.2s ease-out 1s forwards;
}

@keyframes fallCashCentered {
  0% {
    transform: translateX(-50%) translateY(-140px) rotate(-12deg) scale(0.85);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  70% {
    transform: translateX(-50%) translateY(260px) rotate(6deg) scale(1.08);
  }

  /* rebote hacia arriba */
  82% {
    transform: translateX(-50%) translateY(220px) rotate(-3deg) scale(0.98);
  }

  /* segundo mini rebote */
  92% {
    transform: translateX(-50%) translateY(245px) rotate(1deg) scale(1.02);
  }

  100% {
    transform: translateX(-50%) translateY(235px) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes fallBackCentered {
  0% {
    transform: translateX(-50%) translateY(-140px) rotate(12deg) scale(0.85);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  70% {
    transform: translateX(-50%) translateY(410px) rotate(-6deg) scale(1.08);
  }

  /* rebote */
  82% {
    transform: translateX(-50%) translateY(360px) rotate(3deg) scale(0.98);
  }

  /* mini rebote */
  92% {
    transform: translateX(-50%) translateY(385px) rotate(-1deg) scale(1.02);
  }

  100% {
    transform: translateX(-50%) translateY(375px) rotate(0deg) scale(1);
    opacity: 1;
  }
}

/* =========================
   TEXTO + BOTONES
========================= */
.hero-content {
  position: relative;
  z-index: 20;
  color: white;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 320px;
}

.hero-kicker {
  position: relative;
  margin: 0 0 1.5rem 0;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.98);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(18px);
  animation: revealKicker 0.9s ease forwards;
  animation-delay: 1.9s;
  overflow: hidden;
}

.hero-kicker::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -30%;
  width: 22%;
  height: 130%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.12) 35%,
    rgba(255,255,255,0.65) 50%,
    rgba(255,255,255,0.12) 65%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-22deg);
  opacity: 0;
  animation: shineKicker 1.1s ease-in-out 2.8s forwards;
  pointer-events: none;
}

@keyframes revealKicker {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shineKicker {
  0% {
    left: -30%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

@keyframes revealButtons {
  from {
    opacity: 0;
    transform: translateY(25px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cta-button {
  background: #fff;
  color: #b91c1c;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: revealButtons 0.6s ease forwards;
}

.cta-button:nth-child(1) {
  animation-delay: 2.3s;
}

.cta-button:nth-child(2) {
  animation-delay: 2.5s;
}

.cta-button:hover {
  transform: translateY(-3px);
  background: #fff3c8;
  box-shadow: 0 16px 28px rgba(0,0,0,0.22);
}

.cta-button.secondary {
  background: rgba(0,0,0,0.24);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.cta-button.secondary:hover {
  background: rgba(0,0,0,0.34);
}

/* =========================
   CÓMO FUNCIONA
========================= */
.how-it-works {
  position: relative;
  background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
  padding: 90px 0;
}

.how-it-works-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.section-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffe7b3;
  color: #9a1a16;
  font-weight: 700;
  font-size: 0.9rem;
}

.how-it-works-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: #8f1414;
  margin-bottom: 16px;
}

.how-it-works-copy > p {
  color: #5f5f5f;
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 620px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.step-card {
  background: #fff;
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.step-number {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eb1b23, #b90f18);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(185, 15, 24, 0.22);
}

.step-text h3 {
  font-size: 1.05rem;
  color: #242424;
  margin-bottom: 6px;
}

.step-text p {
  color: #6b6b6b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.how-it-works-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.how-it-works-phone-wrap::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(235, 27, 35, 0.14), rgba(235, 27, 35, 0));
  filter: blur(20px);
  z-index: 0;
}

.phone {
  position: relative;
  width: 300px;
  height: 610px;
  background: linear-gradient(180deg, #2b2b2b, #111);
  border-radius: 42px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.32),
    inset 0 0 0 4px #383838,
    inset 0 0 20px rgba(255,255,255,0.03);
  overflow: hidden;
  z-index: 2;
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 18px;
  background: #0d0d0d;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.how-phone {
  width: 270px;
  height: 545px;
}

.phone-screen {
  position: absolute;
  top: 20px;
  left: 12px;
  right: 12px;
  bottom: 20px;
  background: #080808;
  border-radius: 32px;
  overflow: hidden;
}

.phone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 0.4s ease;
}

.phone-video.active {
  opacity: 1;
  z-index: 1;
}

.phone-screen-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.05), transparent 20%),
    linear-gradient(to top, rgba(0,0,0,0.18), transparent 30%);
  pointer-events: none;
  z-index: 2;
}
   
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .hero {
    padding: 50px 6% 80px;
  }

  .falling-word {
    font-size: clamp(4.5rem, 12vw, 8rem);
  }

  .hero-content {
    margin-top: 320px;
    max-width: 720px;
  }

  .how-it-works-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-it-works-copy {
    text-align: center;
  }

  .how-it-works-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .how-it-works-phone-wrap {
    order: -1;
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 40px 20px 70px;
  }

  .falling-word {
    font-size: clamp(4rem, 15vw, 6.3rem);
  }

  .hero-content {
    margin-top: 270px;
    max-width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works {
    padding: 70px 0;
  }

  /* CASH */
  @keyframes fallCashCentered {
    0% {
      transform: translateX(-50%) translateY(-140px) rotate(-12deg) scale(0.85);
      opacity: 0;
    }

    25% {
      opacity: 1;
    }

    70% {
      transform: translateX(-50%) translateY(200px) rotate(6deg) scale(1.08);
    }

    82% {
      transform: translateX(-50%) translateY(170px) rotate(-3deg) scale(0.98);
    }

    92% {
      transform: translateX(-50%) translateY(185px) rotate(1deg) scale(1.02);
    }

    100% {
      transform: translateX(-50%) translateY(180px) rotate(0deg) scale(1);
      opacity: 1;
    }
  }

  /* BACK */
  @keyframes fallBackCentered {
    0% {
      transform: translateX(-50%) translateY(-140px) rotate(12deg) scale(0.85);
      opacity: 0;
    }

    25% {
      opacity: 1;
    }

    70% {
      transform: translateX(-50%) translateY(310px) rotate(-6deg) scale(1.08);
    }

    82% {
      transform: translateX(-50%) translateY(270px) rotate(3deg) scale(0.98);
    }

    92% {
      transform: translateX(-50%) translateY(290px) rotate(-1deg) scale(1.02);
    }

    100% {
      transform: translateX(-50%) translateY(285px) rotate(0deg) scale(1);
      opacity: 1;
    }
  }
}

/* =========================
   CELULAR
========================= */

@media (max-width: 520px) {
  .hero {
    padding: 30px 16px 60px;
  }

  .falling-word {
    font-size: clamp(3.3rem, 17vw, 5rem);
    text-shadow: 4px 4px 0 rgba(0,0,0,0.16);
  }

  .hero-content {
    margin-top: 260px;
  }

  .hero-kicker {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
  }

  .how-phone {
    width: 235px;
    height: 475px;
    border-radius: 36px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .step-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .step-number {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px;
  }

  /* CASH */
  @keyframes fallCashCentered {
    0% {
      transform: translateX(-50%) translateY(-140px) rotate(-12deg) scale(0.85);
      opacity: 0;
    }

    25% {
      opacity: 1;
    }

    70% {
      transform: translateX(-50%) translateY(190px) rotate(6deg) scale(1.08);
    }

    82% {
      transform: translateX(-50%) translateY(165px) rotate(-3deg) scale(0.98);
    }

    92% {
      transform: translateX(-50%) translateY(178px) rotate(1deg) scale(1.02);
    }

    100% {
      transform: translateX(-50%) translateY(180px) rotate(0deg) scale(1);
      opacity: 1;
    }
  }

  /* BACK */
  @keyframes fallBackCentered {
    0% {
      transform: translateX(-50%) translateY(-140px) rotate(12deg) scale(0.85);
      opacity: 0;
    }

    25% {
      opacity: 1;
    }

    70% {
      transform: translateX(-50%) translateY(300px) rotate(-6deg) scale(1.08);
    }

    82% {
      transform: translateX(-50%) translateY(260px) rotate(3deg) scale(0.98);
    }

    92% {
      transform: translateX(-50%) translateY(280px) rotate(-1deg) scale(1.02);
    }

    100% {
      transform: translateX(-50%) translateY(285px) rotate(0deg) scale(1);
      opacity: 1;
    }
  }
}

/* =========================
   RESTRICCIONES
========================= */
.restrictions {
  background: linear-gradient(180deg, #fff 0%, #fff6ef 100%);
  padding: 80px 0;
}

.restrictions-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.restrictions-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #8f1414;
  margin-bottom: 12px;
}

.restrictions-header p {
  color: #6b6b6b;
  font-size: 1rem;
}

.restrictions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.restriction-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.restriction-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.restriction-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eb1b23, #b90f18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(185, 15, 24, 0.22);
}

.restriction-card h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 10px;1
}

.restriction-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}   