:root {
  --primary-font: "Open Sans", sans-serif;
  --base-size-font: 17px;

  --primary-color: #1b2a3f;
  --secondary-color: #da3a25;
  --tertiary-color: #8e9ea0;
  --quaternary-color: #f4f6f8;

  --transition: all 0.4s ease;
  --box-shadow: 0px 2.589681386947632px 10.358725547790527px 0px #00000057;

  --border-radius: 15px;
  --border-radius2: 25px;

  --title: 2.5rem;
  --text-content-size: 1rem; /* Párrafos, textos de contenido */
}

body {
  font-family: var(--primary-font) !important;
  font-size: var(--text-content-size);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

html,
body {
  height: 100%;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  margin-block-start: 0;
  margin-block-end: 0;
}
p {
  font-size: var(--text-content-size);
  margin-bottom: 20px;
  line-height: 1.4rem;
  color: var(--tertiary-color);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.d-flex {
  display: flex;
}
.bg-white {
  background-color: #fff;
}
/* --- Container --- */

.container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding: 0 1.5rem;
	max-width: 1200px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .container {
    width: 100%;
	  padding: 0;
/*     padding: 0 5rem; */
  }
}
@media screen and (min-width: 1280px) {
}

/* --- General --- */

.btn {
  position: relative;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  width: max-content;
  height: fit-content;
  font-size: var(--text-content-size);
  color: #fff;
  transition: var(--transition);
  overflow: hidden;
  padding: 11px 40px;
  justify-content: center;
  line-height: 1rem;
  min-width: 135px;
  text-align: center;
}
.btn.-red {
  background-color: var(--secondary-color);
}
.btn.-red:hover {
  background-color: #c93421;
  color: #fff;
}
.btn.-blue {
  background-color: var(--primary-color);
}
.btn.-blue:hover {
  background-color: #152233;
}

.section-first {
  padding-top: 0px;
}
main {
  position: relative;
  z-index: 9;
}
section {
  padding: 50px 0;
  overflow-x: clip;
}
.header-section {
  margin-bottom: 80px;
}
.section-title {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-title h1,
.section-title h2 {
  font-size: var(--title);
  color: var(--title-color);
  font-weight: 700;
  position: relative;
  margin-bottom: 15px;
  line-height: 3rem;
}

.section-title h2.-white {
  color: #fff;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  main {
    margin-top: 117px;
  }
  .section-title {
    margin-bottom: 35px;
  }
  .section-title h1,
  .section-title h2 {
    text-align: center;
  }
}
@media screen and (min-width: 1280px) {
}

/* ----------------------- HEADER --------------------- */

.header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9990;
  transition: var(--transition);
  padding-left: 0px;
  background-color: var(--primary-color);
  overflow-x: clip;
}

.redes-header {
  gap: 8px;
  align-items: center;
  margin-right: 20px;
}
.redes-header img {
  width: 31px;
  height: 31px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .header {
    height: 117px;
    position: fixed;
  }
  .header.activeFixed {
    display: flex;
    position: fixed !important;
    height: 70px;
    box-shadow: var(--box-shadow);
  }
}
@media screen and (min-width: 1280px) {
}

.header__inner {
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.header__logo a {
  display: block;
  height: 80px;
  transition: var(--transition);
}
.header.activeFixed .header__logo a {
  height: 70px;
}
.header__logo img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__content {
  display: none;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  transition: var(--transition);
}
.header.activeFixed .header__content {
  transform: translateY(-25px);
}
.header__content > .row:nth-child(1) {
  width: 100%;
  transition: var(--transition);
}
.header.activeFixed .header__content > .row:nth-child(1) {
  opacity: 0;
}
.header__content > .row:nth-child(2) {
  gap: 40px;
  justify-content: space-between;
}
.header__toggle {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: transparent;
  padding: 10px;
}
.header__toggle img {
  width: 100%;
}
.item-header {
  display: none;
}
.item-header .menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.item-header .menu li {
  position: relative;
}
.item-header .menu li > a {
  color: #fff;
  padding: 10px 20px;
  transition: var(--transition);
  position: relative;
  border-radius: 5px;
}
.item-header .menu li > a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0%;
  transition: var(--transition);
  bottom: 0px;
  left: 0;
  background-color: var(--primary-color);
}
.item-header .menu li.current-menu-item > a,
.item-header .menu li > a:hover {
  color: #fff;
  background-color: var(--secondary-color);
}
.item-header .menu li.current-menu-item > a::after,
.item-header .menu li > a:hover::after {
  width: 100%;
}
.item-header .menu li.current-menu-item {
  position: relative;
}
.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  top: 22px;
  left: 15px;
  height: 21px;
  width: 22px;
  margin-bottom: 0;
}
.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #fff;
}
.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 5px;
}
.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}
.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 5px;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .item-header {
    display: flex;
  }
  .header__logo a {
    height: 45px;
  }
  .header__content {
    display: flex;
  }
  .header.activeFixed .header__logo a {
    height: 55px;
  }
  .header__inner {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .header__logo a {
    height: 103px;
  }
  .header__toggle {
    display: none;
  }
}

