.calculadora-presupuesto {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.calculadora-presupuesto h2 {
    text-align: center;
    margin: 0;
    padding: 15px;
    background-color: #00a0e3;
    color: white;
    font-size: 24px;
    font-weight: normal;
}

.calculadora-contenido {
    padding: 20px;
}

.calculadora-presupuesto .opcion {
    margin-bottom: 25px;
    text-align: center;
}

.calculadora-presupuesto label {
    display: block;
    margin-bottom: 10px;
    font-weight: normal;
    color: #333;
    text-align: center;
    font-size: 16px;
}

.calculadora-presupuesto select,
.calculadora-presupuesto input[type='number'] {
    width: auto;
    min-width: 240px;
    max-width: 90%;
    margin: 0 auto;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f8f8;
    font-size: 16px;
    display: block;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.calculadora-presupuesto input[type='number'] {
    height: 40px;
    text-align: center;
}

.calculadora-presupuesto select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.calculadora-presupuesto button {
    display: block;
    width: 80%;
    max-width: 400px;
    margin: 30px auto;
    padding: 12px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.calculadora-presupuesto button:hover {
    background-color: #005b87;
}

/* Estilos para el resultado */
.resultado-presupuesto {
    background-color: #e7f7ff;
    border: 1px solid #bde5f8;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
}

.precio-rango {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
    color: #333;
}

.precio-rango span {
    font-weight: bold;
    color: #0073aa;
}

/* Estilos para la llamada a la acci車n */
.cta-container {
    margin: 20px 0;
}

.cta-botones {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.cta-boton {
    width: 45%;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

/* Estilos responsivos para m車viles */
@media (max-width: 480px) {
    .cta-botones {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-boton {
        width: 80%;
        max-width: 250px;
    }
}

.cta-llamar {
    background-color: #0073aa;
}

.cta-llamar:hover {
    background-color: #005b87;
}

.cta-whatsapp {
    background-color: #25d366;
}

.cta-whatsapp:hover {
    background-color: #128c7e;
}

.cta-icono {
    margin-right: 8px;
    font-size: 18px;
}