:root {
  --font-default: Montserrat, sans-serif;
  --font-primary: Montserrat, sans-serif;
  --font-secondary: Montserrat, sans-serif;
}

:root {
  --color-default: #2c2c2e;
  --color-whatsapp: #0cb940;
  --color-primary: #5096da;
  --color-secondary: #060606;
  --gradient: linear-gradient(45deg, #000000, #5096da);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-primary);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-primary);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Imgs
--------------------------------------------------------------*/
.img-logo {
  margin: 0 auto;
  width: 198px;
  height: auto;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .img-logo {
    width: 247px;
    height: auto;
    margin: 0 auto;
    border-radius: 0px;
    padding: 5px;
  }
}

@media screen and (max-width: 480px) {
  .img-logo {
    margin: 0 auto;
    width: 198px;
    height: auto;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
  }
}

#img-mockup-1 {
  border-radius: 10px
}

#img-mockup-2 {
  border-radius: 10px
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, black, transparent), url(../img/banner.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 0;
  display: flex;
  align-items: center;
  text-align: center;
}

#hero .container {
  /* padding: 25px; */
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: normal;
  color: #fff;
}

#hero h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}

#hero h3 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
}

#hero p {
  color: white;
  line-height: normal;
  font-size: 1.2rem;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media screen and (max-width: 768px) {
  #hero {
    height: auto;
    padding: 50px 20px;
  }

  #hero h1 {
    font-size: 2.2rem;
  }

  #hero h2 {
    font-size: 1.2rem;
  }

  #hero h3 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  #hero {
    padding: 40px 15px;
  }

  #hero h1 {
    font-size: 1.8rem;
  }

  #hero h2 {
    font-size: 1rem;
  }

  #hero h3 {
    font-size: 0.9rem;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Btn Get Ebook
--------------------------------------------------------------*/
.btn-get-whatsapp {
  font-weight: 500;
  font-size: 20px;
  margin: 0 auto;
  color: #fff;
  background: var(--color-whatsapp);
  padding: 10px 30px 10px 30px;
  border-radius: 13px;
  border: 0px;
  font-weight: 600;
}

.btn-get-whatsapp:hover {
  border: 0px;
  background-color: #128c7e;
  color: #fff !important;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.section-title h3 {
  font-weight: 500;
  font-size: calc(0.8rem + .6vw) !important;
  margin-top: 30px;
  line-height: 1.6rem;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-top: 30px;
}

@media (pointer: coarse) {
  .btn-get-whatsapp {
    font-size: 12px;
  }

  .section-title h2 {
    font-size: 21px;
    margin-bottom: 0px;
    padding-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# section-20250331-12400250331-1237
--------------------------------------------------------------*/
.section-20250331-12400250331-1237 .content ul {
  list-style: none;
  padding: 0;
}

.section-20250331-12400250331-1237 .content ul li {
  padding-left: 28px;
  position: relative;
}

.section-20250331-12400250331-1237 .content ul li+li {
  margin-top: 10px;
}

.section-20250331-12400250331-1237 .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--color-primary);
  line-height: 1;
}

.section-20250331-12400250331-1237 .content p:last-child {
  margin-bottom: 0;
}

.section-20250331-12400250331-1237 .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  margin-top: 25px;
  width: 100%;
  text-align: center;
}

.section-20250331-12400250331-1237 .icon-box .icon {
  margin-bottom: 10px;
}

.section-20250331-12400250331-1237 .icon-box .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.section-20250331-12400250331-1237 .icon-box .icon img {
  margin: 0 auto;
  transition: 0.3s;
  width: 72px;
}

.section-20250331-12400250331-1237 .icon-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 800;
}

.section-20250331-12400250331-1237 .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.section-20250331-12400250331-1237 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.section-20250331-12400250331-1237 .icon-box:hover {
  transform: translateY(-10px);
}

.section-20250331-12400250331-1237 .icon-box:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
  # section-20250331-1240
  --------------------------------------------------------------*/
/* .section-20250331-1240 ul {
  list-style: none;
  padding: 0;
} */
.section-20250331-1240 ul {
  padding-left: 2.5rem;
  position: relative;
}

.section-20250331-1240 ul li+li {
  margin-top: 10px;
}

.section-20250331-1240 ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--color-primary);
  line-height: 1;
}

.section-20250331-1240 p:last-child {
  margin-bottom: 0;
}

.section-20250331-1240 .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  margin-top: 25px;
  width: 100%;
  text-align: center;
}

.section-20250331-1240 .icon-box .icon {
  margin-bottom: 10px;
}

.section-20250331-1240 .icon-box .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.section-20250331-1240 .icon-box .icon img {
  margin: 0 auto;
  transition: 0.3s;
  width: 72px;
}

.section-20250331-1240 .icon-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 800;
}

.section-20250331-1240 .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.section-20250331-1240 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.section-20250331-1240 .icon-box:hover {
  transform: translateY(-10px);
}

.section-20250331-1240 .icon-box:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# section-240205-0906
--------------------------------------------------------------*/
#section-240205-0906 .box {
  box-shadow: 0 1px 1px 1px rgba(56, 60, 67, 0.12);
  padding: 15px;
  height: auto;
  position: relative;
  border-radius: 15px;
  min-height: 350px;
  background: var(--color-3);
}

#section-240205-0906 .box-header {
  display: flex;
}

#section-240205-0906 .box-header img {
  margin-bottom: 15px;
  margin-right: 15px;
}

#section-240205-0906 .box-body {
  margin-bottom: 15px;
}

#section-240205-0906 .box-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
}

#section-240205-0906 .header-title-left {
  text-align: left;
  margin-bottom: 25px;
  border-left: 4px solid var(--color-1);
}

#section-240205-0906 .header-title-left strong {
  color: var(--color-1);
}

#section-240205-0906 .swiper-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
  padding: 30px;
}

@media (min-width: 1920px) and (min-height: 1080px) {
  #section-240205-0906 .box {
    height: 560px;
  }

  #section-240205-0906 .box-header img {
    width: 100px;
    height: auto;
  }
}

/*--------------------------------------------------------------
# section-20250331-1243
--------------------------------------------------------------*/
.section-20250331-1243 {
  background: linear-gradient(45deg, #000000eb, #000000e3), url(../img/banner.webp);
  color: #fff;
  text-align: center;
}

/*--------------------------------------------------------------
# WhatsApp Flutuante
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 40px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 3px 3px 4px #999;
  color: #fff !important;
}

.whatsapp-icon {
  margin-top: 15px;
}

footer {
  background: #4C5969 0% 0% no-repeat padding-box;
  text-align: center;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 15px;
}