/*------------------------------------*\
  #Fonts
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Modak&display=swap");
/*------------------------------------*\
  #Colors
\*------------------------------------*/
/*------------------------------------*\
  #Elements
\*------------------------------------*/
body,
html {
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  padding: 1rem;
}
main section {
  max-width: 1300px;
}

@media (min-width: 751px) and (max-width: 1024px) {
  main {
    width: 100%;
  }
  main section {
    max-width: 800px;
  }
}
@media (min-width: 601px) and (max-width: 750px) {
  main {
    width: 100%;
  }
  main section {
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  main {
    width: 100%;
    padding: 0.5rem;
  }
  main section {
    max-width: 400px;
  }
}
/*------------------------------------*\
  #User Experience
\*------------------------------------*/
/* Ocultar barras de desplazamiento en ejes X - Y */
body,
html {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE y Edge */
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari y Opera */
}

/*------------------------------------*\
  #GLOBAL
\*------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #EFEFEF;
  color: #332233;
  font-family: "Baloo 2", cursive;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CONTENEDOR GLOBAL */
section,
.footer,
.header__container {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
}

/*------------------------------------*\
  #HEADER
\*------------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 1.2rem 2rem;
  transition: 0.35s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
}
.header__container {
  width: 100%;
  max-width: 1300px;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header {
  /* LOGO */
}
.header__logo img {
  width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header {
  /* NAV */
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header__nav a {
  text-decoration: none;
  color: #332233;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}
.header__nav a:hover {
  color: #550D68;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 3px;
  border-radius: 999px;
  background: #7570B3;
  transition: 0.3s ease;
}
.header__nav a:hover::after {
  width: 100%;
}

/*------------------------------------*\
  #HERO
\*------------------------------------*/
.transmitir {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-inline: clamp(1rem, 4vw, 5rem);
  gap: 1rem;
  overflow: hidden;
  margin-top: 50px;
  /* LEFT */
}
.transmitir__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.transmitir h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 700;
  max-width: 750px;
}
.transmitir h1 span {
  color: #7570B3;
  position: relative;
}
.transmitir p {
  margin-bottom: 2.5rem;
  font-size: 1.35rem;
  line-height: 1.2;
  max-width: 620px;
  color: #332233;
}
.transmitir {
  /* FEATURES */
}
.transmitir__features {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 2rem;
}
.transmitir {
  /* CTA */
}
.transmitir__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #7570B3;
  color: #550D68;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s ease;
}
.transmitir__cta:hover {
  transform: translateY(-3px);
  background: #550D68;
  color: #EFEFEF;
}
.transmitir {
  /* IMAGE */
}
.transmitir__image {
  width: 100%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.transmitir__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3rem;
}

/*------------------------------------*\
  #FEATURE CARD
\*------------------------------------*/
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.feature__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(226, 169, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}
.feature__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature:hover .feature__icon {
  transform: translateY(-4px) scale(1.05);
  background: rgba(217, 146, 235, 0.35);
}
.feature span {
  font-size: 20px;
  font-weight: 600;
  color: #332233;
}

/*------------------------------------*\
  #SECTIONS
\*------------------------------------*/
section {
  width: 100%;
  padding-inline: clamp(1rem, 4vw, 5rem);
}

/*------------------------------------*\
  #CREAR
\*------------------------------------*/
.crear {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding-inline: clamp(1rem, 4vw, 5rem);
  overflow: hidden;
  /* LEFT */
}
.crear__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
}
.crear__tag {
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(217, 146, 235, 0.2);
  color: #550D68;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.crear h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.1;
  color: #332233;
  max-width: 700px;
  font-weight: 600;
}
.crear h2 span {
  color: #7570B3;
  font-weight: 800;
}
.crear__text {
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 550px;
  text-align: justify;
  color: #332233;
}
.crear__highlight {
  width: -moz-fit-content;
  width: fit-content;
  background: #FDEAEB;
  padding: 1.4rem 1.8rem;
  border-radius: 1.5rem;
  border-left: 6px solid #FDEAEB;
}
.crear__highlight p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 400;
  color: #332233;
}
.crear__highlight p span {
  font-weight: 800;
}
.crear {
  /* RIGHT */
}
.crear__carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.crear__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: -moz-max-content;
  width: max-content;
  animation: carouselMove 18s linear infinite;
}
.crear__card {
  width: 280px;
  height: 620px;
  flex-shrink: 0;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  cursor: pointer;
}
.crear__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.crear__card:hover {
  transform: scale(1.05);
}
.crear__card:hover img {
  transform: scale(1.08);
}

