body{
	background: linear-gradient(-45deg, #ee7752, #f9f16b, #ffdbad, #d7d7d7);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.login-button {
	background-color: #3f9e3f; /* Cambia este color al que prefieras */
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	margin-right: 10px;
}

.register-button {
	background-color: #ff6f61; /* Cambia este color al que prefieras */
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

.main-arriba{
	text-align:center;
}

#divInicio{
	margin-bottom:200px;
	
}

@media screen and (min-width: 600px) {
    #divInicio {
        padding-top:250px;
		padding-bottom:320px;
    }
}


h1{
	font-size:54px;
	margin-bottom:0px;
}

h2{
	font-family: system-ui;
}

.frase-home{
	margin-bottom:50px;
	padding:10px;
}



/* como funciona inicio */

.numero-como-funciona{
	font-size: 40px;
    color: black;
    font-weight: bold;
}


.how-it-works {
	background-color: #fff;
	padding: 50px 20px;
	text-align: center;
}

.how-it-works h2 {
	font-size: 36px;
	margin-bottom: 40px;
	color: #333;
}

.steps-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.step {
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	flex: 1 1 calc(33.333% - 40px);
	max-width: calc(33.333% - 40px);
	box-sizing: border-box;
	border:1px solid black;
}

.step .icon {
	background-color: #FFEB3B;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	border:1px solid black;
}

.step .icon i {
	font-size: 40px;
	color: white;
}

.step h3 {
	font-size: 24px;
	color: #333;
	margin-bottom: 10px;
}

.step p {
	font-size: 16px;
	color: #666;
}

@media (max-width: 768px) {
	.steps-container {
		flex-direction: column;
		align-items: center;
	}

	.step {
		max-width: 100%;
		flex: none;
	}
}


/**/



/* precios */

/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/

.rounded-lg {
  border-radius: 1rem !important;
}

.text-small {
  font-size: 0.9rem !important;
}

.custom-separator {
  width: 5rem;
  height: 6px;
  border-radius: 1rem;
}

.text-uppercase {
  letter-spacing: 0.2em;
}

.btn-primary{
	background-color:#FFEB3B;
	border-color:#FFEB3B;
	color:black;
}

.bg-primary{
	background-color:#FFEB3B !important;
}

/**/



/* faq */

.faq-section {
	
  max-width: 600px;
  margin: 0 auto;
}

.question {
  margin: 8px;
}

.question-title {
  font-size: 18px;
  font-weight: bold;
  background-color: #f4f4f4;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
}

.answer {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: max-height 0.3s ease;
  max-height: 0;
  overflow: hidden;
  padding-left: 10px;
  padding-right: 10px;
}

.answer.active {
  max-height: 500px; /* Altura máxima cuando se muestra */
}
/**/


.testimonials .testimonial {
    background-color: #53521fbd;
    color: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial h4 {
    margin-top: 10px;
    font-size: 1.1rem;
}