:root {
  --primary-color: #503b8a;
  --primary-glow: #9d84e6;
  /* Lighter glow for white bg */
  --secondary-color: #ffffff;
  --text-main: #333333;
  --text-muted: #666666;
  --card-bg: rgba(80, 59, 138, 0.05);
  /* Very light purple tint */

  --accent-green: #00ca7c;
  --accent-red: #ff4757;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Floating Icons Animation */
@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-30px) rotate(5deg) scale(1.1);
  }

  66% {
    transform: translateY(-15px) rotate(-5deg) scale(0.95);
  }
}

@keyframes floatIconAlt {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, -40px) rotate(-15deg);
  }
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Behind content but above grid */
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  /* Subtle background feel */
  filter: blur(1px);
  animation: floatIcon 6s ease-in-out infinite;
}

/* Specific Positions to avoid overlapping with main content (Center ~600px width) */
.icon-1 {
  top: 15%;
  left: 5%;
  font-size: 4rem;
  animation-delay: 0s;
}

/* Phone Top-Left */
.icon-2 {
  top: 10%;
  right: 10%;
  font-size: 3.5rem;
  animation-delay: 1s;
}

/* Headphones Top-Right */
.icon-3 {
  top: 40%;
  left: 8%;
  font-size: 2.5rem;
  animation-delay: 2s;
}

/* Fire Mid-Left */
.icon-4 {
  top: 50%;
  right: 5%;
  font-size: 4rem;
  animation-delay: 3s;
  filter: opacity(0.3);
}

/* Check Mid-Right */
.icon-5 {
  bottom: 20%;
  left: 15%;
  font-size: 3rem;
  animation-delay: 0.5s;
}

/* Money Low-Left */
.icon-6 {
  bottom: 15%;
  right: 20%;
  font-size: 3.5rem;
  animation-delay: 1.5s;
}

/* Radio Low-Right */
.icon-7 {
  top: 30%;
  right: 35%;
  font-size: 2rem;
  opacity: 0.1;
}

/* Laptop Top-Mid-Right */
.icon-8 {
  bottom: 35%;
  left: 35%;
  font-size: 2.5rem;
  opacity: 0.1;
}

/* Watch Top-Center */
.icon-9 {
  top: 5%;
  left: 40%;
  font-size: 2rem;
  opacity: 0.1;
}

/* New Icons */
.icon-10 {
  top: 25%;
  left: 20%;
  font-size: 2.5rem;
  animation: floatIconAlt 8s ease-in-out infinite;
}

.icon-11 {
  top: 60%;
  right: 25%;
  font-size: 2.2rem;
  animation: floatIcon 7s ease-in-out infinite;
}

.icon-12 {
  bottom: 10%;
  left: 50%;
  font-size: 2.8rem;
  animation: floatIconAlt 9s ease-in-out infinite;
}

.icon-13 {
  top: 80%;
  left: 5%;
  font-size: 3rem;
  animation: floatIcon 6.5s ease-in-out infinite;
}

.icon-14 {
  top: 15%;
  right: 40%;
  font-size: 2rem;
  animation: floatIconAlt 10s ease-in-out infinite;
}

.icon-15 {
  bottom: 40%;
  right: 10%;
  font-size: 3.5rem;
  animation: floatIcon 5.5s ease-in-out infinite;
}

/* Watch Top-Center */

.mag-glass {
  display: inline-block;
  font-size: 1em;
  animation: searchMove 3s ease-in-out infinite;
  transform-origin: bottom left;
  filter: drop-shadow(0 5px 10px rgba(80, 59, 138, 0.3));
}

@keyframes searchMove {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(-15deg) scale(1.1);
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--secondary-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects (Adapted for Light Mode) */
.background-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Subtle purple grid on white */
  background-image:
    linear-gradient(rgba(80, 59, 138, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 59, 138, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 1;
  transform: perspective(800px) rotateX(40deg) translateY(-100px) scale(1.5);
  transform-origin: top center;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  /* More subtle in light mode */
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -100px;
  left: -100px;
  animation: float 10s infinite ease-in-out;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #00ff9d;
  /* Adding a hint of green glow */
  bottom: -50px;
  right: -50px;
  animation: float 12s infinite ease-in-out reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, 50px);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem 2.5rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 10px 20px rgba(80, 59, 138, 0.25);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(80, 59, 138, 0.4);
  background: #3f2e6e;
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 0.8rem 2.5rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-color);
  margin-left: 1rem;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--card-bg);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Header */
