:root {
  --primary-color: #e14157;
  --text-color: rgb(56, 56, 56);
  --char-border: #b3b3b3;
  --imgPos: center;
}

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--text-color);
  background-color: rgb(247, 247, 247);
  font-size: 16pt;
}

nav {
  display: flex;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

#lex-logo {
  margin-left: 50px;
  width: 210px;
}

#nav-list {
  display: flex;
  justify-content: end;
  margin-right: 50px;
  text-align: center;
}

#nav-list li {
  list-style: none;
  margin-left: 60px;
}

#nav-list li a {
  text-decoration: none;
  color: var(--text-color);
}

#nav-list li a:hover {
  color: var(--primary-color);
}

#nav-list li a.active {
  color: var(--primary-color);
}

#menu {
  display: none;
}

#landing {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#img-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

#img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--imgPos);
  z-index: -1;
  filter: brightness(40%);
  position: absolute;
  top: 0;
  left: 0;
}

#landing-info {
  height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 300;
}

#landing-title {
  font-size: 58pt;
  color: white;
  margin: 0;
  width: 900px;
}

#landing-title span {
  color: var(--primary-color);
}

#landing-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  z-index: 50;
  bottom: 262px;
  text-decoration: none;
  color: white;
  background-color: var(--primary-color);
  border-radius: 10px;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 180px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

#landing-button:hover {
  filter: brightness(90%);
}

#subtitle {
  position: relative;
  background-color: white;
  width: 40%;
  color: var(--text-color);
  border-radius: 10px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#landing-subtitle {
  color: var(--primary-color);
  line-height: 30px;
  font-size: 22pt;
  text-align: center;
  margin-left: 30px;
  margin-right: 30px;
}

.subtitle-p {
  margin: 15px 30px;
  line-height: 30px;
}

#doubts-text {
  color: var(--primary-color);
  line-height: 25px;
  font-size: 14pt;
  text-align: center;
  margin: 0;
}

#buttons {
  height: 50px;
  z-index: 50;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.buy-link {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: filter 0.2s ease-in-out;
  white-space: nowrap;
  padding: 0 20px;
}

.buy-link:hover {
  filter: brightness(90%);
}

#paper {
  z-index: 100;
  width: 90%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  padding-bottom: 80px;
  margin: -120px auto 100px auto;
}

#solutions,
#price-div,
#who-are-we {
  width: 90%;
  margin: 50px auto 0 auto;
}

#solutions {
  margin-bottom: 100px;
}

#who-are-we h3 {
  color: var(--primary-color);
  font-size: 20pt;
}

#who-are-we p {
  line-height: 30px;
}

#price-div {
  padding-top: 50px;
  margin-bottom: 100px;
}

#price-title-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

#price-title-wrapper h3 {
  font-size: 20pt;
  margin: 0;
  color: var(--primary-color);
}

#price-title-wrapper h4 {
  font-size: 14pt;
  font-weight: 500;
  margin: 8px 0;
  color: var(--primary-color);
}

#prices {
  position: relative;
}

#card-plan-wrapper {
  margin-top: 150px;
  margin-bottom: 100px;
  display: flex;
  height: 760px;
  gap: 30px;
}

#chars-title {
  position: absolute;
  margin-top: -85px;
  display: flex;
}

#chars-title h3 {
  color: var(--primary-color);
}

#chars {
  display: flex;
  flex-direction: column;
  width: 500px;
  height: auto;
}

.char {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.char h5 {
  font-size: 16pt;
  margin: 0;
  font-weight: 600;
  text-align: left;
}

.char p {
  font-size: 12pt;
  width: 90%;
  margin-bottom: 0;
  margin-top: 0 !important;
  color: var(--text-color);
}

#price-canal {
  border: 5px solid #3cd0ae;
  border-radius: 10px;
  margin-top: -97px;
}

#plan-title-canal {
  font-size: 18pt;
  text-align: center;
  color: #3cd0ae;
}

#price-canalGestor {
  border: 5px solid #4e73e6;
  border-radius: 10px;
  margin-top: -97px;
  position: relative;
}

