body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}
h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-bottom: 15px;
}
h3 {
    font-size: 1.1rem; /* Reducido el tamaño del título */
}
h4 {
    font-size: 1.1rem;
}
.div-contenedor {
    border: 1px solid #ccc;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.publicidad {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.logo {
    max-width: 100%;
    height: auto;
}
.descripcion {
    margin-bottom: 10px;
    text-align: center;
}
.boton-publicidad {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}
.calculadora {
    margin-top: 20px; /* Agregado margen superior para separar la calculadora */
    width: 100%; /* Asegura que la calculadora tome todo el ancho disponible */
}
.formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.etiqueta {
    margin-bottom: 5px;
}
.input-valor {
    padding: 8px;
    margin-bottom: 10px;
    width: 80%;
    max-width: 300px;
}
.boton-calcular {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.resultado {
    margin-top: 10px;
    text-align: center;
}