/* Base styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #1DD1A1, #F9CA24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4C3EFF;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.container-box {
  background: linear-gradient(135deg, #fffadf, #fdf6e5);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 50px;
  max-width: 1200px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.left-section {
  flex: 1 1 400px;
}

.right-section {
  flex: 1 1 350px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headline {
  font-size: 3rem;
  font-weight: 700;
  margin: 15px 0;
  line-height: 1.1;
}

.headline span {
  color: #01D5C5;
}

.subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.5;
}

.tagline {
  font-size: 1rem;
  color: #F1955C;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Nuevo estilo para "CUANDO LANCEMEMOS" */
.launch-text {
  font-size: 0.9rem;
  color: #FFB800;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.form-control {
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 16px 20px;
  font-size: 1.1rem;
  border: 1px solid #e0e0e0;
}

.btn-primary {
  background-color: #2D2A5A;
  border: none;
  border-radius: 0.5rem;
  padding: 16px 24px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #1F1C3D;
}

.platform-badge {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #666;
  background: #E5F0FF;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-block;
}

.phone-mockup {
  max-width: 100%;
  width: 232px;
  height: 467px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.mockup-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

/* Floating notification bubbles */
.floating-note {
  --tx: 0;               /* offset X */
  --ty: 0;               /* offset Y */
  position: absolute;
  z-index: 10;
  background-color: #00C4FF;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  white-space: nowrap;   /* evita romper líneas */
  transform: translate(var(--tx), var(--ty));
  animation: floatEase 4s infinite ease-in-out;
}

.floating-note.secondary {
  background-color: #FFD600;
  color: #111;
}

.floating-note.one {
  top: 15%;
  left: 0;
  --tx: -50%;
  --ty: 0;
}

.floating-note.two {
  bottom: 15%;
  right: 0;
  --tx: 50%;
  --ty: 0;
}

@keyframes floatEase {
  0%   { transform: translate(var(--tx), var(--ty)) translateY(0); }
  50%  { transform: translate(var(--tx), var(--ty)) translateY(-8px); }
  100% { transform: translate(var(--tx), var(--ty)) translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .container-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .right-section {
    margin-top: 40px;
    display: none;
  }
  .floating-note.one, .floating-note.two {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .phone-mockup {
    width: 280px;
  }
  
  .floating-note {
    font-size: 0.8rem;
    padding: 10px 16px;
  }
}