/* =============================
   FONDO Y ESTRUCTURA GENERAL
   ============================= */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #000000, #ffffff);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Contenedor principal */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  margin-top: 60px;
}

/* =============================
   LOGO PRINCIPAL
   ============================= */
.logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 50px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.1);
}

/* =============================
   BOTÓN "AGENDA TU CITA"
   ============================= */
.animated-button {
  background-color: #C8102E;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 6px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  animation: pulseButton 2s infinite;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.animated-button:hover {
  background-color: #ffffff;
  color: #C8102E;
  border-color: #C8102E;
  transform: scale(1.05);
}

@keyframes pulseButton {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Tamaño más pequeño del botón en celular */
@media (max-width: 600px) {
  .animated-button {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* =============================
   ESTRELLAS PARPADEANTES
   ============================= */
.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.6;
  animation: parpadeo 2s infinite alternate, moveStar 8s linear infinite;
}

@keyframes parpadeo {
  0% { opacity: 0.2; transform: scale(0.7); }
  100% { opacity: 1; transform: scale(1.3); }
}

@keyframes moveStar {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-100vh); }
}

/* =============================
   FOOTER
   ============================= */
footer {
  width: 100%;
  background: #d0d2d1;
  padding: 10px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  max-width: 800px;
  margin: 0 auto;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 60px;
  height: auto;
  flex-shrink: 0;
}

.footer-details {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 200px;
}

.footer-details p {
  margin: 2px 0;
  font-size: 12px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  font-size: 10px;
  color: #333;
  line-height: 1.4;
}

/* Footer responsive */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-logo {
    width: 50px;
  }

  .footer-details {
    text-align: left;
  }

  .footer-copy {
    margin-top: 10px;
    font-size: 10px;
  }
}

