
:root {
    --primary-color: #6197d5; /* #0056b3; /* #76A5D9; # #3273ea; */
    --background-color: #f9fafb;
    --text-color: #1f2937;
    --header-text-color: #424242;
    --font-stack: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --accent-color: #e9944A;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    font-family: var(--font-stack);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
    text-align: center;
    flex: 1;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.main-header {
  background-color: #f9f8f8;
  color: var(--header-text-color);
  font-weight: bold;
  width: 100%;
} 

.message p {
    font-size: 1.25rem;
    margin: 1rem 0;
}

.construction {
    font-weight: bold;
    font-size: 0.9rem;
    color: #b45309;
}

a {
    color: var(--primary-color);
    text-decoration: underline;
}

a:focus, a:hover {
    outline: 2px dashed var(--primary-color);
    background-color: #e0f2ff;
}

  .hidden {
    display: none;
  }

  /*
  Button
  */
  .btn-agendar {
    background-color: var(--primary-color);        /* Azul brillante */
    color: white;                     /* Texto blanco */
    padding: 1rem 2rem;               /* Botón grande */
    font-size: 1.25rem;               /* Tamaño de texto grande */
    font-family: var(--font-stack);
    border: none;
    border-radius: 999px;             /* Totalmente redondeado */
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;                     /* Espacio entre icono y texto */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-agendar i {
    font-size: 1.5rem;                /* Tamaño del ícono */
  }
  
  .btn-agendar:hover {
    background-color: #0056b3;        /* Azul más oscuro al pasar el ratón */
    transform: scale(1.03);           /* Ligeramente más grande al hacer hover */
  }

  .btn-sample {
    color: var(--accent-color);
    background-color: white;
    text-decoration: none;
     padding: 0.75rem 1.25rem;
      border-radius: 8px;
       font-weight: bold;
       border: 2px solid var(--accent-color);
  }

  /*
  Footer
  */
  .footer {
    background-color: #f1f5f9;
    color: #4b5563;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .footer-content {
    max-width: 800px;
    width: 100%;
  }
  
  .footer a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  .footer a:hover,
  .footer a:focus {
    text-decoration: underline;
  }