/**
*	SIDEBAR MENU
*	=======================================================================================================
**/
.sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 22px;
  left: 15px;
  height: 16px;
  width: 22px;
}
.spinner {
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
}
.horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}
.diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}

#overlay {
  width: 100%;
  height: 100vh;
  background-color: var(--tertiary-color);
  opacity: 1;
  position: fixed;
  transition: right 0.5s ease;
  top: 0;
  right: -100%;
  z-index: 99999;
}
#overlay.active {
  opacity: 0.7;
  right: 0;
}
#sidebar {
  height: 100vh;
  width: 90%;
  max-width: 1120px;
  background-color: var(--primary-color);
  padding-top: 100px;
  position: fixed;
  overflow: hidden;
  transition: right 0.5s ease;
  right: -100%;
  top: 0;
  z-index: 999999;
}
#sidebar.active {
  right: 0; /* Mueve el div dentro de la pantalla */
}
#sidebar .container {
  height: 100%;
}
#sidebar .logo {
  width: 100%;
  max-width: 200px;
}
#sidebar .menu-sidebar {
  font-family: var(--secondary-font);
}
#sidebar .menu-sidebar li {
  position: relative;
}
#sidebar .menu-sidebar li a {
  font-size: 1.5rem;
  margin-bottom: 30px;
  display: flex;
  color: #fff;
  padding: 10px 25px 10px 35px;
  transition: var(--transition);
  position: relative;
  border-radius: 7px;
}
#sidebar .menu-sidebar li.current-menu-item::before,
#sidebar .menu-sidebar li:hover::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../images/iso-logo.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 11px;
  background-repeat: no-repeat;
}
#sidebar .redes {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
#sidebar .redes img {
  width: 50px;
}
.img-iso-sidebar {
  width: 285px;
  height: 205px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.img-iso-sidebar img {
  width: 100%;
  object-position: top;
}
.datos {
  padding: 0px;
  line-height: 1.4;
}
.datos,
.datos a {
  color: #fff;
}
.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 30px;
  align-items: center;
}

.sidebar-wrapper .row {
  flex-direction: column;
  gap: 65px;
  width: 100%;
}
.sidebar-wrapper .col-50 {
  width: 100%;
}
.content-sidebar {
  padding: 40px 0;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--secondary-color);
  width: max-content;
  position: relative;
}
.content-sidebar .datos:nth-child(1) {
  padding-left: 0;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #sidebar {
    width: 80%;
  }
  .sidebar-wrapper {
    padding: 0;
  }
  .sidebar-wrapper .row {
    flex-direction: row;
  }
  .sidebar-wrapper .col-50 {
    width: 50%;
  }
  .content-sidebar {
    align-items: end;
    gap: 0;
  }
  .content-sidebar .datos:nth-child(2) {
    border-right: 1px solid #fff;
  }
  .datos {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1280px) {
}

#close-btn {
  position: absolute;
  padding: 10px;
  top: -60px;
  right: 35px;
  background: transparent;
}
#close-btn img {
  width: 18px;
}

/**
*	HOME
*	=======================================================================================================
**/

/** WELCOME	============== **/

