* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: #ffffff;
  color: #1e2533;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-track {
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.d1 {
  animation-delay: 0.08s;
}

.d2 {
  animation-delay: 0.2s;
}

.d3 {
  animation-delay: 0.35s;
}

.d4 {
  animation-delay: 0.5s;
}

.d5 {
  animation-delay: 0.65s;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.breathe {
  animation: breathe 2.4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.float {
  animation: float 4s ease-in-out infinite;
}

.btn-press:active {
  transform: translateY(1px) scale(0.98);
}

[data-aos] {
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #ff2d8d;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.service-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #eceef3;
}

.service-card:hover {
  border-color: rgba(255, 45, 141, 0.35);
  box-shadow: 0 24px 50px -20px rgba(255, 45, 141, 0.18);
  transform: translateY(-6px);
}

.step-row {
  transition: background-color 0.3s ease;
}

.step-row:hover {
  background: #fff8fb;
}

.step-row:hover .step-num {
  color: #ff2d8d;
}

.step-num {
  transition: color 0.3s ease;
}

.material-chip {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.material-chip:hover {
  background: #1e2a3a;
  color: #fff;
  border-color: #1e2a3a;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(30, 42, 58, 0.4);
}

.tri-gradient {
  background: linear-gradient(90deg, #ff2d8d, #00aeef, #ffc300);
}

.hero-bg {
  background: linear-gradient(135deg, #ffe5dd 0%, #ffd6ca 50%, #ffb8a8 100%);
}

.hero-bg-img {
  background-image: url("./img/portada.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-bg-img {
    background-image: url("./img/portada_movil.png");
    background-position: center;
    background-size: cover;
  }
}

Select 82 more words to run Humanizer. .highlight-box {
  background: linear-gradient(135deg, #fff9e0 0%, #fff4cc 100%);
  border-left: 4px solid #ffc300;
}

.video-frame {
  background: linear-gradient(
    180deg,
    rgba(15, 26, 42, 0) 0%,
    rgba(15, 26, 42, 0.5) 100%
  );
}

.play-btn {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.15);
}

.client-logo {
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
}

.faq-item {
  border: 1px solid #eceef3;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #d4d9e3;
}

.faq-item[open] {
  border-color: #ff2d8d;
  background: #fff8fb;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.form-input {
  transition: all 0.25s ease;
}

.form-input:focus {
  outline: none;
  border-color: #2dc7ff;
  box-shadow: 0 0 0 4px rgba(255, 45, 141, 0.12);
  background: #fff;
}

.feature-card {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #eceef3;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #d4d9e3;
  box-shadow: 0 16px 32px -16px rgba(0, 0, 0, 0.08);
}

@keyframes bottleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

.bottle-float {
  animation: bottleFloat 6s ease-in-out infinite;
}

.logo-mark-bg {
  background: linear-gradient(135deg, #f6f7f9 0%, #eceef3 100%);
}

@media (max-width: 768px) {
  .hero-h1 {
    font-size: 2.4rem !important;
    line-height: 1.05 !important;
  }
}