#popular {
  position: absolute;
  top: -25px;
  background-color: #4e73e6;
  width: 180px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 12pt;
}

#popular h4 {
  color: white;
  margin: 10px;
}

#plan-title-canalGestor {
  font-size: 18pt;
  text-align: center;
  color: #4e73e6;
  margin-bottom: 0;
}

#price-partners {
  border: 5px solid #cb4fd3;
  border-radius: 10px;
  margin-top: -97px;
}

#plan-title-partners {
  font-size: 18pt;
  text-align: center;
  color: #cb4fd3;
  margin-bottom: 0;
}

#price-canal,
#price-canalGestor,
#price-partners {
  width: 25%;
}

.icon {
  height: 100px;
  text-align: center;
  flex: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon:nth-last-child(4) {
  border-bottom: 2px solid rgb(56, 56, 56);
}

.bi-check-square-fill,
.icon span {
  color: #3cd0ae;
}

.plan-price {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12pt;
}

.contact-div {
  display: flex;
  justify-content: center;
}

.contact-button {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: rgb(56, 56, 56);
  background-color: #e9e9ed;
  border-radius: 10px;
  padding: 10px 20px;
}

.contact-button:hover {
  filter: brightness(90%);
}

#canal {
  font-size: 17pt;
  color: #3cd0ae;
  padding-left: 5px;
  padding-right: 5px;
  white-space: nowrap;
}

#canalGestor {
  font-size: 17pt;
  color: #4e73e6;
  padding-left: 5px;
  padding-right: 5px;
  white-space: nowrap;
}

#partners {
  text-align: center;
  font-size: 17pt;
  color: #cb4fd3;
}

.show-chars {
  display: none;
}

#price-more15 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0;
  position: absolute;
  bottom: 32px;
}

#price-more15 h4 {
  color: var(--primary-color);
  font-size: 14pt;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 28px;
  text-align: left;
}

#contact-button {
  margin: 0;
}

.point {
  margin-bottom: 50px;
}

#points h3 {
  color: var(--primary-color);
  font-size: 20pt;
  margin-bottom: 8px;
}

#points p,
#point-subtitle {
  color: var(--text-color);
  line-height: 30px;
  margin-top: 8px;
  margin-bottom: 0;
}

.card-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  color: var(--text-color);
  width: 22rem;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: rgb(247, 247, 247);
  flex: 1 1 300px;
}

.card-title {
  font-weight: 600;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 20pt;
  color: var(--text-color) !important;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title .bi {
  font-size: 32pt;
}

.card-subtitle {
  width: 90%;
  flex: auto;
  margin-left: 20px;
  margin-right: 20px;
}

#colegio-abogados {
  position: fixed;
  right: 0;
  bottom: 210px;
  width: 200px;
  height: 122px;
  z-index: 500;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 188, 64, 0.7);
}

#incibe {
  position: fixed;
  right: 0;
  bottom: 80px;
  width: 200px;
  height: 122px;
  z-index: 500;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 170, 0.7);
}

#colegio-abogados a,
#incibe a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  margin: 0;
}

#colegio-abogados h1,
#incibe h1 {
  font-size: 12pt;
}

#colegio-abogados:hover,
#incibe:hover {
  filter: brightness(90%);
}

#colegio-abogados > *,
#incibe > * {
  margin: 10px;
}

#colegio-abogados img,
#incibe img {
  width: 150px;
}

footer {
  background-color: #08305d;
  color: white;
  height: 320px;
}

#container {
  margin: auto;
  width: 65%;
}

#footer-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

#footer-links h3 {
  font-size: 20pt;
  margin-bottom: 0;
}

#links {
  margin-top: 10px;
  padding: 0;
  margin-bottom: 0;
}

#links li {
  list-style: none;
  margin-bottom: 5px;
}

#links li a {
  text-decoration: none;
  color: white;
  font-size: 14pt;
}

#links li a:hover {
  filter: brightness(90%);
}

#footer-social {
  margin-bottom: 0;
}

