@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.ppe-module {
	display: flex;
	gap: 50px
}

.columna-titulo {
	width: 30%;
}

.columna-card {
	width: 70%;
}

h3.titulo_bloque {
	font-family: "Montserrat", sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #0C1B2A;
	margin-top:0;
}

h3.titulo_bloque span {
	background-color: #D9FDD3;
}

p.parrafo_bloque {
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #0C1B2A;
}

p.select_parrafo {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 200;
	color: #0C1B2A;
}

.ppe-select {
	width: 70%;
	border: 1px solid #08D47C;
	border-radius: 15px;
	padding: 10px 15px;
}

.ppe-select option {
	background-color: #F2F2F2;
}

.ppe-select option:hover {
	background-color: #D9FDD3;
}

.burbuja {
	max-width: 90%;
	width: auto;
	height: auto;
	background-color: #08D47C;
	float: right;
	border-radius: 10px;
	padding: 10px;
	margin: 10px;
	position: absolute;
	top:-25%;
	left:25%;
	z-index:10;
}

.burbuja::before {
	content: "";
	position: absolute;
	right: 0px;
	bottom: -1px;
	width: 20px;
	height: 20px;
	border-radius: 5px;
	background-color: #08D47C;
	transform: skew(0deg, 45deg);
}
.ppe-cards .card:nth-child(2) .burbuja{
	background-color:#048986;
}
.ppe-cards .card:nth-child(2) .burbuja::before{
	background-color:#048986;
}
.burbuja p {
	margin: 0;
	z-index: 22;
	position: relative;
	color:#ffffff;
	font-family: "Montserrat", sans-serif;
}

.ppe-cards {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.ppe-cards .card {
	width: 32%;
	border: 1px solid #77DD77;
	border-radius: 8px;
	padding: 16px;
	padding-top: 36px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	position:relative;
}

.ppe-cards .card h3 {
	margin: 0 0 8px;
	color:#42576A;
	text-align:center;
	font-weight:700;
	font-size:20px;
	font-family: "Montserrat", sans-serif;
}

.ppe-cards .card .desc {
	color: #666;
	margin-bottom: 12px;
	font-family: "Montserrat", sans-serif;
}

.ppe-cards .card .price {
	font-weight: 700;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
}
p.subtittle{
	font-family: "Montserrat", sans-serif;
	text-align:center;
	font-weight: 500;
	font-size:14px;
	margin:0;
}
.card ul {
	margin:0;
	padding:0;
	list-style: none; 
	
}
.card ul li {
	list-style: none; 
	position: relative;
  padding-left: 30px; 
	color:#24394D;
	font-size:14px;
	font-weight:400;
	font-family: "Montserrat", sans-serif;
}
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;              /* tamaño del ícono */
  height: 20px;
  transform: translateY(-50%);
  background: url('https://ipaindustria.com/wp-content/uploads/2025/09/yes-2.png') no-repeat center center;
  background-size: contain;
}
.ppe-cards .card:nth-child(2){
	border: 1px solid #048986;
}
@media (max-width: 1872px) {
	.ppe-cards .card {
    width: 31%;
}
}
@media (max-width: 1107px) {
	.ppe-cards .card {
    width: 30%;
}
}

@media (max-width: 1024px) {
	.ppe-cards {
		flex-direction: column;
		align-items: stretch;
	}
	.ppe-cards .card {
		width: 100%
	}
	.columna-titulo {
		width: 100%;
	}
	.columna-card {
		width: 100%;
	}
}
@media (max-width: 767px) {
.ppe-module {
    flex-direction: column;
}
	.ppe-select{
		width:100%;
	}
	.ppe-cards .card {
		margin-bottom:20px;
	}
	.burbuja {
    width: 50%;
    text-align: center;
}
}