/* ============================= */
/* 🎯 ESTILO GENERAL */
/* ============================= */

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f4f7f8;
  color: #2f3e46;
  margin: 10px;
}

html {
  scroll-behavior: smooth;
}


/* ============================= */
/* 💎 CONTENEDORES */
/* ============================= */

.card, .container, .panel, .box {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.06) !important;
  padding: 18px;
  border: 1px solid #eef1f2;
}


/* ============================= */
/* 🔘 BOTONES */
/* ============================= */

button, .btn, input[type="submit"] {
  background: linear-gradient(135deg, #5FBDB5, #5FBDB5) !important;
  color: white !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 20px !important;
  font-weight: 600;
  transition: all 0.25s ease;

  /* ✨ SOLO mejora nitidez */
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 14px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #4aa39c, #DEFAFF) !important; /* ✔️ corregido */
}


/* ============================= */
/* 🧾 INPUTS */
/* ============================= */

input, select {
  border-radius: 10px !important;
  border: 1px solid #e0e6e8 !important;
  padding: 12px !important;
  font-size: 14px;
  background-color: #fbfcfc !important;
}

input:focus, select:focus {
  border-color: #5FBDB5 !important;
  background-color: #ffffff;
  outline: none;
  box-shadow: 0px 0px 0px 2px rgba(95,189,181,0.15);
}


/* ============================= */
/* 🔤 TEXTOS */
/* ============================= */

h1, h2, h3 {
  color: #1f2d3d;
  font-weight: 600;
}


/* ============================= */
/* 🔢 PASOS */
/* ============================= */

.active, .selected {
  background-color: #5FBDB5 !important;
  color: white !important;
}

.active *, .selected * {
  color: white !important;
}

.step.active {
  background-color: #6300FF !important; /* ✔️ corregido */
  color: white !important;
  transform: scale(3);
}

.progress-bar {
  background-color: #5FBDB5 !important;
}


/* ============================= */
/* 👨‍⚕️ PROFESIONAL */
/* ============================= */

div[class*="singleValue"],
div[class*="value"],
div[class*="control"] {
  font-size: 18px !important;
  font-weight: 500 !important;
}

div[class*="option"] {
  font-size: 16px !important;
}


/* ============================= */
/* ✨ ANIMACIONES */
/* ============================= */

@keyframes stepFade {
  from {
    opacity: 0;
    transform: translateX(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card, .container, .panel, form {
  animation: stepFade 0.02s ease-in-out;
}

* {
  transition: all 0.03s ease;
}


/* ============================= */
/* 🧩 DETALLES */
/* ============================= */

.card, .container, .panel {
  border: 1px solid #e0f0ee !important;
  box-shadow: 2px 6px 12px rgba(0,0,0,0.04) !important;
}