@keyframes encoger {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes encoger-rotar {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(0.8) rotate(70deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}
.fondo-animado {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-image: url("../../img/recursos/bg-fondo-section-probando.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}
@media (max-width: 1024px) {
  .fondo-animado {
    background-image: url("../../img/recursos/bg-fondo-section-probando-mobile.webp");
  }
}

.btn-circulo {
  padding: 8px 20px;
  background-color: #E22A82;
  border-radius: 20px;
  color: #fff;
  font-size: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 27px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 1;
}
.btn-circulo::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #F0CB01;
  transform: scale(0);
  transition: transform 0.5s;
  z-index: -1;
}
.btn-circulo:hover {
  box-shadow: 0 5px 20px 0 rgba(213, 181, 3, 0.5);
  color: #552D7A !important;
}
.btn-circulo:hover::before {
  transform: scale(1.2);
}
@media (max-width: 1024px) {
  .btn-circulo {
    font-size: 15px;
    line-height: 20px;
    padding: 8px 20px;
  }
}

.volver-inicio {
  color: #E22A82;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 100%;
}

* {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: #4D4D4D;
}

li {
  list-style: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: white;
}

.shadow {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3);
}
.shadow-1 {
  box-shadow: 0px 4.492px 4.492px 0px rgba(0, 0, 0, 0.1);
}

.w-100 {
  width: 100%;
}
.w-full {
  width: 100vw;
}
.wh-100 {
  width: 100%;
  height: 100%;
}
.wh-full {
  width: 100vw;
  height: calc(100vh - 140px);
}

.h-100 {
  height: 100%;
}
.h-full {
  height: calc(100vh - 140px);
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

.flex {
  display: flex;
}
.flex.col {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.around {
  justify-content: space-around;
}
.flex.between {
  justify-content: space-between;
}
.flex.evenly {
  justify-content: space-evenly;
}
.flex-1 {
  flex: 1;
}
.flex.wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.gap {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-5 {
  gap: 5rem;
}

.center {
  justify-content: center;
  align-items: center;
}
.center-x {
  justify-content: center;
}
.center-y {
  align-items: center;
}

.start {
  justify-content: flex-start;
  align-items: flex-start;
}
.start-x {
  justify-content: flex-start;
}
.start-y {
  align-items: flex-start;
}

.end {
  justify-content: flex-end;
  align-items: flex-end;
}
.end-x {
  justify-content: flex-end;
}
.end-y {
  align-items: flex-end;
}

body {
  background-color: #FCFBFF;
}

main {
  /* margin-top: var(--header-h, 0px); */
  overflow: hidden;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #552D7A;
  opacity: 0.3;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
#overlay.active {
  opacity: 0.5;
  z-index: 90;
}

.hidden {
  display: none;
}

.opacity-0 {
  opacity: 0;
  visibility: hidden;
}

.contenedor {
  width: 1550px;
  max-width: 95%;
  margin: 0 auto;
}

section {
  width: 100%;
  height: 85vh;
  min-height: 40rem;
  padding: 2rem 0;
}

.header {
  z-index: 999;
  background-color: #552D7A;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 2px 10px 0 rgba(56, 23, 86, 0.4);
}
.header .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}
.header .contenedor .header-icono-1,
.header .contenedor .header-icono-2,
.header .contenedor .header-icono-3 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.header .contenedor .header-icono-1 {
  left: 20%;
  top: -18px;
}
@media (max-width: 1024px) {
  .header .contenedor .header-icono-1 {
    left: 35%;
    transform: scale(0.5);
  }
}
.header .contenedor .header-icono-2 {
  left: 30%;
  bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .header .contenedor .header-icono-2 {
    left: 50%;
    transform: scale(0.5);
  }
}
.header .contenedor .header-icono-3 {
  left: 100%;
  top: -17px;
}
@media (max-width: 1024px) {
  .header .contenedor .header-icono-3 {
    left: 90%;
    transform: scale(0.5);
    top: -28px;
  }
}
.header .contenedor .header-menu-hamburguer {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header .contenedor .header-menu-hamburguer {
    display: block;
  }
}
.header .contenedor .header-menu-mobile::after {
  display: none;
}
@media (max-width: 768px) {
  .header .contenedor .header-menu-mobile::after {
    display: block;
  }
}
.header .contenedor .header-menu-mobile .circulo-mobile,
.header .contenedor .header-menu-mobile .circulo-mobile-2-amarillo,
.header .contenedor .header-menu-mobile .triangulo-mobile-azul {
  display: none;
}
@media (max-width: 768px) {
  .header .contenedor .header-menu-mobile .circulo-mobile,
  .header .contenedor .header-menu-mobile .circulo-mobile-2-amarillo,
  .header .contenedor .header-menu-mobile .triangulo-mobile-azul {
    display: block;
  }
}
.header .contenedor .header-menu-mobile .header-menu-mobile-close {
  display: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header .contenedor .header-menu-mobile .header-menu-mobile-close {
    display: block;
  }
}
@media (max-width: 1024px) {
  .header .contenedor .header-logo {
    max-width: 137px;
    max-height: 40px;
  }
  .header .contenedor .header-logo a {
    display: flex;
  }
  .header .contenedor .header-logo a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .header .contenedor .header-menu-mobile {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    height: 100dvh;
    background-color: #E22A82;
    overflow: hidden;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  }
  .header .contenedor .header-menu-mobile.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header .contenedor .header-menu-mobile.header-menu-mobile--franquicia {
    background-color: #F0CB01;
  }
  .header .contenedor .header-menu-mobile.header-menu-mobile--franquicia::before {
    background-color: #DEBB00;
  }
  .header .contenedor .header-menu-mobile.header-menu-mobile--franquicia::after {
    background-color: #DEBB00;
    filter: blur(315px);
  }
  .header .contenedor .header-menu-mobile.header-menu-mobile--franquicia .header-menu-mobile-close {
    z-index: 1;
  }
  .header .contenedor .header-menu-mobile.header-menu-mobile--franquicia .circulo-mobile-2-amarillo svg path {
    fill: #E22A82;
  }
  .header .contenedor .header-menu-mobile.header-menu-mobile--franquicia .header-menu .menu-list .menu-item a {
    color: #552D7A;
  }
  .header .contenedor .header-menu-mobile.header-menu-mobile--franquicia .header-menu .menu-list .menu-item a:hover {
    background-color: #E22A82;
    color: #fff;
  }
  .header .contenedor .header-menu-mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../img/recursos/fondo-mobile-hamburguesa.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .header .contenedor .header-menu-mobile::after {
    content: "";
    position: absolute;
    z-index: 0;
    background-color: #552D7A;
    width: 581px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    right: -200px;
    bottom: -208px;
    opacity: 0.8;
    filter: blur(254px);
    pointer-events: none;
  }
  .header .contenedor .header-menu-mobile .triangulo-mobile-azul {
    position: absolute;
    z-index: 0;
    bottom: 65px;
    left: -45px;
    animation: encoger-rotar 7s ease-in-out infinite;
    pointer-events: none;
  }
  .header .contenedor .header-menu-mobile .circulo-mobile {
    position: absolute;
    z-index: 0;
    top: 27px;
    left: -107px;
    background-color: #552D7A;
    width: 224px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    opacity: 0.8;
    filter: blur(154px);
    pointer-events: none;
  }
  .header .contenedor .header-menu-mobile .circulo-mobile-2-amarillo {
    position: absolute;
    z-index: 0;
    top: -25px;
    right: -75px;
    animation: encoger 7s ease-in-out infinite;
    pointer-events: none;
  }
  .header .contenedor .header-menu-mobile .header-menu-mobile-close {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    width: 53.84px;
    height: 53.84px;
  }
  .header .contenedor .header-menu-mobile .header-menu-mobile-close img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .header .contenedor .header-menu-mobile .header-menu {
    position: relative;
    z-index: 2;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list {
    flex-direction: column;
    gap: 35px;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item {
    text-align: center;
    background-color: transparent;
    color: #fff;
    padding: 10px 0;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item:hover {
    background-color: transparent;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item:hover a {
    color: #fff;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item.is-open .sub-menu {
    max-height: 60rem;
    padding: 10px 0;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item a {
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item a:hover {
    background-color: #552D7A;
    color: #F0CB01;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item.menu-item-has-children > a::after {
    content: "";
    width: 14px;
    height: 8px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14'%20height='8'%20viewBox='0%200%2014%208'%20fill='none'%3E%3Cpath%20d='M6.73066%204.01172C7.25622%203.51332%207.69598%203.09311%208.14646%202.68266C8.95089%201.94973%209.75532%201.21679%2010.5597%200.483851C11.2676%20-0.151361%2012.3295%20-0.151361%2013.0052%200.483851C13.6702%201.09952%2013.6702%202.04745%2012.973%202.68266C11.332%204.18763%209.69096%205.68282%208.0392%207.17801C7.25623%207.89141%206.25873%207.8914%205.48648%207.18778C3.83472%205.69259%202.18296%204.1974%200.541931%202.69243C-0.165966%202.04745%20-0.176691%201.08975%200.488303%200.464305C1.16402%20-0.161135%202.24732%20-0.161136%202.96594%200.503395C4.1994%201.64678%205.42213%202.79993%206.73066%204.01172Z'%20fill='white'/%3E%3C/svg%3E") no-repeat center/contain;
    mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14'%20height='8'%20viewBox='0%200%2014%208'%20fill='none'%3E%3Cpath%20d='M6.73066%204.01172C7.25622%203.51332%207.69598%203.09311%208.14646%202.68266C8.95089%201.94973%209.75532%201.21679%2010.5597%200.483851C11.2676%20-0.151361%2012.3295%20-0.151361%2013.0052%200.483851C13.6702%201.09952%2013.6702%202.04745%2012.973%202.68266C11.332%204.18763%209.69096%205.68282%208.0392%207.17801C7.25623%207.89141%206.25873%207.8914%205.48648%207.18778C3.83472%205.69259%202.18296%204.1974%200.541931%202.69243C-0.165966%202.04745%20-0.176691%201.08975%200.488303%200.464305C1.16402%20-0.161135%202.24732%20-0.161136%202.96594%200.503395C4.1994%201.64678%205.42213%202.79993%206.73066%204.01172Z'%20fill='white'/%3E%3C/svg%3E") no-repeat center/contain;
    transition: transform 0.3s ease;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item.menu-item-has-children.is-open > a {
    color: #F0CB01;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item.menu-item-has-children.is-open > a::after {
    transform: rotate(180deg);
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item .sub-menu {
    position: relative;
    top: 20px;
    left: 0;
    transform: none;
    background-color: transparent;
    box-shadow: none;
    gap: 15px;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item .sub-menu .menu-item {
    padding: 10px 0;
    text-align: center;
  }
  .header .contenedor .header-menu-mobile .header-menu .menu-list .menu-item .sub-menu .menu-item::before {
    display: none;
  }
}
.header .contenedor .header-menu .menu-list {
  display: flex;
  gap: 38px;
}
.header .contenedor .header-menu .menu-list .menu-item {
  padding: 10px 20px;
  position: relative;
  transition: background-color 0.3s ease;
  border-radius: 40px;
}
.header .contenedor .header-menu .menu-list .menu-item:hover {
  background-color: #F0CB01;
}
.header .contenedor .header-menu .menu-list .menu-item:hover a {
  color: #E22A82;
  font-weight: 700;
}
.header .contenedor .header-menu .menu-list .menu-item a {
  color: #fff;
  font-size: 22px;
  line-height: 23px;
  font-weight: 700;
}
.header .contenedor .header-menu .menu-list .menu-item .sub-menu {
  position: absolute;
  max-height: 0;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  display: flex;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 25px;
  background: #552D7A;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: auto;
  z-index: 1;
}
.header .contenedor .header-menu .menu-list .menu-item .sub-menu li {
  padding: 0 9px;
  width: 100%;
  text-align: left;
  min-width: 250px;
  position: relative;
}
.header .contenedor .header-menu .menu-list .menu-item .sub-menu li a {
  color: #fff;
}
.header .contenedor .header-menu .menu-list .menu-item .sub-menu li::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 29px;
  height: 29px;
  z-index: -1;
  aspect-ratio: 1/1;
  background-color: #E22A82;
  border-radius: 100px;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .contenedor .header-menu .menu-list .menu-item .sub-menu li:hover {
  background-color: transparent;
}
.header .contenedor .header-menu .menu-list .menu-item .sub-menu li:hover::before {
  opacity: 1;
  transform: translateX(100%);
}
@media (min-width: 1025px) {
  .header .contenedor .header-menu .menu-list .menu-item:hover .sub-menu {
    max-height: 60rem;
    padding: 30px 20px;
  }
}

.redes-lateral {
  position: fixed;
  right: 0;
  top: 20%;
  filter: drop-shadow(0 0.802px 8.025px rgba(0, 0, 0, 0.1));
  z-index: 9;
}
@media (max-width: 768px) {
  .redes-lateral {
    transition: right 0.4s ease;
  }
  .redes-lateral.redes-lateral--peek {
    right: -50px;
  }
  .redes-lateral.redes-lateral--expanded {
    right: 0;
  }
}
.redes-lateral .redes-lateral-list {
  clip-path: shape(from 24.59% 0%, curve to 0% 5.88% with 6.23% 0.34%/0.55% 4.06%, vline to 93.9%, curve to 26.23% 99.99% with 1.31% 99.11%/18.03% 100.13%, line to 81.97% 97.89%, curve to 100% 92.22% with 95.74% 97.05%/99.73% 93.76%, vline to 7.77%, curve to 81.97% 2.31% with 98.03% 3.91%/87.16% 2.52%, line to 24.59% 0%, close);
  background-color: #552D7A;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px 12px;
}
.redes-lateral .redes-lateral-list .red-link {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
}
.redes-lateral .redes-lateral-list .red-link::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #F0CB01;
  transform: scale(0);
  transition: transform 0.5s;
  z-index: 0;
}
.redes-lateral .redes-lateral-list .red-link .icono-1,
.redes-lateral .redes-lateral-list .red-link .icono-2 {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.redes-lateral .redes-lateral-list .red-link .icono-1 path,
.redes-lateral .redes-lateral-list .red-link .icono-2 path {
  fill: #fff;
}
.redes-lateral .redes-lateral-list .red-link .icono-2 {
  transform: translate(calc(-50% + 25px), -50%);
  opacity: 0;
}
.redes-lateral .redes-lateral-list .red-link .icono-2 path {
  fill: #552D7A;
}
.redes-lateral .redes-lateral-list .red-link:hover {
  border: 2px solid #F0CB01;
}
.redes-lateral .redes-lateral-list .red-link:hover::before {
  transform: scale(1.2);
}
.redes-lateral .redes-lateral-list .red-link:hover .icono-1 {
  transform: translate(calc(-50% - 25px), -50%);
  opacity: 0;
}
.redes-lateral .redes-lateral-list .red-link:hover .icono-2 {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.whatsapp-general {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 1000;
  background-color: #6CBF64;
  border-radius: 50%;
}
.whatsapp-general .whatsapp {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
}
.whatsapp-general .whatsapp img {
  width: 100%;
}

.footer {
  background: linear-gradient(180deg, #552D7A 0%, #32154E 100%);
  padding: 40px 0 40px 0;
  border-radius: 40px 40px 0 0;
}
.footer .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .contenedor .footer-general {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .contenedor .footer-general .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 31px;
}
.footer .contenedor .footer-general .footer-logo p {
  font-size: 18px;
  color: #fff;
  line-height: 23px;
  font-weight: 700;
}
.footer .contenedor .footer-general .footer-hr {
  max-width: 40rem;
  height: 1px;
  background-color: #F0CB01;
  width: 100%;
  border: none;
}
.footer .contenedor .footer-general .footer-menu {
  padding: 35px 0;
}
.footer .contenedor .footer-general .footer-menu .menu-list {
  display: flex;
  gap: 50px;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-general .footer-menu .menu-list {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
.footer .contenedor .footer-general .footer-menu .menu-list .menu-item {
  position: relative;
}
.footer .contenedor .footer-general .footer-menu .menu-list .menu-item a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-general .footer-menu .menu-list .menu-item a {
    justify-content: center;
    font-size: 16px;
    line-height: 21px;
  }
}
.footer .contenedor .footer-general .footer-menu .menu-list .menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 29px;
  height: 29px;
  z-index: 0;
  aspect-ratio: 1/1;
  background-color: #E22A82;
  border-radius: 100px;
  opacity: 0;
  transition: all 0.3s ease;
}
.footer .contenedor .footer-general .footer-menu .menu-list .menu-item:hover {
  background-color: transparent;
}
.footer .contenedor .footer-general .footer-menu .menu-list .menu-item:hover::before {
  opacity: 1;
  transform: translateX(60%);
}
.footer .contenedor .footer-general .footer-menu .menu-list .menu-item:hover a {
  font-weight: 700;
}
.footer .contenedor .footer-general .footer-menu .menu-list .libro-reclamaciones-item {
  position: relative;
}
.footer .contenedor .footer-general .footer-menu .menu-list .libro-reclamaciones-item::after {
  content: url("../img/default/libro-reclamaciones.webp");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.footer .contenedor .footer-general .footer-menu .menu-list .libro-reclamaciones-item a {
  padding-left: 48px;
}
.footer .contenedor .footer-franquicia {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia {
    flex-direction: column;
    gap: 50px;
  }
}
.footer .contenedor .footer-franquicia .logo-franquicia {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .logo-franquicia {
    align-items: center;
    width: 100%;
  }
}
.footer .contenedor .footer-franquicia .logo-franquicia .logo-franquicia-img {
  width: 306px;
  height: 90px;
  margin-bottom: 22px;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .logo-franquicia .logo-franquicia-img {
    width: 235px;
    height: 70px;
  }
}
.footer .contenedor .footer-franquicia .logo-franquicia .logo-franquicia-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.footer .contenedor .footer-franquicia .logo-franquicia p {
  font-size: 18px;
  line-height: 23px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.footer .contenedor .footer-franquicia .contenido-franquicia {
  flex: 1;
  max-width: 55.625rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .contenido-franquicia {
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
}
.footer .contenedor .footer-franquicia .contenido-franquicia .titulo-franquicia {
  font-size: 40px;
  line-height: 45px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .contenido-franquicia .titulo-franquicia {
    font-size: 27px;
    line-height: 32px;
    text-align: center;
  }
}
.footer .contenedor .footer-franquicia .contenido-franquicia .titulo-franquicia strong {
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  color: #F0CB01;
}
.footer .contenedor .footer-franquicia .contenido-franquicia .parrafo-franquicia {
  font-size: 20px;
  line-height: 25px;
  color: #fff;
  font-weight: 100;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .contenido-franquicia .parrafo-franquicia {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
  }
}
.footer .contenedor .footer-franquicia .contenido-franquicia .contenido-franquicia-botones {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .contenido-franquicia .contenido-franquicia-botones {
    flex-direction: column;
  }
}
.footer .contenedor .footer-franquicia .contenido-franquicia .contenido-franquicia-botones .home {
  background: transparent;
  border: 2px solid #E22A82;
}
.footer .contenedor .footer-franquicia .contenido-franquicia .redes-sociales--franquicia {
  margin: 35px 0 0;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .contenido-franquicia .redes-sociales--franquicia {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer .contenedor .footer-franquicia .contenido-franquicia .redes-sociales--franquicia p {
  margin-bottom: 0;
  order: 2;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .contenido-franquicia .redes-sociales--franquicia p {
    order: 1;
    margin-bottom: 15px;
  }
}
.footer .contenedor .footer-franquicia .contenido-franquicia .redes-sociales--franquicia .redes-sociales-list {
  order: 1;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .contenido-franquicia .redes-sociales--franquicia .redes-sociales-list {
    order: 2;
  }
}
.footer .contenedor .footer-franquicia .contenido-franquicia .marca {
  margin-top: 30px;
}
@media (max-width: 1024px) {
  .footer .contenedor .footer-franquicia .contenido-franquicia .marca {
    align-self: center;
  }
}
.footer .contenedor .redes-sociales {
  margin: 30px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.footer .contenedor .redes-sociales p {
  color: #fff;
  font-size: 18px;
  line-height: 23px;
  font-weight: 400;
  margin-bottom: 5px;
}
@media (max-width: 1024px) {
  .footer .contenedor .redes-sociales p {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 15px;
  }
}
.footer .contenedor .redes-sociales .redes-sociales-list {
  display: flex;
  gap: 24px;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link {
  position: relative;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #F0CB01;
  transform: scale(0);
  transition: transform 0.5s;
  z-index: 0;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link .icono-1,
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link .icono-2 {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link .icono-1 path,
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link .icono-2 path {
  fill: #fff;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link .icono-2 {
  transform: translate(calc(-50% + 25px), -50%);
  opacity: 0;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link .icono-2 path {
  fill: #552D7A;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link:hover {
  border: 2px solid #F0CB01;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link:hover::before {
  transform: scale(1.2);
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link:hover .icono-1 {
  transform: translate(calc(-50% - 25px), -50%);
  opacity: 0;
}
.footer .contenedor .redes-sociales .redes-sociales-list .redes-sociales-link:hover .icono-2 {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.footer .contenedor .marca p {
  color: #fff;
  font-size: 13px;
  line-height: 15px;
  font-weight: 400;
}
.footer .contenedor .marca p strong {
  font-weight: 700;
  color: #fff;
}/*# sourceMappingURL=main.css.map */