﻿body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #9cc2f7, #1f5f9e);
    color: white;
}

.header {
    text-align: center;
    padding: 50px 20px 30px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D90D9;
    font-weight: bold;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
}

.card {
    background: white;
    color: #333;
    max-width: 500px;
    width: 90%;
    margin: 30px auto;
    padding: 25px;
    border-radius: 20px;
}

.monto {
    font-size: 42px;
    text-align: center;
    margin: 20px 0;
}

input[type=range] {
    width: 100%;
}

.resultado {
    margin-top: 20px;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 10px;
}

.btn {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
/*    background: #3D90D9;*/
   /* color: white;*/
    border: none;
    border-radius: 10px;
}

.beneficios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.beneficio {
    width: 240px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .beneficios {
        flex-direction: column;
        align-items: center;
    }

    .beneficio {
        width: 90%;
    }

    .logo-text {
        font-size: 24px;
    }

    .monto {
        font-size: 32px;
    }
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