#footer-social h3 {
  font-size: 20pt;
  margin-bottom: 0;
}

#social {
  margin-top: 10px;
  margin-bottom: 5px;
  display: flex;
  gap: 20px;
  padding: 0;
}

#social li {
  list-style: none;
}

#social li a {
  font-size: 20pt;
  text-decoration: none;
  color: white;
}

#social li a:hover {
  filter: brightness(90%);
}

#footer-final {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#footer-final p {
  font-size: 12pt;
  color: white;
  margin: 0;
}

@media (max-height: 850px) {
  #landing {
    height: 1000px;
  }
}

@media only screen and (max-width: 479px) {
  nav {
    position: absolute;
  }

  #menu {
    display: block;
    cursor: pointer;
    border: none;
    background: none;
  }

  .bi-list {
    display: block;
    font-size: 40pt;
    margin-right: 30px;
  }

  #nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px) saturate(180%);
    top: 100px;
    transition: height 0.5s ease-in-out, padding 0.5s ease-in-out;
    margin: 0;
    padding: 0;
    gap: 15px;
  }

  #nav-list.active {
    padding: 15px 0;
    height: 200px;
  }

  #nav-list li {
    margin-left: 0;
  }

  #landing {
    flex-direction: column;
    height: 2300px;
    justify-content: start;
  }

  #landing-info {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  #landing-title {
    font-size: 30pt;
    width: 320px;
    margin: 25px 0;
    text-align: center;
  }

  #landing-button {
    bottom: 1190px;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
  }

  #subtitle {
    width: 80%;
    padding-bottom: 20px;
  }

  #buttons {
    flex-direction: column;
    gap: 10px;
    height: auto;
  }

  #paper {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #lex-logo {
    width: 200px;
  }

  #price-title-wrapper {
    position: initial;
    margin-top: 0;
    margin-bottom: 30px;
  }

  #price-title-wrapper h3,
  #price-title-wrapper h4 {
    margin-left: 0;
  }

  #card-plan-wrapper {
    margin-top: 8px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    height: initial;
  }

  #chars,
  #chars-title {
    display: none;
  }

  #price-canal,
  #price-canalGestor,
  #price-partners {
    height: fit-content;
    width: 100%;
    margin-top: 0;
  }

  .icon {
    display: none;
  }

  .plan-price {
    font-size: 16pt;
    margin: 24px 0;
  }

  .show-chars {
    display: block;
    text-align: center;
    margin: 24px 20px;
  }

  .show-chars button {
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
  }

  #chars-canal,
  #chars-canalGestor,
  #chars-partners {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
  }

  #chars-canal.show,
  #chars-canalGestor.show,
  #chars-partners.show {
    height: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .hidden-char {
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hidden-char h5 {
    font-weight: 600;
    text-align: left;
    margin: 0;
  }

  .hidden-char p {
    font-size: 12pt;
    text-align: left;
    margin-bottom: 0;
  }

  .hidden-char span {
    color: #3cd0ae;
    font-size: 12pt;
    display: block;
    text-align: left;
  }

  #price-more15 {
    position: initial;
    height: auto;
    align-items: center;
  }

  #price-more15 h4,
  #contact-button {
    margin-left: 0;
  }

  #colegio-abogados {
    width: inherit;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    bottom: initial;
  }

  #incibe {
    width: inherit;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    bottom: initial;
  }

  #colegio-abogados img,
  #incibe img {
    width: 160px;
  }

  footer {
    height: 520px;
  }

  #container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #footer-info {
    flex-direction: column;
  }

  #footer-final {
    text-align: center;
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  #footer-final p {
    text-align: center;
  }
}

