
/*pricing*/

a {
  text-decoration: none !important;
}

#soluciones {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #E6F5F4;
  position: relative;
  background-image: url(../images/pricing_images/soluciones.png); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Título superior central */
.titulo-soluciones {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #333;
}

/* Botón superior */
.btn-cotizacion-superior {
  z-index: 999;
  position: absolute;
  
  right: 20px;
}

.btn-cotizacion-superior a {
  background-color: #FF1493;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
}

/* Estilos del formulario */
.formulario {
  flex: 1;
  padding: 20px;
  background-color: #ffffff;
  max-width: 500px;
  margin-top: 50px;
}

.formulario h2 {
  margin-bottom: 20px;
}

.formulario label {
  margin-bottom: 5px;
  font-weight: bold;
}

.formulario input, 
.formulario select, 
.formulario textarea {
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.formulario button {
  background-color: #FF1493;
  color: white;
  padding: 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Estilos de la columna de información */
.informacion {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribuye el contenido entre la parte superior e inferior */
  height: 100%; /* Ajusta la altura si es necesario */
  padding: 2rem 0; /* Añade un poco de espacio vertical */
  padding-left: 35px;
  text-align: justify;
  
}

.informacion h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.informacion p {
  margin-bottom: 20px;
}

.informacion ul {
  list-style-type: disc;
  padding-left: 20px;
}

.informacion ul li {
  margin-bottom: 10px;
}

.centrado{
  place-content: center !important;
  justify-content: space-between; /* Asegura espacio entre el formulario y la información */
}

.home_background_pricing
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url(../images/pricing_images/pricing_banner.png); 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.titulo {
  flex-grow: 1;
  display: flex;
  justify-content: center; /* Centra el título horizontalmente */
  align-items: center; /* Centra el título verticalmente */
  height: 50%; /* Ocupa la mitad superior */
}

.informacion p,
.informacion ul {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra el contenido restante verticalmente */
    margin-top: 0;
    height: 50%; /* Ocupa la mitad inferior */
}

@media (max-width: 575px) {
  .minitexto {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 75px !important;
    color: #333;
    padding-top: 5rem !important;
  }

  #soluciones {
    height: 205vh !important;
    display: block !important;
  }

  .home_background_pricing
	{
		
		top: 0;
		left: 0;
		background: url(../images/pricing_images/pricing_banner_mini.png); 
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
}