#welcome {
  background-color: var(--primary-color);
  padding: 20px 0 50px;
  position: relative;
  border-radius: 0 0 40px 0;
}
.welcome__wrapper {
  flex-direction: column;
  gap: 60px;
  position: relative;
  min-height: 420px;
}
.welcome__content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
}
.welcome__content h1 {
  font-size: 2.6rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 45px;
  text-align: center;
}
.welcome__content h1 span {
  color: var(--secondary-color);
}
.welcome__content .bloques {
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.welcome__content .bloques .bloque:nth-child(1) {
  background-color: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 20px;
  color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1.4rem;
  position: relative;
}
.welcome__content .bloques .bloque:nth-child(1)::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 24px;
  height: 20px;
  background-image: url(../images/triangle-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.welcome__content .bloques .bloque:nth-child(2) {
  color: #fff;
  text-align: center;
}
.welcome__form {
  width: 100%;
  background-color: var(--secondary-color);
  padding: 50px 35px;
  border-radius: 20px;
  position: relative;
  box-shadow: var(--box-shadow);
  right: 0;
  z-index: 99;
}
.welcome__form:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 110px;
  background-image: url(../images/plane.svg);
  background-size: contain;
  bottom: 35px;
  right: -55px;
}
.welcome__form:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 110px;
  background-image: url(../images/plane.svg);
  background-size: contain;
  top: 35px;
  left: -55px;
}
.welcome__form h2 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 800;
  font-size: 1.5rem;
}
.welcome__form h2 span {
  color: var(--primary-color);
}
input {
  width: 100%;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 15px;
}
.welcome__form .btn {
  width: 100%;
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .welcome__wrapper {
    flex-direction: row;
    gap: 100px;
    min-height: 420px;
  }
  .welcome__content {
    width: 56%;
  }
  .welcome__form {
    width: 36%;
    padding: 50px 60px 30px;
    margin-right: 25px;
    position: absolute;
    min-height: 495px;
  }
  .welcome__content .bloques {
    flex-direction: row;
  }
  .welcome__content h1 {
    font-size: 3rem;
    text-align: left;
  }
  .welcome__content .bloques .bloque:nth-child(1) {
    padding: 10px 20px;
  }
  .welcome__content .bloques .bloque:nth-child(2) {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
}

/** CLAVE	============== **/
#clave {
  position: relative;
}
.triangle-red {
  width: 80px;
  left: 0;
  top: -70px;
  position: absolute;
  z-index: 9;
}

.clave__wrapper {
  flex-direction: column;
  gap: 70px;
}
.clave__img {
  width: 100%;
  position: relative;
}
.clave__content-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 430px;
  top: 0;
  left: 0;
}
.clave__content {
  width: 100%;
  flex-direction: column;
  padding: 0;
}

.clave__content h2 {
  font-size: 2.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.clave__content h2 span {
  color: var(--secondary-color);
}
.clave__content .bloques {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.clave__content .bloque {
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  overflow: hidden;
}
.clave__content .bloque > div:nth-child(1) {
  background-color: var(--secondary-color);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 97px;
  width: 35%;
  font-size: 2.5rem;
  text-transform: uppercase;
}
.clave__content .bloque > div:nth-child(2) {
  width: 65%;
  padding: 0 10px 0 15px;
  color: var(--primary-color);
  margin: auto 0;
}
.clave__content p strong {
  color: var(--primary-color);
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .clave__wrapper {
    flex-direction: row;
  }
  .clave__img {
    width: 45%;
  }
  .clave__content-img {
    position: absolute;
    height: 692px;
    top: -90px;
    left: 0;
  }
  .clave__content {
    width: 55%;
    padding: 80px 80px 0 0;
  }
  .clave__content .bloques {
    flex-direction: row;
  }
  .triangle-red {
    width: 111px;
    top: -117px;
  }
  .clave__content h2 {
    font-size: 2.5rem;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
}

/** INCLUYE	============== **/

#incluye {
  background: var(--primary-color);
  margin: 50px 0 0;
  padding: 80px 0 0;
}
.incluye__wrapper {
  flex-direction: column;
  background-color: var(--primary-color);
  align-items: center;
  gap: 50px;
  border-radius: 0 40px 40px 0;
}
.incluye__content {
  flex-direction: column;
  width: 100%;
}
.incluye__img {
  width: 100%;
  position: relative;
  background-image: url(../images/man.png);
  background-repeat: no-repeat;
  background-size: 380px;
  background-position: center bottom -45px;
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 30px;
}
.incluye__img .btn {
  font-size: 1.4rem;
  padding: 15px 40px;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
  line-height: 1.1;
}
.incluye__img .plane1 {
  position: absolute;
  width: 90px;
  top: 10px;
  left: 0;
}
.incluye__img .plane2 {
  position: absolute;
  width: 90px;
  top: 64px;
  right: 0;
}
.incluye__content h2 {
  font-size: 2.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}
.incluye__content h2 span {
  color: var(--secondary-color);
}
.incluye__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-left: 15px;
}
.incluye__item-grid {
  padding: 10px 20px;
  border-radius: 10px;
  color: var(--primary-color);
  position: relative;
  background-color: #fff;
  box-shadow: var(--box-shadow);
}
.incluye__item-grid::before {
  content: "";
  position: absolute;
  left: -15px;
  top: -17px;
  width: 35px;
  height: 35px;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  #incluye {
    background: linear-gradient(
      to right,
      var(--primary-color) 50%,
      var(--quaternary-color) 50%
    );
    padding: 0;
  }
  .incluye__wrapper {
    flex-direction: row;
  }
  .incluye__content {
    width: 45%;
  }
  .incluye__img {
    width: 55%;
    background-size: 100%;
    min-height: 650px;
    padding-bottom: 130px;
  }
  .incluye__content h2 {
    font-size: 2.5rem;
    text-align: left;
  }
  .incluye__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .incluye__item-grid {
    min-height: 80px;
  }
  .incluye__img .plane1 {
    top: 85px;
    left: 40px;
  }
  .incluye__img .plane2 {
    top: 190px;
    right: 60px;
  }
}
@media screen and (min-width: 1280px) {
}