@media only screen and (min-width: 480px) and (max-width: 979px) {
  nav {
    position: absolute;
  }

  #menu {
    display: block;
    cursor: pointer;
    border: none;
    background: none;
  }

  .bi-list {
    display: block;
    font-size: 40pt;
    margin-right: 30px;
  }

  #nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px) saturate(180%);
    top: 100px;
    transition: height 0.5s ease-in-out, padding 0.5s ease-in-out;
    margin: 0;
    padding: 0;
    gap: 15px;
  }

  #nav-list.active {
    padding: 15px 0;
    height: 200px;
  }

  #nav-list li {
    margin-left: 0;
  }

  #landing {
    flex-direction: column;
    height: 1800px;
    justify-content: start;
  }

  #landing-info {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  #landing-title {
    font-size: 36pt;
    width: 400px;
    margin: 25px 0;
    text-align: center;
  }

  #landing-button {
    bottom: 865px;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
  }

  #subtitle {
    width: 80%;
    padding-bottom: 50px;
  }

  #buttons {
    flex-direction: column;
    gap: 10px;
    height: auto;
  }

  #paper {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #price-title-wrapper {
    position: initial;
    margin-top: 0;
    margin-bottom: 30px;
  }

  #price-title-wrapper h3,
  #price-title-wrapper h4 {
    margin-left: 0;
  }

  #card-plan-wrapper {
    margin-top: 8px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    height: initial;
  }

  #chars,
  #chars-title {
    display: none;
  }

  #price-canal,
  #price-canalGestor,
  #price-partners {
    height: fit-content;
    width: 100%;
    margin-top: 0;
  }

  .icon {
    display: none;
  }

  .plan-price {
    text-align: center;
    font-size: 16pt;
    margin: 24px 0;
  }

  #canal {
    font-size: 17pt;
    color: #3cd0ae;
  }

  #canalGestor {
    font-size: 17pt;
    color: #4e73e6;
  }

  #partners {
    text-align: center;
    font-size: 17pt;
    color: #cb4fd3;
    margin: 24px 0;
  }

  .show-chars {
    display: block;
    text-align: center;
    margin: 24px 20px;
  }

  .show-chars button {
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
  }

  #chars-canal,
  #chars-canalGestor,
  #chars-partners {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
  }

  #chars-canal.show,
  #chars-canalGestor.show,
  #chars-partners.show {
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .hidden-char {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hidden-char h5 {
    font-weight: 600;
    text-align: left;
    margin: 0;
  }

  .hidden-char p {
    font-size: 12pt;
    text-align: left;
    margin-bottom: 0;
  }

  .hidden-char span {
    color: #3cd0ae;
    font-size: 12pt;
    display: block;
    text-align: left;
  }

  #price-more15 {
    position: initial;
    height: auto;
    align-items: center;
  }

  #price-more15 h4,
  #contact-button {
    margin-left: 0;
  }

  #colegio-abogados {
    width: inherit;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    bottom: initial;
  }

  #incibe {
    width: inherit;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    bottom: initial;
  }

  #colegio-abogados img,
  #incibe img {
    width: 170px;
  }

  footer {
    height: 490px;
  }

  #container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #footer-info {
    flex-direction: column;
  }

  #footer-final {
    text-align: center;
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  #footer-final p {
    text-align: center;
  }
}

