/* Estilos de las tarjetas de precios */
.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    margin: 10px;
}

.pricing-card h3 {
    font-size: 24px;
    color: #333;
}

.pricing-card p {
    font-size: 16px;
    color: #777;
    margin: 10px 0;
}

.pricing-card h4 {
    font-size: 24px;
    color: #333;
    margin-top: 10px;
}

.button {
    background-color: #ff6600;
    color: #fff;
    padding: 8px 8px; /* Ajustar el relleno aquí para hacer los botones más pequeños */
    border: none;
    border-radius: 5px;
    font-size: 14px; /* Ajustar el tamaño de la fuente aquí */
    cursor: pointer;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.button:hover {
    background-color: #ff8800;
}