/** FAQS	============== **/
#faqs {
  padding-top: 100px;
  position: relative;
}
.faqs__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--quaternary-color);
  top: 0;
  right: 0;
  border-radius: 0 0 0 50px;
}
.faqs__wrapper {
  flex-direction: column;
  gap: 50px;
}
.faqs__img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  height: 450px;
  position: relative;
  top: 0;
}
.faqs__content {
  width: 100%;
  flex-direction: column;
  padding: 0;
}
.faqs__content h2 {
  font-size: 2.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 40px;
  width: 90%;
  text-align: center;
}
.faqs__content h2 span {
  color: var(--secondary-color);
}
.faq {
  max-width: 600px;
}
.faq-item {
  border-bottom: 1px solid var(--primary-color);
  padding: 10px 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 10px 35px 10px 0;
  position: relative;
  white-space: normal;
}
.faq-question::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 9px;
  background-image: url(../images/dropdown.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 10px;
  top: 20px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  font-size: 1rem;
  margin-top: 5px;
  padding: 0;
  color: var(--tertiary-color);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 5px;
  padding: 10px 0;
}
.faqs__footer {
  font-weight: 800;
  color: var(--primary-color);
  margin-top: 40px;
}
.faqs__footer span {
  color: var(--secondary-color);
}
.faq-item [type="button"],
.faq-item [type="submit"],
.faq-item button {
  color: var(--primary-color);
}
.faq-item [type="button"]:focus,
.faq-item [type="button"]:hover,
.faq-item [type="submit"]:focus,
.faq-item [type="submit"]:hover,
.faq-item button:focus,
.faq-item button:hover {
  color: var(--primary-color);
  background-color: transparent;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .faqs__wrapper {
    flex-direction: row;
  }
  .faqs__img {
    width: 45%;
    height: 600px;
    position: sticky;
    top: 20px;
  }
  .faqs__content {
    width: 55%;
    padding: 0 80px 0 0;
  }
  .faqs__content h2 {
    font-size: 2.5rem;
    text-align: left;
  }
  .faqs__bg {
    width: 75%;
  }
}
@media screen and (min-width: 1280px) {
}