/*------------------------------------*\
  #CAROUSEL ANIMATION
\*------------------------------------*/
@keyframes carouselMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-840px - 6rem));
  }
}
/*------------------------------------*\
  #EMPEZAR
\*------------------------------------*/
.empezar {
  width: 100vw;
  background: #FDEAEB;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 4rem;
  padding-inline: clamp(1rem, 4vw, 5rem);
  overflow: hidden;
  /* LEFT */
}
.empezar__content {
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.empezar__tag {
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(217, 146, 235, 0.2);
  color: #550D68;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.empezar h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.1;
  color: #332233;
  max-width: 450px;
  text-align: justify;
}
.empezar p {
  margin-top: 2rem;
  font-size: 22px;
  line-height: 1.8;
  text-align: justify;
  color: #332233;
}
.empezar {
  /* RIGHT */
}
.empezar__image {
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 3rem;
  position: relative;
}
.empezar__image img {
  width: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  border-radius: 3rem;
  transition: 0.5s ease;
}
.empezar__image:hover img {
  transform: scale(1.03);
}

/*------------------------------------*\
  #MONETIZAR
\*------------------------------------*/
.monetizar {
  width: 100%;
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
  overflow: hidden;
  margin-top: 30px;
  padding-inline: clamp(1rem, 4vw, 5rem);
  gap: 2rem;
  min-height: auto;
  /* LEFT */
}
.monetizar__content {
  padding: 1rem 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.monetizar {
  /* HEADING */
}
.monetizar__heading {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.monetizar__heading h2 {
  margin: 1rem 0 0 0;
  text-align: center;
  font-size: 45px;
  line-height: 1.05;
  color: #332233;
}
.monetizar {
  /* CARDS */
}
.monetizar__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.monetizar {
  /* RIGHT */
}
.monetizar__image {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  align-self: center;
}
.monetizar__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
  border-radius: 20px;
}

/*------------------------------------*\
  #BENEFIT CARD
\*------------------------------------*/
.benefit-card {
  background: #FDEAEB;
  border-radius: 1.6rem;
  padding-inline: clamp(1rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: 0.35s ease;
  cursor: pointer;
  min-height: 230px;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(85, 13, 104, 0.08);
}
.benefit-card {
  /* ICON */
}
.benefit-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.benefit-card {
  /* CONTENT */
}
.benefit-card__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.benefit-card__info h3 {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #332233;
}
.benefit-card__info p {
  margin-top: auto;
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
  color: #332233;
}

/*------------------------------------*\
  #ACOMPANAMIENTO
\*------------------------------------*/
.acompanamiento {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1.5rem clamp(1rem, 4vw, 5rem) 3rem;
  align-items: stretch;
}

/*------------------------------------*\
  #CARD
\*------------------------------------*/
.acompanamiento-card {
  border-radius: 1.8rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 350px;
  overflow: hidden;
  /* LEFT */
}
.acompanamiento-card--money {
  background: #FDEAEB;
}
.acompanamiento-card {
  /* RIGHT */
}
.acompanamiento-card--support {
  background: #E2A9F1;
}
.acompanamiento-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.05;
  color: #332233;
}
.acompanamiento-card p {
  margin-top: 1rem;
  font-size: 18px;
  line-height: 1.55;
  color: #332233;
}
.acompanamiento-card__highlight {
  font-weight: 700;
  font-size: 16px;
}
.acompanamiento-card {
  /* RIGHT */
}
.acompanamiento-card--support {
  background: #E2A9F1;
  display: grid;
  grid-template-columns: 60% 40%;
  padding: 0;
  overflow: hidden;
}
.acompanamiento-card {
  /* CONTENT */
}
.acompanamiento-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.acompanamiento-card {
  /* IMAGE */
}
.acompanamiento-card__image {
  width: 90%;
  height: 100%;
  overflow: hidden;
}
.acompanamiento-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------------*\
  #MONEY ICONS
\*------------------------------------*/
.money-icons {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.money-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.money-icons__item img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.money-icons__item span {
  font-size: 16px;
  font-weight: 600;
  color: #332233;
}

/*------------------------------------*\
  #SUPPORT LIST
\*------------------------------------*/
.support-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.support-list__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.22);
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  backdrop-filter: blur(10px);
}
.support-list__item img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.support-list__item span {
  font-size: 16px;
  font-weight: 600;
  color: #332233;
}

/*------------------------------------*\
  #HISTORIA
\*------------------------------------*/
.historia {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-inline: clamp(1rem, 4vw, 5rem);
  align-items: stretch;
}

/*------------------------------------*\
  #CARD
\*------------------------------------*/
.historia-card {
  border-radius: 2rem;
  overflow: hidden;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.35s ease;
  /* LEFT */
}
.historia-card--quote {
  background: #FDEAEB;
  padding: 1.5rem;
}
.historia-card__quote {
  font-size: 5rem;
  line-height: 1;
  color: #550D68;
  font-weight: 700;
}
.historia-card__text {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: justify;
  color: #332233;
}
.historia-card__stars {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.historia-card__stars img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.historia-card {
  /* CENTER */
}
.historia-card--image {
  padding: 1.5rem;
}
.historia-card--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.historia-card--image:hover img {
  transform: scale(1.04);
}
.historia-card {
  /* RIGHT */
}
.historia-card--list {
  background: #E2A9F1;
  padding: 1.5rem;
}
.historia-card--list h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.15;
  text-align: center;
  color: #332233;
}

/*------------------------------------*\
  #LIST
\*------------------------------------*/
.historia-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.historia-list__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.35);
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}
.historia-list__item:hover {
  transform: translateX(6px);
}
.historia-list__item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #332233;
}
.historia-list__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.historia-list__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------*\
  #FOOTER
