* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --bg-secondary: #0d0d0f;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-soft: #b9b9c2;
  --red: #d90429;
  --red-dark: #8d021c;
  --white: #ffffff;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(217, 4, 41, 0.14), transparent 22%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #030303 0%, #090909 55%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-tag {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  line-height: 1;
  flex-shrink: 0;
}

.logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(217, 4, 41, 0.2));
}

.logo > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.logo span span {
  color: var(--red);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: var(--text-soft);
  transition: 0.25s ease;
}

.menu a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #ff264f 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(217, 4, 41, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(217, 4, 41, 0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: 60px 0 40px;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 50px;
}

.hero-content > * {
  min-width: 0;
}

.tag {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(217, 4, 41, 0.12);
  border: 1px solid rgba(217, 4, 41, 0.2);
  color: #ff6b84;
  border-radius: 999px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 850px;
}

.hero-description {
  color: var(--text-soft);
  max-width: 620px;
  font-size: 1.08rem;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* AJUSTES PARA IMÁGENES O LOGOS EN HERO */
.hero-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-visual,
.hero-image-wrap,
.hero-logo-wrap,
.hero-media,
.hero-graphic {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img,
.hero-image-wrap img,
.hero-logo-wrap img,
.hero-media img,
.hero-graphic img,
.hero-logo,
.hero-brand-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.hero-card {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(217, 4, 41, 0.35), transparent 65%);
  top: -60px;
  right: -40px;
  filter: blur(10px);
}

.hero-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff788f;
  font-size: 0.8rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-card-content h3 {
  font-size: 2rem;
  margin-bottom: 22px;
}

.hero-card-content ul {
  display: grid;
  gap: 14px;
}

.hero-card-content li {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
}

.about-box,
.demo-box,
.contact-grid {
  display: grid;
  gap: 30px;
}

.about-box {
  padding: 35px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.about-box p {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 4, 41, 0.4);
}

.service-number {
  font-size: 0.95rem;
  color: #ff6d87;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--text-soft);
}

/* NUEVO: LISTA DE PLANES */
.plan-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.plan-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff264f 0%, #ff6d87 100%);
  box-shadow: 0 0 12px rgba(255, 38, 79, 0.35);
}

.plan-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.plan-actions .btn {
  width: 100%;
}

.demo-box {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.demo-info h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.demo-info p {
  color: var(--text-soft);
  margin-bottom: 16px;
}

.demo-preview {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
}

.preview-screen {
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(217, 4, 41, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: #ff8da0;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.preview-screen iframe {
  width: 100%;
  height: 100%;
  min-height: 396px;
  border: none;
  border-radius: 18px;
  background: #ffffff;
  display: block;
}

/* DEMO VISUAL WHATSAPP */
.phone-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 4, 41, 0.28) 0%, rgba(255, 38, 79, 0.16) 35%, rgba(217, 4, 41, 0.04) 60%, transparent 78%);
  filter: blur(32px);
  z-index: 0;
  animation: phoneGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.phone-frame {
  width: 340px;
  max-width: 100%;
  height: 690px;
  background: linear-gradient(180deg, #121212 0%, #050505 100%);
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #050505;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #ece5dd;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wa-topbar {
  min-height: 70px;
  background: #075e54;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px 14px;
  gap: 12px;
}

.wa-contact-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d9d9d9 0%, #f3f3f3 100%);
  flex-shrink: 0;
  position: relative;
}

.wa-avatar::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
}

.wa-contact-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.wa-contact-text strong {
  font-size: 1rem;
}

.wa-contact-text span {
  font-size: 0.76rem;
  opacity: 0.8;
}

.wa-top-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  flex-shrink: 0;
}

