body {
    background-color: #f4f4fa;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
#logo_nav {
    max-width: 65px;
    width: auto;
    display: block;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
nav a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
nav a:hover {
    color: #5b3ef0;
}
nav a::before {
    content: '←';
    font-size: 1.2rem;
    transition: transform 0.3s;
}
nav a:hover::before {
    transform: translateX(-5px);
}
.entrar {
    background-color: #5b3ef0;
    color: #fff;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.entrar:hover {
    background-color: #fff;
    color: #5b3ef0;
    border-color: #5b3ef0;
    box-shadow: 0 5px 15px rgba(91, 62, 240, 0.2);
}
.loan-hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff 0%, #f0efff 100%);
}
.hero-content h1 {
    font-size: 2.5rem;
    color: #2a2a5c;
    margin-bottom: 20px;
}
.highlight {
    color: #5b3ef0;
    font-weight: 800;
}
.hero-content p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}
.benefits-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0;
}
.benefits-list li {
    font-weight: 600;
    color: #2a2a5c;
    background-color: #ececfc;
    padding: 8px 16px;
    border-radius: 20px;
}
.simulator-section {
    display: flex;
    justify-content: center;
    margin-top: -30px;
    padding: 0 20px 60px 20px;
}
.simulator-card {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(91, 62, 240, 0.15);
    text-align: center;
}
.simulator-card h2 {
    color: #2a2a5c;
    margin-bottom: 30px;
}
.input-group {
    margin-bottom: 30px;
    text-align: left;
}
.input-group label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.value-display {
    font-size: 2rem;
    font-weight: 700;
    color: #5b3ef0;
    margin-bottom: 15px;
}
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #5b3ef0;
    cursor: pointer;
    margin-top: -10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #e0e0e0;
    border-radius: 2px;
}
.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
}
.result-box {
    background-color: #f9f9ff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #eef;
}
.result-box p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
}
.monthly-price {
    font-size: 2.2rem;
    color: #2a2a5c;
    font-weight: 800;
    margin: 10px 0;
}
.result-box small {
    display: block;
    font-size: 0.7rem;
    color: #aaa;
}
.btn-primary-large {
    background-color: #5b3ef0;
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 10px 20px rgba(91, 62, 240, 0.3);
}
.btn-primary-large:hover {
    background-color: #4a30d1;
    transform: translateY(-2px);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}
.card-info {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
    transition: transform 0.3s;
    border: 1px solid #f0f0f0;
}
.card-info:hover {
    transform: translateY(-5px);
    border-color: #dcdcfc;
}
.card-info h3 {
    color: #5b3ef0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.card-info p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}