/** CERTIFICATE	============== **/
#certificate {
  padding: 100px 0;
  position: relative;
}
.certificate__wrapper {
  gap: 50px;
  flex-direction: column;
  align-items: center;
}
.certificate__content {
  flex-direction: column;
  width: 100%;
  text-align: center;
}
.certificate__content h2 {
  font-size: 2.3rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  width: 90%;
  text-align: center;
}
.certificate__content h2 span {
  color: var(--secondary-color);
}
.certificate__msg {
  color: var(--primary-color);
  font-weight: 700;
}
.certificate__btn {
  width: 100%;
  justify-content: center;
  align-items: center;
}
.certificate__btn .btn {
  font-size: 1.4rem;
  padding: 15px 40px;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
  line-height: 1.1;
}
.certificate__triangle {
  display: none;
  width: 400px;
  height: 498px;
  background-image: url(../images/triangle-inverse.svg);
  background-repeat: no-repeat;
  background-size: 395px;
  background-position: top -62px left 40px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .certificate__wrapper {
    flex-direction: row;
  }
  .certificate__content {
    width: 50%;
    text-align: left;
  }
  .certificate__content h2 {
    font-size: 2.5rem;
    text-align: left;
  }
  .certificate__triangle {
    display: flex;
  }
  .certificate__btn {
    width: 50%;
  }
}
@media screen and (min-width: 1280px) {
}

/** FOOTER	============== **/
footer {
  background-color: var(--primary-color);
  color: #fff;
  padding-top: 60px;
  position: relative;
}
.footer__img {
  display: none;
  width: 400px;
  height: 340px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.footer__inner .row {
  flex-direction: column;
  padding: 25px 20px;
  border-bottom: 1px solid var(--secondary-color);
  gap: 30px;
}
.footer__wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer__redes {
  flex-direction: row;
  gap: 8px;
}
.footer__redes a {
  width: 35px;
  height: 35px;
}
.footer__item {
  display: flex;
  gap: 5px;
  align-items: center;
}
.footer__item a,
.footer__item a:hover,
.footer__item a:focus,
.footer__item a:visited {
  color: #fff;
}
.footer__item img {
  width: 23x;
  height: 23px;
  object-fit: contain;
}
.footer__content {
  flex-direction: column;
  gap: 5px;
}
.copyright {
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 25px 0;
  gap: 5px;
  align-items: center;
  text-align: center;
}
.copyright span {
  display: none;
}
.agencia84 {
  gap: 5px;
}
.agencia84 a {
  width: 23px;
}
@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .footer__inner .row {
    flex-direction: row;
    gap: 0;
  }
  .footer__wrapper {
    width: 70%;
  }
  .copyright {
    flex-direction: row;
    width: 70%;
    text-align: left;
  }
  .copyright span {
    display: flex;
  }
  .footer__img {
    display: flex;
  }
  .footer__inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1280px) {
}

/* Aplica estilos al formulario de HubSpot */
.hs-form input {
  font-size: 18px !important;
  color: #000000 !important;
}

.hs-form label {
  font-size: 16px !important;
  color: #444444 !important;
}

.hs-button {
  background-color: #008000 !important;
  font-size: 18px !important;
}
.hs-form-b1333929-a77a-400b-b7e6-993677411408_90a00530-e3a0-414f-8830-3ec41a9e8e5e
  .hs-form-field
  label:not(.hs-error-msg) {
  color: #fff !important;
}

.thanks__wrapper {
  display: flex;
  flex-direction: column;
  padding: 100px 0;
  align-items: center;
}
.thanks__wrapper h1 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.5rem;
  text-align: left;
}

/**
*	IMPULSA TU NEGOCIO - HOME
*	=======================================================================================================
**/

#impulsa-tu-negocio #welcome {
  margin-bottom: 0;
}
#impulsa-tu-negocio #welcome p {
  color: #fff;
  text-align: center;
}
#impulsa-tu-negocio .welcome__form:before,
#impulsa-tu-negocio .welcome__form:after {
  display: none;
}


#impulsa-tu-negocio .welcome__content {
  position: relative;
  justify-content: flex-start;
  padding-top: 15px;
}
#impulsa-tu-negocio .welcome__content h1 {
    margin-bottom: 30px;
    font-size: 2.6rem;
    line-height: 1.1;
}
#impulsa-tu-negocio .welcome__img {
  width: 100%;
  height: 286px;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
  left: 0;
  bottom: -38%;
}

@media screen and (min-width: 580px) {  
}
@media screen and (min-width: 980px) {
  #impulsa-tu-negocio #welcome {
    margin-bottom: 120px;
  }
  #impulsa-tu-negocio .welcome__img {
    position: absolute;
  }
  #impulsa-tu-negocio #welcome p {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
}


