/* styles.css */

:root {

  --cyan: #00AEEF;
  --lime: #B7FF00;
  --dark: #111111;
  --white: #F7F7F7;
  --pink: #FF4FD8;
  --yellow: #FFD84D;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: white;
  overflow-x: hidden;

}

/* INTRO */

.intro-section {

  min-height: 100vh;
  position: relative;
  overflow: hidden;

}

.old-world {

  height: 50vh;
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('../img/raton-perez-deposito.webp') no-repeat;

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.intro-content {

  text-align: center;
  z-index: 2;
}

.intro-small {

  color: var(--yellow);
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.intro-title {

  font-family: 'Anton', sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.intro-text {

  margin-top: 20px;
  font-size: 1.2rem;
  opacity: .8;
}

.legacy-line {

  width: 120px;
  height: 4px;
  background: var(--yellow);
  margin: 30px auto;
}

.intro-transition {

  color: #ddd;
  font-size: 1rem;
}

.transition-glow {

  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan), transparent);

  filter: blur(100px);

  top: 30%;
  left: 50%;

  transform: translateX(-50%);
  opacity: .3;
}

/* NEW WORLD */

.new-world {

  min-height: 50vh;
  position: relative;

  background:
    radial-gradient(circle at top, rgba(0,174,239,.2), transparent),
    linear-gradient(to bottom, #111111, #050505);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 60px 0;
}

.ratp-container {

  text-align: center;
  z-index: 2;

  width: 100%;
  overflow: hidden;
}

.ratp-badge {

  display: inline-block;

  background: var(--lime);
  color: black;

  padding: 8px 18px;
  border-radius: 30px;

  font-weight: 700;
  margin-bottom: 20px;
}

.ratp-logo {

  margin: 50px auto;
}

.ratp-logo img {

  width: 100%;
  max-width: 320px;
  height: auto;

  border-radius: 30px;

  filter:
    drop-shadow(0 0 12px var(--cyan))
    drop-shadow(0 0 30px var(--cyan));
}

.ratp-subtitle {

  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;

  margin: 30px 0 10px;

  color: var(--white);

  text-shadow:
    0 0 20px rgba(255,255,255,.3);
}

.handoff-scene {

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 40px;

  margin: 50px 0;
}

.handoff-img {

  width: 100vw;
  max-width: 100vw;
  height: auto;

  display: block;

  border-radius: 0;

  box-shadow:
    0 0 60px rgba(120, 0, 200, .45),
    0 0 120px rgba(120, 0, 200, .2);

  margin: 10px 0 30px;
}

.energy-transfer {

  width: 150px;
  height: 6px;

  background:
    linear-gradient(to right,
    var(--yellow),
    var(--cyan));

  border-radius: 20px;

  animation: pulse 2s infinite;
}

.cta-main {

  padding: 18px 40px;
  border: none;

  background: var(--cyan);
  color: white;

  border-radius: 50px;

  font-size: 1rem;
  font-weight: 700;

  cursor: pointer;

  transition: .3s;
}

.cta-main:hover {

  transform: translateY(-4px) scale(1.03);

  box-shadow:
    0 0 20px var(--cyan),
    0 0 40px var(--cyan);
}

/* HERO */

.hero {

  min-height: 100vh;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 20px;

  background:
    radial-gradient(circle at top right,
    rgba(183,255,0,.15),
    transparent),

    linear-gradient(to bottom,
    #111,
    #050505);
}

.hero-content {

  text-align: center;
  max-width: 900px;
}

.hero-tag {

  display: inline-block;

  background: rgba(255,255,255,.08);

  padding: 10px 20px;

  border-radius: 30px;

  margin-bottom: 30px;

  letter-spacing: 2px;
}

.hero h1 {

  font-family: 'Anton', sans-serif;

  font-size: 6rem;
  line-height: .95;

  margin-bottom: 30px;
}

.hero p {

  font-size: 1.3rem;
  line-height: 1.6;

  opacity: .8;

  margin-bottom: 40px;
}

.hero-buttons {

  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {

  padding: 18px 32px;

  border-radius: 50px;

  font-weight: 700;
  cursor: pointer;

  transition: .3s;
}

.btn-primary {

  background: var(--lime);
  color: black;
  border: none;
}

.btn-secondary {

  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-primary:hover,
.btn-secondary:hover {

  transform: translateY(-4px);
}

/* FLOATING */

.floating {

  position: absolute;
  border-radius: 50%;

  filter: blur(20px);
}

.floating-1 {

  width: 300px;
  height: 300px;

  background: rgba(0,174,239,.15);

  top: 10%;
  left: -100px;
}

.floating-2 {

  width: 250px;
  height: 250px;

  background: rgba(183,255,0,.1);

  bottom: 10%;
  right: -80px;
}

.floating-3 {

  width: 180px;
  height: 180px;

  background: rgba(255,79,216,.12);

  top: 50%;
  left: 70%;
}

/* BENEFITS */

.benefits {

  padding: 120px 20px;
  background: #0b0b0b;
}

.section-title {

  text-align: center;
  margin-bottom: 70px;
}

.section-title span {

  color: var(--lime);
  font-weight: 700;
  letter-spacing: 3px;
}

.section-title h2 {

  font-family: 'Anton', sans-serif;
  font-size: 4rem;

  margin-top: 15px;
}

.cards {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(240px, 1fr));

  gap: 30px;

  max-width: 1200px;
  margin: auto;
}

.card {

  background: rgba(255,255,255,.03);

  border: 1px solid rgba(255,255,255,.05);

  border-radius: 30px;

  padding: 40px;

  transition: .4s;
}

.card:hover {

  transform: translateY(-10px);

  border-color: var(--cyan);

  box-shadow:
    0 0 20px rgba(0,174,239,.2);
}

.icon {

  font-size: 3rem;
  margin-bottom: 20px;
}

.card h3 {

  margin-bottom: 15px;
  font-size: 1.4rem;
}

.card p {

  opacity: .7;
  line-height: 1.5;
}

/* FOOTER */

footer {

  padding: 60px 20px;

  text-align: center;

  border-top:
    1px solid rgba(255,255,255,.08);
}

.footer-logo {

  font-family: 'Anton', sans-serif;
  font-size: 2rem;

  color: var(--cyan);

  margin-bottom: 10px;
}

/* ANIMATIONS */

@keyframes pulse {

  0% {
    opacity: .5;
    transform: scaleX(1);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }

  100% {
    opacity: .5;
    transform: scaleX(1);
  }
}

/* RESPONSIVE */

@media(max-width:768px){

  .intro-title {
    font-size: 3rem;
  }

  .ratp-logo {
    font-size: 4rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .handoff-scene {
    flex-direction: column;
  }

}