@media only screen and (min-width: 980px) and (max-width: 1199px) {
  nav {
    position: absolute;
  }

  #menu {
    display: block;
    cursor: pointer;
    border: none;
    background: none;
  }

  .bi-list {
    display: block;
    font-size: 40pt;
    margin-right: 30px;
  }

  #nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px) saturate(180%);
    top: 100px;
    transition: height 0.5s ease-in-out, padding 0.5s ease-in-out;
    margin: 0;
    padding: 0;
    gap: 15px;
  }

  #nav-list.active {
    padding: 15px 0;
    height: 200px;
  }

  #nav-list li {
    margin-left: 0;
  }

  #landing {
    flex-direction: column;
    justify-content: start;
    height: 1200px;
  }

  #landing-info {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  #landing-title {
    font-size: 46pt;
    width: 610px;
    margin: 25px 0;
    text-align: center;
  }

  #landing-button {
    bottom: 590px;
    right: auto;
    left: auto;
  }

  #subtitle {
    width: 80%;
    padding-bottom: 50px;
  }

  #paper {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #price-title-wrapper {
    position: initial;
    margin-top: 0;
    margin-bottom: 30px;
  }

  #price-title-wrapper h3,
  #price-title-wrapper h4 {
    margin-left: 0;
  }

  #card-plan-wrapper {
    margin-top: 8px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: center;
    height: initial;
  }

  #chars,
  #chars-title {
    display: none;
  }

  #price-canal,
  #price-canalGestor,
  #price-partners {
    height: fit-content;
    width: 100%;
    margin-top: 0;
  }

  .icon {
    display: none;
  }

  .plan-price {
    text-align: center;
    font-size: 16pt;
    margin: 24px 0;
  }

  #canal {
    font-size: 17pt;
    color: #3cd0ae;
  }

  #canalGestor {
    font-size: 17pt;
    color: #4e73e6;
  }

  #partners {
    text-align: center;
    font-size: 17pt;
    color: #cb4fd3;
  }

  .show-chars {
    display: block;
    text-align: center;
    margin: 24px 20px;
  }

  .show-chars button {
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
  }

  #chars-canal,
  #chars-canalGestor,
  #chars-partners {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
  }

  #chars-canal.show,
  #chars-canalGestor.show,
  #chars-partners.show {
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .hidden-char {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hidden-char h5 {
    font-weight: 600;
    text-align: left;
    margin: 0;
  }

  .hidden-char p {
    font-size: 12pt;
    text-align: left;
    margin-bottom: 0;
  }

  .hidden-char span {
    color: #3cd0ae;
    font-size: 12pt;
    display: block;
    text-align: left;
  }

  #price-more15 {
    position: initial;
    height: auto;
    align-items: center;
  }

  #price-more15 h4,
  #contact-button {
    margin-left: 0;
  }

  #colegio-abogados {
    width: inherit;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    bottom: initial;
  }

  #incibe {
    width: inherit;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    position: relative;
    bottom: initial;
  }

  #footer-final {
    text-align: center;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1549px) {
  #landing {
    height: 1100px;
  }

  #landing-info {
    height: 440px;
  }

  #landing-title {
    font-size: 46pt;
    width: 600px;
  }

  #landing-button {
    height: 50px;
    left: 50px;
  }

  #subtitle {
    width: 40%;
    padding-bottom: 50px;
  }

  #price-title-wrapper {
    position: initial;
    margin-top: 0;
    margin-bottom: 30px;
  }

  #price-title-wrapper h3,
  #price-title-wrapper h4 {
    margin-left: 0;
  }

  #card-plan-wrapper {
    margin-top: 8px;
    margin-bottom: 30px;
    justify-content: center;
    height: initial;
  }

  #chars,
  #chars-title {
    display: none;
  }

  #price-canal,
  #price-canalGestor,
  #price-partners {
    height: fit-content;
    width: 300px;
    margin-top: 0;
  }

  .icon {
    display: none;
  }

  .plan-price {
    text-align: center;
    font-size: 16pt;
    margin: 24px 0;
  }

  #canal {
    font-size: 17pt;
    color: #3cd0ae;
  }

  #canalGestor {
    font-size: 17pt;
    color: #4e73e6;
  }

  #partners {
    text-align: center;
    font-size: 17pt;
    color: #cb4fd3;
  }

  .show-chars {
    display: block;
    text-align: center;
    margin: 24px 20px;
  }

  .show-chars button {
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
  }

  #chars-canal,
  #chars-canalGestor,
  #chars-partners {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
  }

  #chars-canal.show,
  #chars-canalGestor.show,
  #chars-partners.show {
    height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .hidden-char {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hidden-char h5 {
    font-weight: 600;
    text-align: left;
    margin: 0;
  }

  .hidden-char p {
    font-size: 12pt;
    text-align: left;
    margin-bottom: 0;
  }

  .hidden-char span {
    color: #3cd0ae;
    font-size: 12pt;
    display: block;
    text-align: left;
  }

  #price-more15 {
    position: initial;
    height: auto;
    align-items: center;
  }

  #price-more15 h4,
  #contact-button {
    margin-left: 0;
  }

  #footer-final {
    height: auto;
    text-align: center;
  }
}