section#como-ayudamos {
  padding: 90px 0;
}
.como-ayudamos__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
.como-ayudammos__bloque {  
  border-radius: var(--border-radius);
  padding: 25px 35px;
  position: relative;
  margin-left: 25px;
  color: #fff;
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.como-ayudammos__bloque::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 23px;
  width: 40px;
  height: 40px;
  background-image: url(../images/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.como-ayudammos__bloque h3 {
    font-size: var(--text-content-size);
    line-height: 1.4rem;
    margin-bottom: 10px;
    font-weight: 800;
}
.como-ayudammos__bloque p {
  color: #fff;
}
.como-ayudammos__bloque p:last-child {
  margin-bottom: 0;
}
.como-ayudamos__grid h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
  padding: 0 25px;
  margin-bottom: 25px;
}
.como-ayudamos__grid h2 span {
  color: var(--secondary-color);
}
.como-ayudamos__grid > .como-ayudamos-grid__item:nth-child(odd) .como-ayudammos__bloque{
  background-color: #fff;
}
.como-ayudamos__grid > .como-ayudamos-grid__item:nth-child(even) .como-ayudammos__bloque{
  background-color: var(--primary-color);
}
.como-ayudamos__grid > .como-ayudamos-grid__item:nth-child(odd) .como-ayudammos__bloque p,
.como-ayudamos__grid > .como-ayudamos-grid__item:nth-child(odd) .como-ayudammos__bloque h3 {
  color: var(--primary-color);
}

@media screen and (min-width: 580px) {
}
@media screen and (min-width: 980px) {
  .como-ayudamos__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .como-ayudamos__grid h2 {
    text-align: left;
  }
  .como-ayudamos__grid h2 {
      margin-bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
}


#impulsa-tu-negocio #faqs{
  background-color: var(--quaternary-color);
}
.testimonials__inner{
  background-image: url(../images/triangulo.svg);
  background-repeat: no-repeat;
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  padding: 70px;
}
#testimonials{
  background: linear-gradient(to bottom, #fff 50%, var(--quaternary-color) 50%);
  padding: 0;
}
#testimonials h2 {
  font-size: 2.5rem;
  text-align: left;
  color: #fff;
  max-width: 600px;
  text-align: center;
  font-weight: 700;
  padding: 0 25px;
  margin: 0 auto 80px;
}
#testimonials h2 span {
  color: var(--secondary-color);
}
.testimonials__wrapper {
  gap: 50px;
  margin-top: 40px;
  position: relative;
  flex-direction: column;
}
#slider-testimonials-txt{
  width: 100%;
}
#slider-testimonials-img{
  width: 100%;
}
.item-txt-testimonials{
  color: #fff;
  position: relative;
  padding-bottom: 50px;
}

.item-txt-testimonials::after {
  content: "";
  position: absolute;
  width: 41px;
  height: 41px;
  background-image: url(../images/comilla-1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 53px;
}
.item-txt-testimonials::before {
  content: "";
  position: absolute;
  width: 41px;
  height: 41px;
  background-image: url(../images/comilla-2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  bottom: 0;
}
.testimonial__person span{
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial__person {
  margin-bottom: 60px;
}
.item-img-testimonials{
  overflow: hidden;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  transition: var(--transition);
  transform: scale(1);
}
.item-img-testimonials.slick-current{
  transform: scale(1);
}
#slider-testimonials-txt{
  display:flex;
  align-items: center;
}
.btns-testimonios {
  position: absolute;
  top: -45px;
  right: 0;
}
.btns-testimonios button {
    background-color: transparent;
    border: none;
    padding: 0;
    line-height: 1;
}
.btns-testimonios button:hover,
.btns-testimonios button:focus{
    background-color: transparent;
}
.btns-testimonios img{
  width: 47px;
  height: 47px;
  object-fit: contain;
}
@media screen and (min-width: 580px) {
  .item-img-testimonials{
    transform: scale(0.7);
  }
}
@media screen and (min-width: 980px) {
  .testimonials__wrapper {
    flex-direction: row;
  }
  #slider-testimonials-txt{
    width: 50%;
  }
  #slider-testimonials-img{
    width: 50%;
  }
  .item-txt-testimonials{
    padding: 0 60px;
  }
  .testimonial__person{
    margin-bottom: 15px;  
  }
  .item-txt-testimonials::after {
    top: 35px;
  }
}
@media screen and (min-width: 1280px) {
}
