table { 
  width: 100%; margin-bottom: 10px;
  border-collapse: collapse;
}
tr,td,th{ 
  border: none; border-radius: 1px; 
}
.sin-borde {
  border: none !important;
}

.bordeAzul{ 
  border: 1px solid rgb(90, 173, 255); 
}
.bordeDerechoAzul{ 
  border-right: 1px solid rgb(90, 173, 255); 
}
.bordeIzquierdoAzul{ 
  border-left: 1px solid rgb(90, 173, 255); 
}
.bordeInferiorAzul{ 
  border-bottom: 1px solid rgb(90, 173, 255); 
}
.bordeSuperiorAzul{ 
  border-top: 1px solid rgb(90, 173, 255); 
}
.fondoAzul{ 
  background-color: lightblue; 
}
.tabla td, .tabla th { 
  padding: 4px; text-align: left; font-size: 11px; 
}
.tabla th { 
  text-align: center; font-weight: bold; 
}
.centrado {
  text-align: center !important;
}
.derecha {
  text-align: right !important;
}
.total { 
  font-weight: bold; font-size: 14px; background: #f2f2f2; 
}

.oculto{
	display: none;
}
.form-check-input {
  border: 2px solid #800080;
}
.form-check-label small {
  line-height: 1.4; /* mejora la lectura en textos largos */
}
.bg-purple {
  background-color: purple;
}

.border-bottom-purple {
  border: none; /* elimina todos los bordes */
  border-bottom: 2px solid purple; /* agrega solo el borde inferior morado */
  border-radius: 0; /* opcional: elimina bordes redondeados */
  box-shadow: none !important; /* elimina sombra de Bootstrap si hay */
}

#pielogo {
    display: flex;
    justify-content: center;
    border-top: 1px solid gray;
    width: 100%;
    padding: 1rem;
    color: white;
    background-color: purple;
}

#pielogo > div {
    display: flex;
    flex: 1;
    max-width: 960px;
}
.seccionpie {
    flex: 1;
    padding: 3%;
}
.seccionpie h1 {
    font: bold 20px Arial, sans-serif;
}
.seccionpie p {
    margin-top: 5px;
}
.seccionpie a {
    font: bold 16px Arial, sans-serif;
    color: #666666;
    text-decoration: none;
}
/* Gradiente de fondo */
    .top-bar, .navbar {
      background: linear-gradient(to right, #e0f7fa, #00bcd4);
    }

    .top-bar {
      font-size: 0.9rem;
      padding: 0.3rem 0;
    }

    .navbar-brand img {
      height: 90px;
    }

    .btn-quote {
      border: 1px solid white;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .btn-quote:hover {
      background-color: white;
      color: #00bcd4;
    }

    .social-icons a {
      color: #8e24aa;
      margin-left: 15px;
      font-size: 1.2rem;
    }
    .text-purple {
      color: #800080; /* o #8e24aa si quieres el tono más fuerte */
    }

    main {
      flex: 1; /* Para que ocupe el espacio restante entre header y footer */
      min-height: 600px; /* Ajusta según necesidad */
      
      padding: 2rem;
    }
    a {
      color: purple;
      text-decoration: none;
    }

    .sello-agente {
      height: 70px;
      margin-left: 15px;
    }
    .btn-quote {
      color: white;                      /* Texto blanco */
      border: 2px solid white;           /* Borde blanco */
      background: transparent;           /* Fondo transparente */
      border-radius: 10px;
      padding: 10px 25px;
      font-weight: bold;
      transition: background-color 0.3s, color 0.3s, transform 0.2s;
      text-transform: uppercase;
      text-decoration: none;
    }

    .btn-quote:hover {
      background-color: #800080;         /* Morado al hacer hover */
      color: white;                      /* Asegura que el texto siga blanco */
      transform: translateY(-2px);       /* Efecto sutil de elevación */
    }
