* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 50% 12%, rgba(164, 94, 255, 0.22), transparent 18%),
    radial-gradient(circle at 50% 42%, rgba(120, 60, 255, 0.14), transparent 22%),
    radial-gradient(circle at 50% 75%, rgba(188, 118, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #050507 0%, #0d0914 20%, #160d24 42%, #1d1131 55%, #120a1e 78%, #050507 100%);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 3, 12, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  font-weight: 400;
  opacity: 0.85;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}

.menu a:hover {
  color: white;
}

.hero {
  padding: 90px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 14px;
}

.hero-text h1 {
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.95;
  max-width: 620px;
  margin-bottom: 22px;
}

.hero-description {
  max-width: 560px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, #be67ff 0%, #8a40ff 55%, #5f2ae0 100%);
  box-shadow: 0 10px 30px rgba(125, 62, 255, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(155, 73, 255, 0.35) 0%, rgba(155, 73, 255, 0.12) 40%, transparent 70%);
  top: 40px;
  left: 60px;
  filter: blur(18px);
}

.computer {
  position: absolute;
  width: 320px;
  height: 200px;
  top: 40px;
  left: 90px;
  border-radius: 26px;
  background: linear-gradient(135deg, #26133f, #7a31ff);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.computer::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d884ff, #8f47ff);
  top: 60px;
  left: 122px;
}

.computer::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 14px;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, #7e68ab, #2a1a45);
  bottom: -18px;
  left: 85px;
}

.phone {
  position: absolute;
  width: 118px;
  height: 220px;
  top: 90px;
  right: 20px;
  border-radius: 28px;
  transform: rotate(12deg);
  background: linear-gradient(180deg, #1d1030, #7331e8);
  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.1);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 0 0 / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 100% 0 / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 0 50% / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 100% 50% / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 0 100% / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 100% 100% / 48% 30% no-repeat;
}

.camera {
  position: absolute;
  width: 160px;
  height: 100px;
  left: 20px;
  top: 180px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1c1c22, #07070a);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.camera::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #c173ff 0%, #682ed2 30%, #1b102e 58%, #050507 78%);
  right: 8px;
  top: 10px;
  border: 7px solid #101015;
}

.camera::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 18px;
  left: 14px;
  top: -10px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(180deg, #292832, #0c0c11);
}

.section {
  padding: 105px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(38px, 4vw, 54px);
  margin-bottom: 18px;
}

.section-text {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 17px;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  min-height: 220px;
}

.card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.card p,
.card li {
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 16px;
}

.card ul {
  padding-left: 18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.portfolio-item {
  min-height: 170px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6d29d8, #281238);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: end;
  padding: 16px;
  font-weight: 600;
  font-size: 18px;
}

.cta-box {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-box h2 {
  font-size: clamp(38px, 4vw, 54px);
  margin-bottom: 16px;
}

.cta-box p {
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

.footer {
  text-align: center;
  padding: 40px 0;
  color: rgba(255,255,255,0.6);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 200;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards.three {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .cards.four,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 78px 0 60px;
  }

  .hero-text h1 {
    font-size: 52px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .computer {
    width: 230px;
    height: 150px;
    left: 60px;
    top: 30px;
  }

  .computer::before {
    left: 77px;
    top: 44px;
  }

  .computer::after {
    width: 110px;
    left: 60px;
  }

  .phone {
    width: 90px;
    height: 170px;
    right: 10px;
    top: 90px;
  }

  .camera {
    width: 120px;
    height: 78px;
    left: 10px;
    top: 180px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
/* ===== Animaciones hero ===== */

.hero-visual {
  overflow: visible;
}

.computer,
.phone,
.camera {
  animation: floatSoft 5.8s ease-in-out infinite;
}

.phone {
  animation-delay: 0.8s;
}

.camera {
  animation-delay: 1.4s;
}

.computer {
  transition: transform 0.3s ease;
}

.phone {
  transition: transform 0.3s ease;
}

.camera {
  transition: transform 0.3s ease;
}

.screen-shine {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.10) 35%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.08) 60%,
    rgba(255, 255, 255, 0) 75%
  );
  transform: translateX(-120%);
  animation: shineMove 4.8s ease-in-out infinite;
  pointer-events: none;
}

.phone-glow {
  position: absolute;
  inset: -8px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(183, 109, 255, 0.28) 0%, rgba(183, 109, 255, 0.08) 50%, transparent 75%);
  filter: blur(8px);
  z-index: -1;
}

.lens-glow {
  position: absolute;
  width: 90px;
  height: 90px;
  right: 4px;
  top: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 126, 255, 0.35) 0%, rgba(104, 46, 210, 0.10) 50%, transparent 75%);
  filter: blur(6px);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
  width: 54px;
  height: 54px;
  top: 28px;
  right: 70px;
  background: radial-gradient(circle, rgba(217, 140, 255, 0.88) 0%, rgba(142, 76, 255, 0.22) 60%, transparent 100%);
  filter: blur(2px);
}

.orb-2 {
  width: 30px;
  height: 30px;
  left: 110px;
  bottom: 60px;
  background: radial-gradient(circle, rgba(191, 116, 255, 0.90) 0%, rgba(109, 41, 216, 0.18) 60%, transparent 100%);
  animation-delay: 1.2s;
}

.orb-3 {
  width: 72px;
  height: 72px;
  right: 150px;
  bottom: 12px;
  background: radial-gradient(circle, rgba(202, 125, 255, 0.72) 0%, rgba(109, 41, 216, 0.14) 60%, transparent 100%);
  filter: blur(3px);
  animation-delay: 0.6s;
}

.hero-glow {
  animation: auraPulse 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes orbFloat {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-12px) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.85;
  }
}

