* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana,
    sans-serif;
  background: linear-gradient(315deg, #0a0a0a 3%, #1a1a1a 38%, #0d1a0d 68%, #001a1a 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow-x: hidden;
  position: relative;
  padding: 4rem;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(0, 255, 255, 0.15) 0%,
    rgba(0, 200, 200, 0.1) 20%,
    rgba(0, 100, 100, 0.05) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.8) 100%
  ),
  radial-gradient(
    ellipse at 20% 30%,
    rgba(0, 255, 255, 0.08) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    transparent 100%
  ),
  radial-gradient(
    ellipse at 80% 70%,
    rgba(0, 200, 200, 0.06) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  pointer-events: none;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 50, 50, 0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0, 100, 100, 0.05) 100%
  ),
  linear-gradient(
    45deg,
    transparent 0%,
    rgba(0, 255, 255, 0.02) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.container {
  text-align: center;
  max-width: 750px;
  width: 100%;
  padding: 3.5rem 3rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(0, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  margin: 2rem auto 0;
}

.logo {
  margin-bottom: 2rem;
  display: inline-block;
  padding: 1rem 2rem;
}

.logo img {
  height: 45px;
  width: auto;
  max-width: 100%;
}

.coming-soon {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
  opacity: 0.9;
  letter-spacing: 0.01em;
}

.coming-soon .bold-text {
  font-weight: 700;
}

.description {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  opacity: 0.9;
  letter-spacing: 0.01em;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin: 2rem 0;
  max-width: 100%;
}

.feature {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(0, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

.feature-number {
  font-size: 3rem;
  font-weight: 800;
  color: #00ffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.feature p {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.5;
}

.social-footer {
  margin-top: 2rem;
  text-align: center;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 255, 255, 0.8);
}

.social-button.facebook:hover {
  background: rgba(24, 119, 242, 0.2);
  color: #1877f2;
  border-color: #1877f2;
}

.social-button.instagram:hover {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(255, 192, 0, 0.2));
  color: #e1306c;
  border-color: #e1306c;
}

.social-button.website:hover {
  background: rgba(0, 255, 255, 0.2);
  color: #00ffff;
  border-color: #00ffff;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
}

.footer {
  margin-top: 1rem;
  text-align: center;
}

.footer img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer img:hover {
  opacity: 1;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.wave {
  background: rgba(0, 255, 255, 0.1);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.6;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.4;
  background: rgba(0, 200, 200, 0.08);
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.3;
  background: rgba(0, 150, 150, 0.06);
}

@keyframes wave {
  2% {
    transform: translateX(1);
  }
  25% {
    transform: translateX(-25%);
  }
  50% {
    transform: translateX(-50%);
  }
  75% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Media queries para diferentes tamaños de pantalla */

/* Monitores grandes (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1000px;
    padding: 4rem 3rem;
    margin: 3rem auto 0;
  }
  
  .coming-soon {
    font-size: 2.5rem;
  }
  
  .description {
    font-size: 1.3rem;
  }
  
  .logo img {
    height: 55px;
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Laptops grandes (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  body {
    padding: 2rem;
  }
  
  .container {
    max-width: 85%;
    padding: 3rem 2.5rem;
    margin: 2.5rem auto 0;
  }
  
  .coming-soon {
    font-size: 1.9rem;
  }
  
  .logo img {
    height: 50px;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
  }
}

/* Laptops medianos (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
  body {
    padding: 1.5rem;
  }
  
  .container {
    max-width: 80%;
    padding: 2.5rem 2rem;
    margin: 2rem auto 0;
  }
  
  .coming-soon {
    font-size: 1.6rem;
  }
  
  .description {
    font-size: 0.95rem;
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.75rem 0;
  }
  
  .feature {
    padding: 1.25rem;
  }
  
  .feature-number {
    font-size: 2.5rem;
  }
  
  .logo img {
    height: 45px;
  }
}

/* Laptops pequeños (900px - 1023px) */
@media (max-width: 1023px) and (min-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

/* Tablets en landscape (768px - 899px) */
@media (max-width: 899px) and (min-width: 769px) {
  body {
    padding: 1.5rem;
  }
  
  .container {
    max-width: 90%;
    padding: 2.5rem 2rem;
    margin: 1.5rem auto 0;
  }
  
  .coming-soon {
    font-size: 1.7rem;
  }
  
  .description {
    font-size: 1rem;
  }
  
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .logo img {
    height: 42px;
  }
}

/* Tablets y móviles grandes (768px y menos) */
@media (max-width: 768px) {
  body {
    padding: 1rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
  
  .container {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  .logo {
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
  }

  .logo img {
    height: 40px;
  }

  .coming-soon {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .feature {
    padding: 1rem;
  }

  .feature-number {
    font-size: 2.5rem;
  }

  .footer {
    margin-top: 1.5rem;
  }

  .footer img {
    height: 35px;
  }
  
  .social-buttons {
    gap: 1rem;
  }
  
  .social-button {
    width: 45px;
    height: 45px;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0.75rem;
    padding-top: 1.5rem;
  }
  
  .container {
    margin: 0 0.75rem;
    padding: 1.5rem 1.25rem;
    border-radius: 15px;
  }

  .logo {
    margin-bottom: 1rem;
    padding: 0.5rem;
  }

  .logo img {
    height: 38px;
  }

  .coming-soon {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .features {
    gap: 0.75rem;
    margin: 1rem 0;
  }

  .feature {
    padding: 0.75rem;
    border-radius: 10px;
  }

  .feature-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .feature h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .feature p {
    font-size: 0.8rem;
  }

  .footer {
    margin-top: 1rem;
  }

  .footer img {
    height: 30px;
  }
  
  .social-buttons {
    gap: 0.75rem;
  }
  
  .social-button {
    width: 40px;
    height: 40px;
  }
  
  .copyright {
    font-size: 0.75rem;
  }
}

@media (max-width: 320px) {
  body {
    padding-top: 1rem;
  }
  
  .container {
    margin: 0 0.5rem;
    padding: 0.75rem;
  }

  .coming-soon {
    font-size: 1.1rem;
  }
  
  .logo img {
    height: 35px;
  }

  .description {
    font-size: 0.85rem;
  }

  .feature-number {
    font-size: 1.8rem;
  }
  
  .social-button {
    width: 35px;
    height: 35px;
  }
  
  .copyright {
    font-size: 0.7rem;
  }
}
