/* HEADER */

#header {
  background-color: #282828;
}

#header #menu-container {
  height: 40px;
  padding-left: 10px;
}

#header #menu-container #logo-img {
  height: 100%;
}

/* HERO */

#hero{
 background-color: #d3d3d3;
}
.text{
  padding: 30px;
  text-align: center;
}

.text h1{
  color: #282828;
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  max-width: 400px;
  margin: 0 auto;
}

.text h1 .marca {
  color: #282828;
  font-size: 70px;
  font-weight: 700;
}

.text h2 {
  color: #282828;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  margin-top: .5em;
  max-width: 350px;
  margin: 0 auto;
  padding-bottom: .5em;
}

.text h2 .negrita{
  font-weight: bold;
}

.text hr {
  width: 80px;
  height: 5px;
  display: inline-block;
  margin: 30px 0 20px 0;
}

.cta-button {
  background-color: #395C6B;
  border-radius: 30px;
  color: white;
  display: inline-flex;
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button img {
  margin-right: 8px;
}

.cta-button:hover {
  background-color: #2F4E59;
}

/* PROCESO */

.der {
  border-left: 4px solid #282828;
  flex: 1;
  font-family: 'Raleway', sans-serif;
  padding: 30px;
  text-align: left;
}

.der h2 {
  color: #1F2933;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.step {
  align-items: center;
  border-bottom: 1px solid #E2E2E2;
  display: flex;
  gap: 20px;
  padding: 10px 0;
}

.step-number {
  align-items: center;
  background: #282828;
  border-radius: 50%;
  color: white;
  display: flex;
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  height: 50px;
  justify-content: center;
  min-width: 50px;
}

.step-content h3 {
  color: #1F2933;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.step-content p {
  color: #4A4F55;
  margin: 0 0 10px 0;
}

/* FAQ */

#faq {
  background: #d3d3d3;
  padding: 30px;
}

#faq h2 {
  color: #1f2933;
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

#faq h3 {
  font-family: 'Lato', sans-serif;
  font-size:1.1rem;
}

#faq p {
  font-family: 'Lato', sans-serif;
  margin-left: 10px;
}

.faq-item {
  border-bottom: 1px solid #e2e2e2;
  padding: 15px 0;
}

.faq-question {
  color: #1f2933;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  padding-right: 24px;
  position: relative;
}

.faq-question::after {
  color: #4a4f55;
  content: "+";
  font-size: 1.3rem;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.2s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  color: #4a4f55;
  display: none;
  font-size: 0.95rem;
  margin-top: 10px;
}

/*FOOTER*/

#footer{
  background-color: #282822;
  height: 30px;
  font-size: 0.9rem;
  color: #FFFFFF;
  text-align: center;
  padding-top: 5px;
}

