@charset "UTF-8";
/* Font  */
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Poppins;
  src: url("../font/Poppins-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Quicksand;
  src: url("../font/Quicksand-Medium.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Quicksand;
  src: url("../font/Quicksand-SemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 600;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: Quicksand;
  src: url("../font/Quicksand-Bold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 700;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
/* Variables de Sass */
@keyframes pulse2 {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Header  */
.menu .container {
  max-width: 1720px;
}

.menu {
  position: absolute;
  width: 100%;
  top: 0px;
  padding: 0px;
  background-image: url(../imagenes/fondoHeader.png) !important;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 160px;
  z-index: 99;
}
.menu img {
  width: 160px;
  margin: 0;
}
.menu nav.navbar.navbar-expand-lg.navbar-light.bg-light {
  background: transparent !important;
  border-radius: 0;
  padding: 2px 20px;
  height: 120px;
  align-items: flex-start;
  padding-top: 20px;
}
.menu .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.menu a.nav-link {
  padding: 20px 50px !important;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.8;
  color: var(--Blanco, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.menu a.nav-link:hover {
  opacity: 1;
}
.menu .btn {
  margin: 19px 18px !important;
  color: var(--Blanco, #fff);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px; /* 137.5% */
  text-transform: uppercase;
  border-radius: 5px;
  border: 1px solid var(--Beige, #e5dfd0);
}
.menu li.nav-item.logom a {
  padding: 0 23px !important;
}
.menu figure {
  margin: 0;
  padding: 10px;
}
.menu .logoH {
  transition: transform 0.3s ease;
  width: 180px;
}
.menu .logoH:hover {
  animation: heartBeat 0.5s forwards; /* Cambia "bounce" por cualquier otra animación */
}
.menu svg.bi.bi-arrow-right-short {
  width: 56px;
  font-size: 50px;
  height: 40px;
  color: #000;
  background: #6b2aa1;
  border-radius: 13px;
  margin: 0;
  margin-top: -6px;
  margin-left: 12px;
}
.menu .navbar-expand-lg .navbar-nav {
  flex-direction: row;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.menu button.btn {
  margin: 19px 8px 0;
  padding: 7px 25px;
}
.menu li.nav-item {
  position: relative;
}

button.navbar-toggler {
  border: none;
}

button.navbar-toggler img {
  max-width: 30px !important;
}

.btnheader {
  display: none;
}

.hiddenD {
  display: none;
}

@media screen and (max-width: 992px) {
  .menu img {
    padding: 0px 0;
    margin: 0;
    height: 25px;
  }
  .hiddenD {
    display: block;
  }
  .btnheader {
    display: block;
    margin: 12px auto;
  }
  .menu .navbar-nav {
    flex-direction: column !important;
    width: 100% !important;
    display: flex !important;
    text-align: center;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    padding: 20px;
  }
  li.nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 0;
    padding: 5px 0;
  }
  li.nav-item a {
    text-align: center;
  }
  .menu a.nav-link {
    margin: 3px 10px;
    padding: 10px !important;
    color: var(--Blanco, #555);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  li.nav-item.active:first-child {
    padding-top: 30px;
  }
  button.navbar-toggler {
    box-shadow: none;
  }
  .menu li a {
    text-decoration: none;
  }
  .menu li a button {
    width: 70%;
    margin: 0 auto;
    display: block;
    margin-top: 24px;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
  }
  div#navbarSupportedContent {
    background: #f2eddf;
    border: 1px solid #8a8a8a;
  }
  .logom {
    display: none;
  }
  .menu .logoH {
    transition: transform 0.3s ease;
    width: 150px;
  }
  .menu li.nav-item a {
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid;
    padding: 10px !important;
    border: navajowhite;
  }
  .menu button img {
    width: 100%;
    padding: 0px 0;
    margin-top: 0;
  }
  div#navbarSupportedContent {
    background: #fff;
    border: 0;
    border-radius: 1px;
  }
  .menu li.nav-item:after {
    display: none;
  }
  .menu {
    padding: 10px;
  }
  .menu .btn {
    margin: 0 auto !important;
  }
  .menu li.nav-item a.btnbr {
    padding: 8px 30px !important;
    color: #fff;
    font-family: Raleway;
    font-size: 16px;
    margin: 0 auto;
    display: block;
    width: -moz-max-content;
    width: max-content;
  }
  .menu .logoH {
    width: 150px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .menu {
    background-image: url(../imagenes/movil/bannermenu.png) !important;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 120px;
  }
  .menu img {
    max-width: 160px;
    padding: 0 10px;
  }
  .menu figure img {
    max-width: 200px;
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .menu figure.barras {
    margin: 0px;
    position: absolute;
    top: 7px;
    right: 10px;
  }
  .menu .logoH {
    transition: transform 0.3s ease;
    width: 120px;
  }
  nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    display: flex;
    flex-direction: row;
    align-content: center;
  }
  a.navbar-brand.hiddenl {
    margin-right: 0;
  }
  .menu nav.navbar.navbar-expand-lg.navbar-light.bg-light {
    padding: 2px 0;
  }
  .menu figure {
    margin: 0;
    padding: 10px;
    margin-top: -53px;
  }
  div#navbarSupportedContent {
    position: absolute;
    width: 100%;
    top: 60%;
    border: 1px solid #999999;
    border-radius: 10px;
  }
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  background-color: white;
}

a {
  text-decoration: none;
}

section {
  padding: 100px 15px;
}

img {
  max-width: 100%;
  width: 100%;
}

h1 {
  color: var(--Blanco, #fff);
  font-family: Quicksand;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 108.333% */
}

.banner p {
  color: var(--Blanco, #fff);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 130% */
}

h2 {
  color: var(--Violeta, #6b2aa1);
  font-family: Quicksand;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 108.333% */
}

h3 {
  color: var(--Rosa, #f5308f);
  text-align: center;
  font-family: Quicksand;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 52px; /* 130% */
}

h4 {
  color: var(--Violeta, #6b2aa1);
  font-family: Quicksand;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 125% */
}

p {
  color: var(--Negro, #000);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}

.btn,
.btnbr,
input.hs-button.primary.large {
  border-radius: 50px;
  background: var(--Rosa, #f5308f);
  padding: 14px 30px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 30px auto;
  border: 0;
  color: var(--Blanco, #fff);
  font-family: Quicksand;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 325% */
}
.btn:hover,
.btnbr:hover,
input.hs-button.primary.large:hover {
  background-color: #fff;
  color: var(--Violeta, #6b2aa1);
  opacity: 0.7;
}
.btn img,
.btnbr img,
input.hs-button.primary.large img {
  margin: 4px 0 4px 15px;
  width: 12px;
}

.hiddenD,
.hiddenl {
  display: none;
}

.hiddenS {
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.plumas figure {
  margin: 0;
}
.plumas figure img {
  position: relative;
  z-index: 0;
  margin-bottom: -140px;
}

.top figure {
  margin: 40px 0 0;
}
.top figure img {
  position: relative;
  z-index: 0;
  margin-bottom: -40px;
}

@media screen and (max-width: 992px) {
  .hiddenl {
    display: block;
  }
  .hiddenD {
    display: block;
  }
  .hiddenS {
    display: none;
  }
  h2 {
    font-size: 40px;
    line-height: 44px;
  }
  h2 br {
    display: none;
  }
  .plumas figure img {
    position: relative;
    z-index: 0;
    margin-bottom: -100px;
  }
}
@media screen and (max-width: 767px) {
  .hiddenD {
    display: block !important;
  }
  .hiddenM {
    display: none;
  }
  .hiddenS {
    display: block;
  }
  h1 {
    font-size: 32px;
    line-height: 36px;
  }
  h1 br {
    display: none;
  }
  h2 {
    font-size: 32px;
    line-height: 36px;
  }
  h2 br {
    display: none;
  }
  h3 {
    font-size: 32px;
    line-height: 36px;
  }
  .plumas figure {
    margin: 0;
  }
  .plumas figure img {
    position: relative;
    z-index: 0;
    margin-bottom: -150px;
  }
}
.banner {
  min-height: 1100px;
  position: relative;
  overflow: hidden;
  padding: 560px 0 0;
  text-align: left;
}
.banner .bg-video-desktop,
.banner .bg-video-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.banner .bg-video-desktop {
  display: block;
}
.banner .bg-video-mobile {
  display: none;
}
.banner .container-banner {
  position: relative;
  z-index: 2;
  max-width: 1720px;
}
.banner .row {
  display: block;
}
.banner p {
  display: block;
  margin: 20px auto 10px;
}

@media screen and (max-width: 1540px) {
  .banner {
    padding: 560px 15px 0;
  }
}
@media screen and (max-width: 992px) {
  .banner {
    padding: 500px 15px 0;
    min-height: 940px;
  }
  .banner p {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  section.banner {
    padding: 400px 15px 0;
    min-height: 900px;
  }
  section.banner .bg-video-desktop {
    display: none;
  }
  section.banner .bg-video-mobile {
    display: block;
  }
}
section.nosotros .container {
  max-width: 1450px;
}
section.nosotros .cont {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
section.nosotros h2 {
  text-align: left;
  max-width: 100%;
  margin-bottom: 50px;
}
section.nosotros p {
  max-width: 550px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  section.nosotros {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.nosotros h2 {
    text-align: left;
  }
  section.nosotros p {
    text-align: left;
    margin-bottom: 40px;
  }
}
section.beneficios {
  padding: 60px 0 40px;
}
section.beneficios .container {
  max-width: 1740px;
}
section.beneficios .container .row {
  --bs-gutter-x: 2.5rem;
}
section.beneficios h3 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--Rosa, #f5308f);
}
section.beneficios .cardbene {
  border-radius: 20px;
  background: var(--Crema, #f2efe9);
  padding: 40px;
  min-height: 540px;
  transition: all 0.3s ease;
  text-align: left;
}
section.beneficios .cardbene figure {
  margin: 0 0 120px;
  display: flex;
  justify-content: flex-end;
}
section.beneficios .cardbene img {
  width: 100px;
  height: auto;
  margin: 0;
}
section.beneficios .cardbene h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--Violeta, #6b2aa1);
  font-family: Quicksand;
  font-size: 24px;
  font-weight: 700;
}
section.beneficios .cardbene p {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  line-height: 24px;
}
section.beneficios .d-md-block {
  display: flex !important;
}

.galeriaMobil {
  display: none !important;
}

@media screen and (max-width: 1540px) {
  section.beneficios {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.beneficios .container .row {
    --bs-gutter-x: 1.5rem;
  }
}
@media screen and (max-width: 992px) {
  section.beneficios .cardbene {
    margin-bottom: 30px;
  }
  .d-md-block {
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  section.beneficios .d-md-block {
    display: none !important;
  }
  section.beneficios h2 {
    text-align: center;
    margin-bottom: 90px;
  }
  section.beneficios .swiper {
    padding-bottom: 70px;
  }
  section.beneficios span.swiper-pagination-bullet {
    border: 1px solid #6b2aa1 !important;
    width: 12px;
    height: 12px;
    background: transparent;
    opacity: 1;
    transition: linear 0.3s all;
  }
  section.beneficios span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    background: #6b2aa1;
    margin: -4px 2px;
  }
  section.beneficios .cardbene p {
    color: #777;
    font-size: 17px;
  }
  .d-md-block {
    display: none !important;
  }
  h4 br {
    display: none;
  }
  section.beneficios .cardbene figure {
    margin: 0 0 80px;
    display: flex;
    justify-content: flex-end;
  }
  section.beneficios .cardbene {
    padding: 30px;
    min-height: 500px;
  }
}
html body section.form {
  position: relative;
  z-index: 1;
  padding: 190px 0;
  background-image: url(../imagenes/FondoContacto.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
html body section.form .container {
  max-width: 1500px;
}
html body section.form .cont {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  align-items: center;
}
html body section.form h6 {
  text-align: center;
  color: #fff;
}
html body section.form h2 {
  margin-bottom: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: 40px;
}
html body section.form h2 b {
  font-weight: 700;
  font-size: 48px;
}
html body section.form p {
  max-width: 75%;
  color: #fff;
  text-align: center;
}
html body section.form input.hs-button.primary.large {
  margin: 0;
  display: block;
}
html body section.form form {
  max-width: 700px;
  margin: 0 auto;
}
html body section.form button,
html body section.form input,
html body section.form optgroup,
html body section.form select,
html body section.form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
  border-radius: 0;
  color: #fff;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
html body section.form button::-moz-placeholder, html body section.form input::-moz-placeholder, html body section.form optgroup::-moz-placeholder, html body section.form select::-moz-placeholder, html body section.form textarea::-moz-placeholder {
  color: #fff;
}
html body section.form button::placeholder,
html body section.form input::placeholder,
html body section.form optgroup::placeholder,
html body section.form select::placeholder,
html body section.form textarea::placeholder {
  color: #fff;
}
html body section.form .hs_lastname.hs-lastname.hs-fieldtype-text.field.hs-form-field input,
html body section.form .hs_firstname.hs-firstname.hs-fieldtype-text.field.hs-form-field input {
  width: 100%;
}
html body section.form fieldset {
  border: 0;
  padding: 0;
  margin: 0 auto !important;
  max-width: 700px !important;
}
html body section.form .form-columns-1 .hs-input {
  width: 100%;
}
html body section.form .actions {
  text-align: center;
}
html body section.form input.hs-button.primary.large {
  padding: 10px 70px;
  text-transform: uppercase;
  width: auto;
  min-width: unset;
  border: 0;
  border-radius: 50px;
  background: var(--Rosa, #f5308f);
  color: #fff;
  font-weight: 700;
  margin: 40px auto 0;
  cursor: pointer;
}
html body section.form input.hs-button.primary.large:hover {
  background: #fff;
  color: var(--Rosa, #f5308f);
}
html body section.form .hs_submit.hs-submit {
  max-width: 100%;
  margin: 28px auto 20px;
  text-align: center;
}

.hiddenF {
  display: none;
}

@media screen and (max-width: 1540px) {
  html body section.form {
    padding-left: 7%;
    padding-right: 7%;
  }
}
@media screen and (max-width: 992px) {
  html body section.form {
    padding: 200px 15px;
  }
  html body section.form h2 br {
    display: none;
  }
  html body section.form p {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  html body section.form {
    background-image: url(../imagenes/movil/FondoContacto.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 250px 15px;
    margin-top: -50px;
  }
  html body section.form h2 {
    font-size: 32px;
    line-height: 38px;
  }
  html body section.form h2 b {
    font-size: 32px;
    line-height: 38px;
  }
  html body section.form h2 {
    margin-bottom: 50px;
  }
  html body section.form form {
    margin-left: 0;
  }
}
section.datos {
  padding: 200px 0;
  position: relative;
  background: #fff;
  overflow: hidden;
}
section.datos::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 1000px;
  background-image: url("../imagenes/manchasNumerosIzq.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
section.datos::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 1000px;
  background-image: url("../imagenes/manchasNumerosDre.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  z-index: 0;
}
section.datos .container {
  position: relative;
  z-index: 1;
  max-width: 1450px;
}
section.datos .row {
  margin-bottom: 30px;
}
section.datos .card-img-container {
  width: 100%;
  height: 100%;
}
section.datos .card-img-container img {
  width: 100%;
  height: auto;
  display: block;
}
section.datos .card-datos {
  border-radius: 20px;
  border: 1px solid var(--Violeta, #6b2aa1);
  background: var(--Crema, #f2efe9);
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 330px;
}
section.datos .card-datos .header-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
section.datos .card-datos .header-card .number {
  color: var(--Rosa, #f5308f);
  font-family: Quicksand;
  font-size: 76px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
section.datos .card-datos .header-card h3 {
  color: var(--Violeta, #6b2aa1);
  font-family: Quicksand;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0;
  text-align: left;
}
section.datos .card-datos p {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
section.datos .card-datos p b {
  color: var(--Violeta, #6b2aa1);
  font-weight: 700;
}

@media screen and (max-width: 992px) {
  section.datos {
    padding: 50px 15px;
  }
  section.datos::before, section.datos::after {
    width: 150px;
    height: 300px;
    opacity: 0.5;
  }
  section.datos .card-datos {
    margin-bottom: 20px;
    padding: 30px;
  }
  section.datos::before,
  section.datos::after {
    width: 50%;
    height: 1450px;
    opacity: 0.5;
  }
  section.datos::after {
    background-position: bottom;
  }
}
.galeria {
  position: relative;
  padding: 50px 0 100px;
}
.galeria h3 {
  text-align: center;
  color: var(--Rosa, #f5308f);
  font-family: Quicksand;
  margin-bottom: 20px;
  line-height: 40px;
}
.galeria h6 {
  display: none;
}
.galeria .container {
  max-width: 1500px;
  position: relative;
}
.galeria .swiper {
  padding: 50px 0;
  overflow: visible;
}
.galeria .swiper .swiper-slide {
  opacity: 0.6;
}
.galeria .swiper .swiper-slide-active {
  opacity: 1;
}
.galeria .swiper-slide {
  transition: transform 0.3s;
  height: auto;
}
.galeria .swiper-slide figure {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}
.galeria .swiper-pagination {
  bottom: -12px !important;
}
.galeria .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  opacity: 1;
}
.galeria .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--Rosa, #f5308f);
}
.galeria .custom-nav-btns {
  position: absolute;
  bottom: 0;
  width: 260px;
  margin: 0 auto;
  display: block;
  left: 60px;
  right: 0;
}
.galeria .custom-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 100px;
  height: auto;
}
.galeria .custom-nav-btn img {
  width: 40px;
  height: auto;
}
.galeria .custom-nav-btn.swiper-button-prev-custom {
  left: -50px;
}
.galeria .custom-nav-btn.swiper-button-next-custom {
  right: -50px;
}
section.diferencial {
  padding: 100px 0;
  background-color: var(--Crema, #f2efe9);
  overflow: hidden;
}
section.diferencial .container {
  max-width: 1450px;
}
section.diferencial .cont {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
section.diferencial .row {
  align-items: center;
}
section.diferencial h2 {
  text-align: left;
  max-width: 100%;
  margin-bottom: 50px;
}
section.diferencial p {
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: left;
  max-width: 550px;
}
section.diferencial p b {
  font-weight: 700;
}
section.diferencial .img-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.diferencial .img-container img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 992px) {
  section.diferencial {
    padding: 100px 15px;
  }
  section.diferencial img {
    max-width: 100%;
    margin-top: 50px;
  }
}

.video {
  background-color: var(--Crema, #f2efe9);
  padding-top: 150px;
  padding-bottom: 200px;
}
.video h3 {
  text-align: center;
  margin-bottom: 50px;
}
.video .contVideo {
  width: 100%;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.video .contVideo iframe {
  width: 100%;
  height: 680px;
  border-radius: 20px !important;
}

@media screen and (max-width: 992px) {
  .video .contVideo iframe {
    width: 100%;
    height: 430px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .video {
    padding: 100px 10px;
  }
  .video .contVideo {
    width: 100%;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }
  .video .contVideo iframe {
    padding: 0;
    width: 100%;
    height: 300px;
  }
}
section.pasos {
  padding: 100px 0 300px;
  margin-bottom: -60px;
  background-color: var(--Crema, #f2efe9);
  background-image: url(../imagenes/FondoPasos.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
section.pasos .plumas-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  z-index: 0;
  pointer-events: none;
}
section.pasos .plumas-bg img {
  width: 100%;
  height: auto;
}
section.pasos .container {
  max-width: 1450px;
  position: relative;
  z-index: 1;
}
section.pasos .main-title-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.pasos .main-title-col h3 {
  font-family: Quicksand;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--Rosa, #f5308f);
  text-align: left;
}
section.pasos .main-title-col h3 span {
  color: var(--Violeta, #6b2aa1);
  display: block;
}
section.pasos .steps-grid-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  section.pasos .steps-grid-col {
    grid-template-columns: 1fr;
  }
}
section.pasos .step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 180px;
}
section.pasos .step-item .icon {
  flex-shrink: 0;
  width: 60px;
}
section.pasos .step-item .icon img {
  width: 100%;
  height: auto;
  display: block;
}
section.pasos .step-item .content h4 {
  font-family: Quicksand;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}
section.pasos .step-item .content p {
  font-family: Poppins;
  color: #000;
  line-height: normal;
  margin: 0;
}
section.pasos .step-item:nth-child(1) h4 {
  color: var(--Rosa, #f5308f);
}
section.pasos .step-item:nth-child(2) h4 {
  color: var(--Violeta, #c833d2);
}
section.pasos .step-item:nth-child(3) h4 {
  color: #ff8a00;
}
section.pasos .step-item:nth-child(4) h4 {
  color: #5cd5b2;
}
section.pasos .step-item:nth-child(5) h4 {
  color: #323086;
}
section.pasos .step-item:nth-child(6) h4 {
  color: var(--Violeta, #6b2aa1);
}
@media screen and (max-width: 1540px) {
  section.pasos {
    margin-bottom: -80px;
  }
}
@media screen and (max-width: 992px) {
  section.pasos {
    padding: 100px 15px;
    background-size: contain;
    margin-bottom: -80px;
  }
  section.pasos .main-title-col {
    margin-bottom: 40px;
    text-align: center;
  }
  section.pasos .main-title-col h2 {
    font-size: 32px;
  }
  section.pasos .plumas-bg {
    width: 150px;
  }
}

@media screen and (max-width: 767px) {
  section.pasos {
    background-image: url(../imagenes/movil/pasos.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 100px 15px 200px;
  }
  section.pasos .main-title-col h3 {
    font-size: 32px;
    line-height: 38px;
  }
}
footer.main-footer {
  position: relative;
  background-image: url("../imagenes/FondoFooter.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0 30px;
  text-align: center;
  color: #fff;
}
footer.main-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer.main-footer .footer-logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 40px;
  display: block;
}
footer.main-footer h2 {
  font-family: Quicksand;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
  margin-bottom: 30px;
}
footer.main-footer h2 b,
footer.main-footer h2 strong {
  font-weight: 700;
  display: block;
  margin-top: 5px;
  font-size: 48px;
  text-transform: uppercase;
}
footer.main-footer p {
  font-family: Poppins;
  font-size: 16px;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: normal;
}
footer.main-footer .btn-footer {
  background-color: var(--Rosa, #f5308f);
  color: #fff;
  border-radius: 50px;
  padding: 12px 30px;
  font-family: Quicksand;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: transform 0.2s ease;
  display: inline-block;
  margin-bottom: 80px;
}
footer.main-footer .btn-footer:hover {
  transform: scale(1.05);
  background-color: #e70b75;
}
footer.main-footer .copyright {
  margin-top: auto;
  font-family: Poppins;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}
footer.main-footer .copyright b {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  footer.main-footer {
    background-image: url(../imagenes/movil/footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 15px 20px;
    margin-top: -60px;
    position: relative;
    top: -20px;
  }
  footer.main-footer .footer-logo {
    max-width: 180px;
    margin-bottom: 30px;
  }
  footer.main-footer h2 {
    font-size: 28px;
  }
  footer.main-footer h2 b {
    font-size: 28px;
  }
  footer.main-footer p {
    font-size: 16px;
    padding: 0 20px;
  }
}/*# sourceMappingURL=styles.css.map */