@keyframes auraPulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

@keyframes shineMove {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  55% {
    transform: translateX(120%);
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}
/* ===== HERO VISUAL FORZADO ===== */

.hero-visual {
  position: relative;
  min-height: 480px;
  display: block;
  overflow: visible;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 40px;
  left: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 73, 255, 0.35) 0%, rgba(155, 73, 255, 0.12) 40%, transparent 70%);
  filter: blur(18px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  width: 54px;
  height: 54px;
  top: 28px;
  right: 70px;
  background: radial-gradient(circle, rgba(217, 140, 255, 0.88) 0%, rgba(142, 76, 255, 0.22) 60%, transparent 100%);
}

.orb-2 {
  width: 30px;
  height: 30px;
  left: 110px;
  bottom: 60px;
  background: radial-gradient(circle, rgba(191, 116, 255, 0.90) 0%, rgba(109, 41, 216, 0.18) 60%, transparent 100%);
}

.orb-3 {
  width: 72px;
  height: 72px;
  right: 150px;
  bottom: 12px;
  background: radial-gradient(circle, rgba(202, 125, 255, 0.72) 0%, rgba(109, 41, 216, 0.14) 60%, transparent 100%);
}

.monitor-img{
width:330px;
top:85px;
left:150px;
animation:floatMonitor 6s ease-in-out infinite;
z-index:3;
filter:drop-shadow(0 28px 50px rgba(0,0,0,0.34)) drop-shadow(0 0 26px rgba(150,80,255,0.24));
}

.computer::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d884ff, #8f47ff);
  top: 60px;
  left: 122px;
}

.computer::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 14px;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(180deg, #7e68ab, #2a1a45);
  bottom: -18px;
  left: 85px;
}

.screen-shine {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 26px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 20%,
    rgba(255,255,255,0.10) 35%,
    rgba(255,255,255,0.22) 48%,
    rgba(255,255,255,0.08) 60%,
    rgba(255,255,255,0) 75%
  );
  transform: translateX(-120%);
  animation: shineMove 4.8s ease-in-out infinite;
  pointer-events: none;
}

.phone {
  position: absolute;
  width: 118px;
  height: 220px;
  top: 90px;
  right: 20px;
  border-radius: 28px;
  transform: rotate(12deg);
  background: linear-gradient(180deg, #1d1030, #7331e8);
  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.1);
  animation: floatSoft 5.8s ease-in-out infinite;
  animation-delay: 0.8s;
}

.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 0 0 / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 100% 0 / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 0 50% / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 100% 50% / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 0 100% / 48% 30% no-repeat,
    linear-gradient(90deg, rgba(255,255,255,0.15) 30%, transparent 30%) 100% 100% / 48% 30% no-repeat;
}

.phone-glow {
  position: absolute;
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(183, 109, 255, 0.28) 0%, rgba(183, 109, 255, 0.08) 50%, transparent 75%);
  filter: blur(8px);
  z-index: -1;
}