.wa-chat {
  flex: 1;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: auto, 22px 22px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.wa-chat::-webkit-scrollbar {
  width: 4px;
}

.wa-chat::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.wa-bubble {
  max-width: 82%;
  border-radius: 16px;
  padding: 12px 14px 18px;
  position: relative;
  font-size: 1rem;
  line-height: 1.45;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.wa-bubble p {
  color: #1f1f1f;
}

.wa-bubble > span {
  position: absolute;
  right: 12px;
  bottom: 6px;
  font-size: 0.72rem;
  color: #7b7b7b;
}

.wa-user {
  align-self: flex-end;
  background: #dcf8c6;
  border-top-right-radius: 6px;
}

.wa-bot {
  align-self: flex-start;
  background: #ffffff;
  border-top-left-radius: 6px;
}

/* BURBUJA ESCRIBIENDO */
.wa-typing {
  align-self: flex-start;
  background: #ffffff;
  border-top-left-radius: 6px;
  min-width: 74px;
  min-height: 48px;
  padding: 14px 16px;
}

.wa-typing-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 12px;
}

.wa-typing-dots span {
  position: static;
  right: auto;
  bottom: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8b8b8;
  display: inline-block;
  animation: waTypingDots 1.2s infinite ease-in-out;
}

.wa-typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.wa-typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes waTypingDots {
  0%,
  80%,
  100% {
    transform: scale(0.75);
    opacity: 0.45;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.wa-choice {
  align-self: flex-start;
  width: 86%;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #242424;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.wa-choice-number {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #ececec;
  color: #4a4a4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.wa-input-bar {
  min-height: 62px;
  background: #f0f0f0;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-input-placeholder {
  flex: 1;
  min-height: 42px;
  background: #ffffff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: #8c8c8c;
  font-size: 0.95rem;
}

.wa-input-icon {
  font-size: 1.1rem;
}

.wa-mic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ESTADO INICIAL PARA CONTROLAR CON JS */
.wa-step-typing,
.wa-step-1,
.wa-step-2,
.wa-step-3,
.wa-step-4,
.wa-step-5,
.wa-step-6,
.wa-step-7 {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  will-change: opacity, transform;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-item {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 600;
}

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-info {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--text-soft);
  margin-bottom: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  outline: none;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9f9faa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 4, 41, 0.5);
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.12);
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  text-align: center;
}

.footer-content h3 {
  margin-bottom: 10px;
}

.footer-content p {
  color: var(--text-soft);
}

/* BOTÓN FLOTANTE DE WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d90429 0%, #ff264f 100%);
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(217, 4, 41, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
  animation: whatsappPulse 2.2s infinite ease-in-out;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}

.whatsapp-float::before {
  background: rgba(255, 38, 79, 0.22);
  animation: whatsappRing 2.2s infinite ease-out;
}

.whatsapp-float::after {
  background: rgba(255, 38, 79, 0.12);
  animation: whatsappRing 2.2s 0.7s infinite ease-out;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(217, 4, 41, 0.42);
  animation-play-state: paused;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  animation-play-state: paused;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  line-height: 1;
  animation: whatsappIconFloat 2s infinite ease-in-out;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.whatsapp-text {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-2px) scale(1.03);
  }
  60% {
    transform: translateY(0) scale(1);
  }
}

@keyframes whatsappRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.28);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes whatsappIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes phoneGlowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 500px);
    gap: 40px;
  }

  .hero-visual img,
  .hero-image-wrap img,
  .hero-logo-wrap img,
  .hero-media img,
  .hero-graphic img,
  .hero-logo,
  .hero-brand-image {
    max-width: 420px;
  }
}

@media (max-width: 1024px) {
  .hero-content,
  .demo-box,
  .contact-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    align-items: start;
  }

  .services-grid article:last-child,
  .benefits-grid div:last-child {
    grid-column: span 2;
  }

  .phone-frame {
    width: 310px;
    height: 640px;
  }

  .phone-mockup::before {
    width: 300px;
    height: 300px;
  }

  .logo {
    font-size: 1.08rem;
    gap: 9px;
  }

  .logo-img {
    width: 62px;
    height: 62px;
  }

  .hero-visual img,
  .hero-image-wrap img,
  .hero-logo-wrap img,
  .hero-media img,
  .hero-graphic img,
  .hero-logo,
  .hero-brand-image {
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .hero-content,
  .demo-box,
  .contact-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .services-grid article:last-child,
  .benefits-grid div:last-child {
    grid-column: auto;
  }

  .section {
    padding: 80px 0;
  }

  .hero-card {
    min-height: 320px;
  }

  .nav {
    min-height: 76px;
  }

  .logo {
    font-size: 0.98rem;
    gap: 8px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .preview-screen {
    min-height: 500px;
    padding: 10px;
  }

  .preview-screen iframe {
    min-height: 480px;
    border-radius: 16px;
  }

  .phone-frame {
    width: 100%;
    max-width: 330px;
    height: 620px;
  }

  .phone-mockup::before {
    width: 260px;
    height: 260px;
    filter: blur(28px);
  }

  .wa-bubble,
  .wa-choice {
    max-width: 92%;
    width: auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 13px 16px;
    gap: 8px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .whatsapp-text {
    font-size: 0.9rem;
  }

  .hero-visual img,
  .hero-image-wrap img,
  .hero-logo-wrap img,
  .hero-media img,
  .hero-graphic img,
  .hero-logo,
  .hero-brand-image {
    max-width: 280px;
  }
}

/* ==============================
ANIMACIÓN FLOTANTE CELULAR
============================== */

.phone-frame {
  animation: phoneFloat 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes phoneFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-14px);
  }

  100% {
    transform: translateY(0px);
  }
}