/* Contenedor principal */
.tpb-contenedor {
max-width: 450px;
margin: 0 auto;
font-family: 'Segoe UI', Arial, sans-serif;
border: 1px solid #e0e0e0;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
background-color: #ffffff;
position: relative;
margin-top: 20px;
}

/* Cabecera */
.tpb-cabecera { background-color: #2b2b2b; padding: 18px 0; }
.tpb-cabecera h2 { margin: 0; color: #ffffff; font-size: 26px; font-weight: 500; }

/* Precio */
.tpb-precio-seccion { background-color: #000000; color: #ffffff; padding: 25px 0; }
.tpb-monto { font-size: 34px; font-weight: bold; line-height: 1; margin-bottom: 5px; }
.tpb-subtitulo { font-size: 18px; }

/* Lista de Características */
.tpb-caracteristicas ul { list-style: none; margin: 0; padding: 0; }
.tpb-caracteristicas li {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 16px 15px;
font-size: 19px;
color: #333333;
background-color: #f0f0f0;
}
.tpb-caracteristicas li:nth-child(even) { background-color: #ffffff; }

/* Unificación de Iconos */
.tpb-caracteristicas li .tpg-icono-personalizado,
.tpb-caracteristicas li .material-symbols-outlined,
.tpb-caracteristicas li .dashicons {
width: 24px;
height: 24px;
min-width: 24px;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #444444;
}

.tpb-caracteristicas li .tpg-icono-personalizado {
object-fit: contain;
}

/* Botón */
.tpb-pie { background-color: #ffffff; padding: 30px 0; }
.tpb-boton {
display: inline-flex;
align-items: center;
justify-content: center;
background-color: #000000;
color: #ffffff !important;
padding: 12px 24px;
font-size: 17px;
font-weight: bold;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.2s ease;
}
.tpb-boton:hover { background-color: #222222; }