.camera {
  position: absolute;
  width: 160px;
  height: 100px;
  left: 20px;
  top: 180px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1c1c22, #07070a);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  animation: floatSoft 5.8s ease-in-out infinite;
  animation-delay: 1.4s;
}

.camera::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #c173ff 0%, #682ed2 30%, #1b102e 58%, #050507 78%);
  right: 8px;
  top: 10px;
  border: 7px solid #101015;
}

.camera::after {
  content: "";
  position: absolute;
  width: 56px;
  height: 18px;
  left: 14px;
  top: -10px;
  border-radius: 10px 10px 6px 6px;
  background: linear-gradient(180deg, #292832, #0c0c11);
}

.lens-glow {
  position: absolute;
  width: 90px;
  height: 90px;
  right: 4px;
  top: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 126, 255, 0.35) 0%, rgba(104, 46, 210, 0.10) 50%, transparent 75%);
  filter: blur(6px);
  pointer-events: none;
}

@keyframes floatSoft {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes shineMove {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  55% {
    transform: translateX(120%);
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}
.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(200,140,255,0.8);
  border-radius: 50%;
  animation: particleMove 6s infinite linear;
}

.hero-particle:nth-child(1){
  top:20%;
  left:60%;
  animation-delay:0s;
}

.hero-particle:nth-child(2){
  top:60%;
  left:80%;
  animation-delay:2s;
}

.hero-particle:nth-child(3){
  top:40%;
  left:70%;
  animation-delay:4s;
}

@keyframes particleMove{
  0%{
    transform:translateY(0);
    opacity:0;
  }
  50%{
    opacity:1;
  }
  100%{
    transform:translateY(-80px);
    opacity:0;
  }
}
/* ===== Mejoras visuales del hero ===== */

.computer {
  overflow: hidden;
}

.computer::before {
  box-shadow: 0 10px 25px rgba(143, 71, 255, 0.28);
}

.computer::after {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.computer .screen-shine {
  mix-blend-mode: screen;
}

.phone {
  overflow: hidden;
}

.phone::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 6px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}

.camera {
  overflow: visible;
}

.camera::before {
  box-shadow:
    0 0 0 6px rgba(16, 16, 21, 1),
    0 0 24px rgba(155, 73, 255, 0.25);
}

.hero-orb {
  filter: blur(2px);
}

.hero-glow {
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
/* ===== Aparición suave al hacer scroll ===== */

.section,
.card,
.portfolio-item,
.cta-box {
  animation: fadeUp 0.9s ease both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Hover premium ===== */

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
  border-color: rgba(190, 103, 255, 0.28);
}

.portfolio-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.32);
  filter: brightness(1.08);
}

.btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}
/* ===== Partículas ===== */

.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(200,140,255,0.85);
  border-radius: 50%;
  animation: particleMove 6s infinite linear;
  box-shadow: 0 0 14px rgba(200,140,255,0.35);
}

.hero-particle:nth-child(1) {
  top: 18%;
  left: 58%;
  animation-delay: 0s;
}

.hero-particle:nth-child(2) {
  top: 62%;
  left: 82%;
  animation-delay: 2s;
}

.hero-particle:nth-child(3) {
  top: 42%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes particleMove {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: translateY(-80px);
    opacity: 0;
  }
}
/* ===== Animación del texto del hero ===== */

.badge {
  animation: fadeSlideUp 0.7s ease forwards;
  opacity: 0;
}

.hero-text h1 {
  animation: fadeSlideUp 0.9s ease forwards;
  animation-delay: 0.15s;
  opacity: 0;
}

.hero-description {
  animation: fadeSlideUp 0.9s ease forwards;
  animation-delay: 0.35s;
  opacity: 0;
}

.hero-buttons {
  animation: fadeSlideUp 0.9s ease forwards;
  animation-delay: 0.55s;
  opacity: 0;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== Refinar monitor ===== */

.computer {
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
}

.computer::before {
  width: 82px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e0a0ff, #8f47ff);
  top: 58px;
  left: 118px;
  box-shadow:
    0 10px 24px rgba(143, 71, 255, 0.28),
    inset 0 1px 4px rgba(255,255,255,0.25);
}

.computer::after {
  width: 160px;
  height: 16px;
  left: 80px;
  bottom: -18px;
  border-radius: 0 0 26px 26px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

.screen-shine::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 14px;
  top: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
/* ===== Refinar celular ===== */

.phone {
  border: 2px solid rgba(255,255,255,0.14);
  overflow: hidden;
}

.phone::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 7px;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.20);
}

