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

    html, body {
      height: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      /* background: linear-gradient(135deg, #6B73FF, #000DFF); */
      color: #666;
      overflow: hidden;
    }

    body {
      text-align: center;
      padding: 20px;
    }

    .container {
      max-width: 500px;
      width: 100%;
      animation: fadeIn 1s ease forwards;
    }

    @keyframes fadeIn {
      0% {opacity: 0; transform: translateY(-20px);}
      100% {opacity: 1; transform: translateY(0);}
    }

    .logo {
      width: 150px;
      margin-bottom: 20px;
      animation: logoBounce 1s ease forwards;
    }

    @keyframes logoBounce {
      0% {transform: scale(0);}
      60% {transform: scale(1.2);}
      100% {transform: scale(1);}
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 15px;
      animation: fadeUp 1s ease forwards;
      line-height: 2rem;
    }

    /* NUEVA SECCIÓN DE CONTACTO */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #959595;
  gap: 8px;
}

.info-item i {
  font-size: 1.2rem;
  color: #822021; /* amarillo llamativo */
}

    p {
      font-size: 1rem;
      margin-bottom: 20px;
      color: #959595;
      animation: fadeUp 1.2s ease forwards;
    }

    @keyframes fadeUp {
      0% {opacity: 0; transform: translateY(20px);}
      100% {opacity: 1; transform: translateY(0);}
    }

    /* Botón moderno con ripple */
    .btn {
      position: relative;
      display: inline-block;
      padding: 12px 25px;
      font-size: 1rem;
      color: #fff;
      background-color: #822021;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      overflow: hidden;
      text-decoration: none; /* evita subrayado del link */
      transition: background-color 0.3s ease, transform 0.2s ease;
      margin-bottom: 20px;
    }

    .btn:hover {
      background-color: #6b1819;
      transform: translateY(-2px);
    }

    .btn:active::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0; left: 0;
      background: rgba(255,255,255,0.3);
      border-radius: 30px;
      animation: ripple 0.6s linear;
    }

    @keyframes ripple {
      0% {transform: scale(0);}
      100% {transform: scale(4); opacity: 0;}
    }

    .social-icons {
      margin-top: 15px;
    }

    .social-icons a {
      color: #959595;
      margin: 0 10px;
      font-size: 1.5rem;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
      color: #822021;
      transform: scale(1.2) rotate(10deg);
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 1.5rem;
      }
      .btn {
        padding: 10px 20px;
      }
      .logo {
        width: 120px;
      }
    }