header {
  padding: 2rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.logo h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a:not(.btn-primary) {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-links a:not(.btn-primary):hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6rem;
  padding-bottom: 4rem;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.badge {
  background: rgba(80, 59, 138, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  display: inline-block;
  border: 1px solid rgba(80, 59, 138, 0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 90%;
  font-family: var(--font-body);
}

.cta-group {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.store-buttons {
  display: flex;
  gap: 1rem;
}

.store-btn {
  display: flex;
  align-items: center;
  background: #1a1a1a;
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.store-btn:hover {
  background: #333;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.store-btn i {
  font-size: 1.8rem;
  margin-right: 0.8rem;
}

.store-btn span {
  text-align: left;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ccc;
}

.store-btn strong {
  font-size: 1rem;
  display: block;
  color: white;
  font-family: var(--font-display);
}

/* ANIMATION SECTION */
.hero-animation {
  flex: 1;
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pair-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.emoji-cloud {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-out;
  transform-style: preserve-3d;
}

.cloud-emoji {
  position: absolute;
  font-size: 3.5rem;
  /* Further reduced from 4.5rem to address "muy cargado" */
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
  animation: slowFloat 8s ease-in-out infinite;
  user-select: none;
  cursor: default;
}

/* Reduced sizes for individual emojis */
.ce-1 {
  top: 0%;
  left: 0%;
  font-size: 4.5rem;
  animation-delay: 0s;
}

.ce-2 {
  top: 5%;
  right: 5%;
  font-size: 4rem;
  animation-delay: 1s;
}

.ce-3 {
  bottom: 0%;
  left: 10%;
  font-size: 4.5rem;
  animation-delay: 2s;
}

.ce-4 {
  bottom: 5%;
  right: 15%;
  font-size: 3.5rem;
  animation-delay: 3s;
}

.ce-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  animation-delay: 1.5s;
  z-index: 5;
}

.ce-6 {
  top: -10%;
  left: 45%;
  font-size: 3rem;
  animation-delay: 4s;
}

.ce-7 {
  bottom: -10%;
  left: 45%;
  font-size: 3.5rem;
  animation-delay: 0.5s;
}

.ce-8 {
  top: 40%;
  right: -10%;
  font-size: 3rem;
  animation-delay: 2.5s;
}

.ce-9 {
  top: 40%;
  left: -10%;
  font-size: 3rem;
  animation-delay: 3.5s;
}

.ce-10 {
  top: -20%;
  left: 20%;
  font-size: 2.5rem;
  animation-delay: 1.2s;
}

.ce-11 {
  bottom: 20%;
  left: 30%;
  font-size: 2.2rem;
  animation-delay: 2.2s;
}

.ce-12 {
  top: 20%;
  right: 30%;
  font-size: 2.5rem;
  animation-delay: 0.8s;
}

@keyframes slowFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(10px, -20px) rotate(5deg);
  }

  66% {
    transform: translate(-10px, -10px) rotate(-5deg);
  }
}

/* Removed complex sway animations */

/* Price Tags */
.price-tag {
  position: absolute;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  white-space: nowrap;
}

.tag-high {
  left: -20px;
  background: white;
  color: var(--text-muted);
  border: 2px solid #eee;
  text-decoration: line-through;
  text-decoration-color: var(--accent-red);
  animation-delay: 0.5s;
  z-index: 20;
}

.tag-high .icon {
  font-size: 1.2rem;
  text-decoration: none;
  margin-left: 5px;
}

.tag-low {
  bottom: 25%;
  right: -20px;
  background: var(--accent-green);
  color: white;
  border: none;
  font-size: 1.3rem;
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 202, 124, 0.4);
  animation-delay: 1.2s;
  z-index: 20;
  /* Pops in after the high price */
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.tag-low {
  /* Override to scaling to 1.1 */
  animation-name: popInLarge;
}

@keyframes popInLarge {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1.1) translateY(0);
  }
}


/* Info Sections */
.info-section {
  padding: 8rem 2rem;
  text-align: center;
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #1a1a1a;
  margin-top: 1rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 3.5rem;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '✨';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  opacity: 0.5;
}

.about-lead {
  font-size: 1.4rem;
  max-width: 850px;
  margin: 0 auto 5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(80, 59, 138, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(80, 59, 138, 0.1);
}

.team-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-main);
}

/* Footer Improvements */
.footer {
  background-color: #f9f9f9;
  color: var(--text-main);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid #eee;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.5rem;
  background: white;
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(80, 59, 138, 0.2);
}

.copyright {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: #888;
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 7rem;
    overflow-x: hidden;
  }

  .hero-content {
    margin-bottom: 2rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .store-buttons {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .hero-animation {
    height: 400px;
    width: 100%;
    transform: scale(0.8);
  }

  .phone-container {
    width: 200px;
  }

  .tag-high {
    left: -20px;
  }

  .tag-low {
    right: -20px;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}