\*------------------------------------*/
.footer {
  width: 100%;
  display: grid;
  grid-template-columns: 20% 50% 20%;
  align-items: center;
  gap: 1rem;
  padding-inline: clamp(1rem, 4vw, 5rem);
  padding-top: 50px;
  padding-bottom: 30px;
  overflow: hidden;
  background: #550D68;
  position: relative;
  color: white;
  /* IMAGES */
}
.footer__image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.footer__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.footer__image:hover img {
  transform: scale(1.05);
}
.footer__image {
  /* LEFT */
}
.footer__image--left img {
  border-radius: 2rem;
}
.footer__image {
  /* RIGHT */
}
.footer__image--right {
  width: 85%;
  height: 400px;
  justify-self: center;
  transform: rotate(6deg);
}
.footer__image--right img {
  border-radius: 2rem;
}
.footer {
  /* CENTER */
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.footer h2 {
  margin: 0;
  font-size: 60px;
  line-height: 1.05;
}
.footer p {
  margin-top: 2rem;
  font-size: 1.2rem;
}
.footer {
  /* CTA */
}
.footer__cta {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #7570B3;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition: 0.35s ease;
}
.footer__cta:hover {
  transform: translateY(-4px);
  background: #E2A9F1;
  color: #332233;
}

/*------------------------------------*\
  #FLOAT SOCIAL
\*------------------------------------*/
.social-float {
  position: fixed;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.social-float__item {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s ease;
  text-decoration: none;
}
.social-float__item img {
  width: 35px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
}
.social-float__item:hover {
  transform: scale(1.1);
  background: rgba(217, 146, 235, 0.18);
}

/*------------------------------------*\
  #FOOTER SOCIALS
\*------------------------------------*/
.footer__socials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.footer__socials a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}
.footer__socials a img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__socials a:hover {
  transform: translateY(-4px);
  background: rgba(217, 146, 235, 0.25);
}

/*------------------------------------*\
    #Copyright Section
\*------------------------------------*/
.copyright {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #C4C4C4;
  text-align: center;
  background: #550D68;
}
.copyright a {
  color: #009E66;
  -webkit-text-emphasis: none;
          text-emphasis: none;
  text-decoration: none;
}

/*------------------------------------*\
  #RESPONSIVE
\*------------------------------------*/
@media (min-width: 1600px) {
  .transmitir,
  .crear,
  .empezar,
  .monetizar,
  .historia,
  .footer {
    max-width: 1800px;
    margin-inline: auto;
  }
  .transmitir h1 {
    font-size: 6rem;
  }
  .transmitir p {
    font-size: 1.5rem;
  }
  .crear__card {
    width: 320px;
    height: 700px;
  }
  .footer h2 {
    font-size: 5rem;
  }
}
@media (max-width: 1400px) {
  .header__container {
    gap: 2rem;
  }
  .header__logo img {
    width: 120px;
  }
  .header__nav a {
    font-size: 18px;
  }
  .transmitir h1 {
    font-size: 4.5rem;
  }
  .crear {
    padding: 2rem 3rem;
  }
  .crear__card {
    width: 240px;
    height: 520px;
  }
  .monetizar {
    padding: 10px 40px;
  }
  .monetizar__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1199px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  .transmitir,
  .crear,
  .empezar,
  .monetizar,
  .historia,
  .footer,
  .acompanamiento {
    width: 100%;
    padding-inline: 2rem;
    overflow-x: hidden;
  }
  .header {
    padding-inline: 2rem;
  }
  .header__container {
    width: 100%;
    justify-content: space-between;
  }
  .header__nav {
    gap: 1.5rem;
  }
  .header__nav a {
    font-size: 16px;
  }
  .transmitir {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
  }
  .transmitir__content {
    align-items: center;
    text-align: center;
  }
  .transmitir h1 {
    max-width: 900px;
  }
  .transmitir p {
    max-width: 800px;
  }
  .transmitir__features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .transmitir__image {
    width: 100%;
    height: auto;
  }
  .transmitir__image img {
    width: 100%;
    max-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .crear {
    gap: 2rem;
  }
  .crear__content {
    align-items: center;
    text-align: center;
  }
  .crear h2, .crear__text {
    max-width: 800px;
  }
  .crear__highlight {
    text-align: center;
  }
  .crear__carousel {
    width: 100%;
    overflow: hidden;
  }
  .crear__track {
    width: -moz-max-content;
    width: max-content;
  }
  .crear__card {
    width: 220px;
    height: 480px;
  }
  .empezar {
    gap: 2rem;
  }
  .empezar__content {
    align-items: center;
    text-align: center;
  }
  .empezar h2,
  .empezar p {
    max-width: 800px;
  }
  .empezar__image {
    width: 100%;
  }
  .empezar__image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .monetizar {
    gap: 2rem;
  }
  .monetizar__content {
    padding: 1rem 0;
  }
  .monetizar__heading h2 {
    text-align: center;
  }
  .monetizar__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .monetizar__image {
    width: 100%;
    height: 600px;
  }
  .monetizar__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .historia {
    gap: 0.5rem;
  }
  .historia-card {
    height: auto;
    max-height: 480px;
    min-width: 0;
  }
  .historia-card__text {
    word-break: break-word;
  }
  .acompanamiento {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .acompanamiento-card {
    min-width: 0;
  }
  .acompanamiento-card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer {
    gap: 2rem;
    text-align: center;
  }
  .footer__image {
    width: 100%;
  }
  .footer__image--right {
    width: 60%;
    margin-inline: auto;
    transform: rotate(4deg);
  }
}
@media (max-width: 991px) {
  .header {
    padding: 1rem;
  }
  .header__container {
    flex-direction: column;
    gap: 1rem;
  }
  .header__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .header__nav a {
    font-size: 16px;
  }
  .transmitir h1 {
    font-size: 3.5rem;
  }
  .transmitir p {
    font-size: 1.1rem;
  }
  .crear h2 {
    font-size: 3rem;
  }
  .crear__text {
    font-size: 1.1rem;
  }
  .crear__card {
    width: 220px;
    height: 450px;
  }
  .empezar h2 {
    font-size: 3rem;
  }
  .empezar p {
    font-size: 1.1rem;
  }
  .monetizar__heading h2 {
    font-size: 2.8rem;
  }
  .acompanamiento {
    grid-template-columns: 1fr;
  }
  .acompanamiento-card {
    min-height: auto;
  }
  .historia-card__text {
    font-size: 1.2rem;
  }
  .historia-card--list h2 {
    font-size: 2rem;
  }
  .footer h2 {
    font-size: 3rem;
  }
  .footer p {
    font-size: 1.05rem;
  }
}
@media (max-width: 767px) {
  .transmitir,
  .crear,
  .empezar,
  .monetizar,
  .historia,
  .footer {
    padding-inline: 1rem;
  }
  .transmitir {
    padding-top: 8rem;
  }
  .transmitir h1 {
    font-size: 2.7rem;
  }
  .transmitir__features {
    gap: 1rem;
  }
  .transmitir__cta {
    width: 100%;
  }
  .feature span {
    font-size: 20px;
  }
  .feature__icon {
    width: 80px;
    height: 80px;
  }
  .crear h2 {
    font-size: 2.3rem;
  }
  .crear__card {
    width: 180px;
    height: 340px;
  }
  .empezar h2 {
    font-size: 2.3rem;
  }
  .empezar p {
    font-size: 1rem;
  }
  .monetizar__heading h2 {
    font-size: 2.3rem;
  }
  .monetizar__image {
    height: 320px;
  }
  .benefit-card {
    min-height: auto;
  }
  .acompanamiento-card {
    padding: 1.2rem;
  }
  .acompanamiento-card h2 {
    font-size: 1.9rem;
  }
  .money-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
  .historia-card {
    min-height: auto;
  }
  .historia-card__text {
    font-size: 1rem;
  }
  .historia-card--list h2 {
    font-size: 1.6rem;
  }
  .footer h2 {
    font-size: 2.3rem;
  }
  .footer__image--right {
    width: 80%;
  }
  .copyright {
    width: 100%;
    font-size: 24px;
    text-align: center;
  }
  .copyright a {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  .transmitir,
  .crear,
  .empezar,
  .monetizar,
  .acompanamiento,
  .historia,
  .footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr !important;
    padding-inline: 1rem;
    gap: 1rem;
    overflow-x: hidden;
  }
  .header {
    padding-inline: 1rem;
  }
  .header__container {
    flex-direction: column;
    gap: 1rem;
  }
  .header__logo img {
    width: 110px;
  }
  .header__nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  .header__nav a {
    font-size: 14px;
    text-align: center;
  }
  .transmitir {
    padding-top: 5rem;
    text-align: center;
  }
  .transmitir__content {
    align-items: center;
  }
  .transmitir h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  .transmitir p {
    font-size: 0.95rem;
  }
  .transmitir__features {
    flex-direction: column;
    gap: 1rem;
  }
  .transmitir__image img {
    max-height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .transmitir__cta {
    width: 100%;
  }
  .crear {
    text-align: center;
  }
  .crear__content {
    align-items: center;
  }
  .crear h2 {
    font-size: 2rem;
    line-height: 1.1;
  }
  .crear__text, .crear__highlight p {
    font-size: 0.95rem;
  }
  .crear__carousel {
    width: 100%;
    overflow: hidden;
  }
  .crear__track {
    gap: 0.8rem;
  }
  .crear__card {
    width: 160px;
    height: 300px;
  }
  .empezar {
    text-align: center;
  }
  .empezar__content {
    align-items: center;
  }
  .empezar h2 {
    font-size: 2rem;
  }
  .empezar p {
    font-size: 0.95rem;
  }
  .empezar__image img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .monetizar__content {
    padding: 0;
  }
  .monetizar__heading h2 {
    font-size: 2rem;
    text-align: center;
  }
  .monetizar__cards {
    grid-template-columns: 1fr !important;
  }
  .monetizar__image {
    height: 260px;
  }
  .benefit-card {
    min-height: auto;
    padding: 1rem;
  }
  .benefit-card__icon {
    width: 80px;
    height: 80px;
  }
  .benefit-card__info h3 {
    font-size: 1.3rem;
  }
  .benefit-card__info p {
    font-size: 1rem;
  }
  .acompanamiento-card {
    min-height: auto;
  }
  .acompanamiento-card h2 {
    font-size: 1.6rem;
  }
  .acompanamiento-card p {
    font-size: 1rem;
    text-align: justify;
  }
  .acompanamiento-card--support {
    grid-template-columns: 1fr !important;
  }
  .acompanamiento-card__content {
    padding: 1.2rem;
  }
  .acompanamiento-card__image {
    height: 220px;
  }
  .money-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .money-icons__item img {
    width: 50px;
    height: 50px;
  }
  .money-icons__item span {
    font-size: 0.7rem;
  }
  .support-list__item span {
    font-size: 0.82rem;
  }
  .historia {
    gap: 1rem;
  }
  .historia-card {
    height: auto;
    min-height: auto;
    max-height: none;
    padding: 1.2rem !important;
  }
  .historia-card__quote {
    font-size: 3rem;
  }
  .historia-card__text {
    font-size: 0.95rem;
  }
  .historia-card--image {
    padding: 0 !important;
  }
  .historia-card--image img {
    height: 260px;
  }
  .historia-card--list h2 {
    font-size: 1.5rem;
  }
  .historia-list {
    gap: 0.7rem;
  }
  .historia-list__item {
    padding: 0.8rem;
  }
  .historia-list__item span {
    font-size: 0.9rem;
  }
  .footer {
    text-align: center;
  }
  .footer__content {
    align-items: center;
  }
  .footer__cta {
    width: 100%;
    font-size: 0.95rem;
  }
  .footer__image {
    height: 300px;
  }
  .footer__image--left, .footer__image--right {
    width: 70%;
    transform: none;
  }
  .footer__socials {
    gap: 0.7rem;
    justify-content: center;
  }
  .footer__socials a {
    width: 60px;
    height: 60px;
  }
  .footer__socials a img {
    width: 40px;
    height: 40px;
  }
  .social-float {
    display: none;
  }
  .copyright {
    width: 100%;
    font-size: 20px;
    margin-top: 0rem;
    text-align: center;
  }
  .copyright a {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .transmitir h1 {
    font-size: 1.9rem;
  }
  .header__nav {
    gap: 0.5rem;
  }
  .header__nav a {
    font-size: 13px;
  }
  .crear,
  .empezar,
  .monetizar,
  .historia,
  .footer {
    padding-inline: 0.7rem;
  }
}/*# sourceMappingURL=index.css.map */