:root {
  --main-color: #474645;
  --color-alternativo:#cb4835;
}

.basic_section_line_1 {
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 12px 0; 
}

.basic_section_line_2 {
    font-size: 60px;
    margin: 12px 0 20px 0;
}

.basic_section_line_3 {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 20px 0;
}

.basic_section_button {
  padding: 0;
  margin-left: 0;
  border: none;
  background: none;
  align-items: center;
}

.basic_section_button {
  --primary-color: var(--color-alternativo);
  --hovered-color: var(--main-color);
  position: relative;
  display: flex;
  cursor: pointer;
}

.basic_section_button p {
  margin: 0;
  position: relative;
  font-size: 1.5rem;
  font-family: "Plus Jakarta Sans";
  font-weight: normal;
}

.basic_section_button::after {
  position: absolute;
  width: 0;
  left: 0;
  bottom: -7px;
  background: var(--main-color);
  /*height: 2px;*/
  transition: 0.3s ease-out;
}

.basic_section_button p::before {
  position: absolute;
  width: 0%;
  inset: 0;
  overflow: hidden;
  transition: 0.3s ease-out;
}
.basic_section_button:hover::after {
  width: 100%;
}

.basic_section_button:hover p::before {
  width: 100%;
}

.basic_section_button:hover svg {
  transform: translateX(4px);
  color: var(--main-color)
}

.basic_section_button svg {
  transition: 0.2s;
  position: relative;
  width: 24px;
  transition-delay: 0.2s;
}

@media (max-width: 1200px) {
    .basic_section_line_1 {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .basic_section_line_2 {
        font-size: 36px;
        margin: 12px 0 20px 0;
    }
    
    .basic_section_line_3 {
        font-size: 16px;
        margin: 20px 0 20px 0;
    }
    .basic_section_button {
        margin-left: 0;
    }
}

