.financiamiento-section {
  width: 100%;
  height: 120vh;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.financiamiento-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.financiamiento-header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
  padding: 5%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.financiamiento-title {
  color: #ffffff;
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}

.financiamiento-divider {
  width: 100px;
  height: 4px;
  background-color: #e50014;
  margin: 15px auto 25px auto;
}

.financiamiento-subtitle {
  color: #ffffff;
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

.financiamiento-wrapper {
  width: 100%;
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 5%;
}

.financiamiento-wrapper .btn-switch-container:hover .btn-switch-pill {
  background-color: #ffffff;
  color: #e50014;
}

.financiamiento-intro {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.financiamiento-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.financiamiento-row {
  display: flex;
  gap: 30px;
  width: 100%;
}

.financiamiento-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid #707070;
  color: #ffffff;
  padding: 10px 0;
  font-size: 1.2rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.financiamiento-input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.financiamiento-input:focus {
  border-bottom-color: #e50014;
}

.financiamiento-submit-wrapper {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .financiamiento-section {
    height: auto;
    min-height: 100vh;
  }
  
  .financiamiento-title {
    font-size: 2.5rem;
  }
  
  .financiamiento-subtitle,
  .financiamiento-intro {
    font-size: 1rem;
    padding: 0 15px;
  }
  
  .financiamiento-row {
    flex-direction: column;
    gap: 15px;
  }
  
  .financiamiento-wrapper {
    padding: 20px;
  }
}
