h1,
h2,
h3,
.uk-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-color: #faa05a;
  margin-top:0;
  background-image: url('https://images.pexels.com/photos/287229/pexels-photo-287229.jpeg');
  background-size: cover;
  
}

.fa-church {
  color: #ffffff;
}

.fa-people-roof {
  color: #ffffff;
}

.card-color {
  background-color: #ffffff;
}

.p-text-card {
  text-align: center;
}

@media (min-width: 768px) {
  .container-custom {
    max-width: 800px;
  }
}
.sugerencias-container {
  position: relative;
}
.lista-sugerencias {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 0 0 8px 8px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 2000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: none;
}
.sugerencia-item {
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.2s;
}
.sugerencia-item:hover {
  background-color: #f0f7ff;
}
.card-asistente {
  border-left: 5px solid #1e87f0;
}
.card-nuevo {
  border-left: 5px solid #faa05a;
  background-color: #fffdf5 !important;
}
.spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 3000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bg-validacion {
  background-color: #f8f8f8;
  border: 1px solid #e5e5e5;
}

.cell-card{
  width:100%;
}

.google-sans-flex {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size:4vh;
  color: white; text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

 /* Fondo de pantalla completa */
    body {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.pexels.com/photos/287229/pexels-photo-287229.jpeg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      margin: 0;
    }

    /* Contenedor principal para centrado total */
    .main-wrapper {
      min-height: 100vh;
      display: flex;
      align-items: center;
      /* Centrado vertical */
      justify-content: center;
      /* Centrado horizontal */
      padding: 20px;
    }

    /* La Tarjeta Vertical */
    #contenedorPrincipal {
      width: 100%;
      max-width: 1200px;
      /* Ancho ideal tipo aplicación */
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      max-height: 90vh;
      /* Para que no se salga de la pantalla */
      display: flex;
      flex-direction: column;
    }

    /* Imagen de encabezado */
    .card-header-image {
      position: relative;
      height: 160px;
      /* Altura fija para la imagen */
      flex-shrink: 0;
    }

    /* Cuerpo con scroll independiente */
    .uk-card-body {
      overflow-y: auto;
      padding: 25px;
      flex-grow: 1;
    }

    /* Estilo para sugerencias (posicionamiento absoluto) */
    .sugerencias-container {
      position: relative;
    }

    .lista-sugerencias {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 1000;
      background: white;
      border: 1px solid #e5e5e5;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      max-height: 150px;
      overflow-y: auto;
    }
