:root {
	--primary-color: #1e88e5;
	--secondary-color: #26c6da;
	--accent-color: #26ba0f;
	--light-color: #f5f9ff;
	--dark-color: #263238;
}

body {
	font-family: 'Poppins', sans-serif;
	color: var(--dark-color);
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.8rem;
}

.navbar-brand span {
	color: var(--primary-color);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-lg {
	padding: 12px 30px;
	font-weight: 600;
}

.hero {
	background: linear-gradient(135deg, var(--light-color) 0%, #e3f2fd 100%);
	padding: 0px 0;
}

.hero h1 {
	font-weight: 700;
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.2rem;
	color: #546e7a;
	margin-bottom: 30px;
}

.feature-card {
	border-radius: 15px;
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	background-color: var(--light-color);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-icon i {
	font-size: 2rem;
	color: var(--primary-color);
}

.testimonial-card {
	border-radius: 15px;
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testimonial-img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}

.loan-calculator {
	background-color: var(--light-color);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.steps-container {
	position: relative;
}

.steps-container::before {
	content: "";
	position: absolute;
	top: 50px;
	left: 48px;
	width: 1px;
	height: calc(100% - 100px);
	background-color: var(--primary-color);
	z-index: -1;
}

.step-circle {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-right: 15px;
}

footer {
	background-color: var(--dark-color);
	color: white;
	padding: 60px 0 30px;
}

.social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-icon:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

#loan-result {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary-color);
}

.cta-section {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
	color: white;
	border-radius: 15px;
	overflow: hidden;
}

.cta-content {
	padding: 50px;
}

.cta-content h2 {
	font-weight: 700;
	margin-bottom: 20px;
}

.btn-light {
	color: var(--primary-color);
	font-weight: 600;
}

.floating-button {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--accent-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	z-index: 100;
	transition: all 0.3s ease;
}

.floating-button:hover {
	transform: scale(1.1);
	background-color: var(--primary-color);
}

/* Animaciones */
.fade-in {
	animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
