/* ===== JAOS Center - Styles ===== */

@font-face {
  font-family: 'PromoTest';
  src: url('fonts/PromoTest-Normal.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Canvas de partículas */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Container */
.container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Logo */
.logo-wrapper {
  margin-bottom: 24px;
  animation: fadeInDown 1s ease-out;
}

.logo {
  width: 280px;
  max-width: 80vw;
  height: auto;
  filter: brightness(1.1);
}

/* Slogan */
.slogan {
  font-family: 'PromoTest', 'Inter', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 32px;
  animation: fadeIn 1s ease-out 0.3s both;
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffffff44, transparent);
  margin-bottom: 32px;
  animation: fadeIn 1s ease-out 0.5s both;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid #ffffff1a;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4d4d4;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out 0.6s both;
  backdrop-filter: blur(10px);
  background: #ffffff08;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Subtitle */
.subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: #888;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeIn 1s ease-out 0.8s both;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 560px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 1s both;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 16px;
  border: 1px solid #ffffff0d;
  border-radius: 16px;
  background: #ffffff06;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.contact-card:hover {
  border-color: #ffffff22;
  background: #ffffff0f;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff0a;
  color: #e0e0e0;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}

.contact-value {
  font-size: 0.85rem;
  color: #ccc;
  font-weight: 400;
}

/* Footer */
.footer {
  font-size: 0.75rem;
  color: #444;
  letter-spacing: 0.05em;
  animation: fadeIn 1s ease-out 1.2s both;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: fadeIn 1s ease-out 1.5s both;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 40px 20px;
  }

  .logo {
    width: 220px;
  }

  .slogan {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-card {
    padding: 20px 16px;
  }

  .subtitle {
    font-size: 0.9rem;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}

.link-blanco,
.link-blanco:visited,
.link-blanco:hover,
.link-blanco:active {
    color: #666666;
}