.phone-glow::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  right: 18px;
  top: 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
}
/* ===== Refinar cámara ===== */

.camera {
  border: 1px solid rgba(255,255,255,0.06);
}

.camera::after {
  box-shadow:
    0 0 0 6px rgba(16,16,21,1),
    0 0 24px rgba(155, 73, 255, 0.25);
}

.camera .lens-glow::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  right: 26px;
  top: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
/* ===== Movimiento individual ===== */

.computer {
  animation: floatComputer 5.8s ease-in-out infinite;
}

.phone {
  animation: floatPhone 5.2s ease-in-out infinite;
}

.camera {
  animation: floatCamera 6.4s ease-in-out infinite;
}

@keyframes floatComputer {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(0.8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatPhone {
  0% { transform: translateY(0px) rotate(12deg); }
  50% { transform: translateY(-20px) rotate(13.5deg); }
  100% { transform: translateY(0px) rotate(12deg); }
}

@keyframes floatCamera {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
/* ===== HERO CON IMÁGENES ===== */

.hero-device{
position:absolute;
max-width:100%;
height:auto;
filter:drop-shadow(0 25px 40px rgba(0,0,0,0.35));
}

.monitor-img{
width:450px;
top:85px;
left:195px;
animation:floatMonitor 6s ease-in-out infinite;
z-index:3;
filter:drop-shadow(0 28px 50px rgba(0,0,0,0.34)) drop-shadow(0 0 26px rgba(150,80,255,0.24));
}

.phone-img{
width:230px;
top:50px;
right:-5px;
transform:rotate(8deg);
animation:floatPhoneImg 5s ease-in-out infinite;
z-index:4;
filter:drop-shadow(0 18px 30px rgba(0,0,0,0.28));
}

.camera-img{
width:190px;
left:30px;
top:195px;
animation:floatCameraImg 6.5s ease-in-out infinite;
z-index:4;
}

@keyframes floatMonitor{
0%{transform:translateY(0px);}
50%{transform:translateY(-16px);}
100%{transform:translateY(0px);}
}

@keyframes floatPhoneImg{
0%{transform:translateY(0px) rotate(12deg);}
50%{transform:translateY(-20px) rotate(14deg);}
100%{transform:translateY(0px) rotate(12deg);}
}

@keyframes floatCameraImg{
0%{transform:translateY(0px);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0px);}
}
/* ===== Más brillo y glow ===== */

.monitor-img,
.phone-img,
.camera-img {
  filter:
    drop-shadow(0 28px 50px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 26px rgba(146, 82, 255, 0.18));
}

.hero-glow {
  background: radial-gradient(circle, rgba(140, 78, 255, 0.42) 0%, rgba(140, 78, 255, 0.16) 42%, transparent 72%);
  filter: blur(26px);
}

.hero-orb {
  filter: blur(4px);
}

.orb-1,
.orb-2,
.orb-3 {
  box-shadow: 0 0 22px rgba(198, 122, 255, 0.35);
}
/* ===== Badges sociales ===== */

.social-badge{
position:absolute;
z-index:5;
backdrop-filter:blur(14px);
border:1px solid rgba(255,255,255,0.10);
box-shadow:0 14px 30px rgba(0,0,0,0.22);
animation:floatBadge 5.5s ease-in-out infinite;
padding:9px 13px;
border-radius:999px;
font-size:12px;
font-weight:700;
color:white;
}

.instagram {
  top: 20px;
  left: 380px;
  background: linear-gradient(135deg, rgba(255, 92, 170, 0.9), rgba(131, 58, 180, 0.9));
}

.tiktok{
top:10px;
left:80px;
background:linear-gradient(135deg,#25F4EE,#FE2C55);
color:white;
}
.facebook{
bottom:70px;
left:120px;
background:linear-gradient(135deg,#25F4EE,#FE2C55);
}

.stat-card{
position:absolute;
z-index:5;
backdrop-filter:blur(14px);
border:1px solid rgba(255,255,255,0.10);
box-shadow:0 14px 30px rgba(0,0,0,0.22);
animation:floatBadge 5.5s ease-in-out infinite;
padding:11px 15px;
border-radius:16px;
font-size:13px;
font-weight:600;
color:rgba(255,255,255,0.95);
background:rgba(20,16,38,0.72);
}

.views {
  top: 70px;
  left: 10px;
  animation-delay: 0.4s;
}

.likes {
  top: 250px;
  right: 0px;
  animation-delay: 1s;
}

.growth {
  bottom: 80px;
  right: 120px;
  animation-delay: 1.6s;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.notification-icon{
position:absolute;
font-size:24px;
animation:floatBadge 6s ease-in-out infinite;
opacity:0.7;
}
.notification-icon{
position:absolute;
font-size:30px;
animation:floatBadge 6s ease-in-out infinite;
opacity:0.7;
}
.notification-icon{
position:absolute;
font-size:18px;
opacity:0.78;
animation:floatBadge 6s ease-in-out infinite;
z-index:6;
}

.notif-1{
top:-100px;
right:210px;
}

.notif-2{
top:-100px;
right:160px;
animation-delay:1s;
}

.notif-3{
top:88px;
right:150px;
animation-delay:2s;
}
.monitor-img{
filter:drop-shadow(0 30px 60px rgba(140,80,255,0.35));
}
/* ===== AJUSTES FORZADOS HERO ===== */

.notif-1{
top:-80px !important;
right:220px !important;
left:auto !important;
bottom:auto !important;
z-index:20 !important;
}

.notif-2{
top:-35px !important;
right:150px !important;
left:auto !important;
bottom:auto !important;
z-index:20 !important;
animation-delay:1s !important;
}

.tiktok{
background:linear-gradient(135deg,#25F4EE 0%, #FE2C55 100%) !important;
color:#ffffff !important;
border:1px solid rgba(255,255,255,0.14) !important;
box-shadow:0 14px 30px rgba(0,0,0,0.22), 0 0 18px rgba(254,44,85,0.22) !important;
}

.monitor-img{
width:450px;
top:65px;
left:40px;
animation:floatMonitor 6s ease-in-out infinite;
z-index:3;
filter:drop-shadow(0 28px 50px rgba(0,0,0,0.34)) drop-shadow(0 0 26px rgba(150,80,255,0.24));
}
.monitor-img{
transform-origin:center center;
}

.monitor-img:hover{
transform:scale(1.02);
transition:transform 0.3s ease;
}
/* ===== MOBILE FIX URGENTE ===== */

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .menu {
    display: none;
  }

  .header {
    padding: 0;
  }

  .nav {
    padding: 18px 0;
  }

  .logo {
    font-size: 20px;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .badge {
    font-size: 12px;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 48px !important;
    line-height: 0.98;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 100%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-visual {
    min-height: 360px;
    position: relative;
    margin-top: 10px;
  }

  .monitor-img {
    width: 220px !important;
    top: 85px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .phone-img {
    width: 120px !important;
    top: 70px !important;
    right: 8px !important;
    left: auto !important;
    transform: rotate(14deg) !important;
  }

  .camera-img {
    width: 115px !important;
    top: 200px !important;
    left: 10px !important;
  }

  .social-badge {
    font-size: 11px;
    padding: 8px 11px;
  }

  .instagram {
    top: 10px !important;
    left: 10px !important;
  }

  .tiktok {
    top: 18px !important;
    right: 6px !important;
    left: auto !important;
  }

  .facebook {
    bottom: 40px !important;
    left: 18px !important;
  }

  .stat-card {
    font-size: 12px;
    padding: 9px 12px;
  }

  .views {
    top: 58px !important;
    left: 6px !important;
  }

  .likes {
    top: 210px !important;
    right: 6px !important;
    left: auto !important;
  }

  .growth {
    bottom: 6px !important;
    right: 50% !important;
    transform: translateX(50%) !important;
  }

  .notification-icon {
    display: none !important;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px !important;
  }

  .section-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .cards.four,
  .cards.three,
  .portfolio-grid,
  .brand-row {
    grid-template-columns: 1fr !important;
  }

  .card {
    min-height: auto;
    padding: 22px 18px;
  }

  .portfolio-item {
    min-height: 140px;
  }

  .cta-box {
    padding: 34px 20px;
  }

  .cta-box h2 {
    font-size: 30px !important;
  }

  .cta-box p {
    font-size: 16px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
    font-size: 14px;
  }
}