/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Rubik', sans-serif;
  color: #fff !important;
  background: #E3E3E3;
  margin: 0;
  padding: 0;
}


/* COLORES */

:root {
  --texto-primario: #032e54;
  --font-weight: bold;
}



a {
  text-decoration: none;
  color: #0880e8;
}

a:hover {
  color: #2b99f8;
  text-decoration: none;
}

h3 {
  color: var(--texto-primario);
  font-weight: 500;
  font-size: 32px;
}

h4 {
  color: var(--texto-primario);
  font-weight: 500;
  font-size: 20px;
}

span {
  color: var(--texto-primario);
  font-size: 14px;
  font-weight: 300;
}

.form-check-input:checked {
  background-color: #032e54;
  border: 1px solid #032e54;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  opacity: 1;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #25D366;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #05f75e;
  color: #25D366;
}

.error {
  color: #dfeb33;
}

.active-price {
  background: #FBC92A !important;
  box-shadow: none !important;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

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

.wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #203C60;
  display: grid;
  place-items: center;
  transition: opacity .25s, visibility 1s;
}

.fade-loading {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner>div {
  background-color: #f1f1f1;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner>span {
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}




@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }

  20% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}




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

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

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 50px;
  padding: 0;
  background: rgb(115, 29, 49);
  background: linear-gradient(96deg, rgba(115, 29, 49, 1) 42%, rgba(166, 73, 95, 1) 97%);
  font-size: 15px;
  transition: all 0.5s;
  overflow: hidden;
  color: rgb(255, 255, 255);
  z-index: 996;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: white;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  top: 50px;
}

#header .btn2 {
  border: 1px solid #032e54;
  color: #fff;
  background: #2E3E5F;
  font-size: 12px;
  border-radius: 5px;
  padding: 5px 15px;

}

#header .btn2:hover {
  border: 1px solid #032e54;
  color: #032e54;
  background: #fff;
}

#header .btn1 {
  border: 1px solid #032e54;
  color: #032e54;
  font-size: 12px;
  border-radius: 5px;
  padding: 5px 15px;
}

#header .btn1:hover {
  border-color: #032e54;
  color: #fff;
  background: #2E3E5F;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
}

#header .logo a {
  color: #fff;
}

#header .logo img {

  max-height: 40px;
}

.header-inner-pages {
  background: rgba(5, 87, 158, 0.9) !important;
}

.topbar-inner-pages {
  background: rgba(6, 98, 178, 0.9) !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}


.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;

}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;

}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  color: #032e54;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #032e54;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;

}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;

}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #032e54;
  font-weight: bold;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 8px;

}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #032e54;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #032e54;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #203C60;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #f6b024;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(5, 74, 133, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0665b7;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #f6b024;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #f6b024;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# portada
--------------------------------------------------------------*/
#portada {
  margin-top: 90px !important;
}

#portada h3 {
  color: #032e54;
  font-weight: 800;
  font-size: 45px;
  line-height: 1.5;
}

#portada h3 span {
  font-size: 45px;
  font-weight: 800;
}

#portada .resaltado {
  background: #F0CA3F;
}

#portada span {
  color: #032e54;
  font-size: 14px;
  font-weight: 300;
}

#portada .btn2 {
  border: 1px solid #032e54;
  color: #fff;
  background: #2E3E5F;
  font-size: 14px;
  border-radius: 5px;
  padding: 8px 12px;
  font-weight: 300;
}

#portada .btn2:hover {
  border: 1px solid #032e54;
  color: #032e54;
  background: #fff;
}

#portada .btn1 {
  border: 1px solid #032e54;
  color: #032e54;
  font-size: 14px;
  border-radius: 5px;
  padding: 8px 12px;
  font-weight: 300;
}

#portada .btn1:hover {
  border-color: #032e54;
  color: #fff;
  background: #2E3E5F;
}

#portada label {
  color: var(--texto-primario);
  font-weight: 300;
}



/*--------------------------------------------------------------
# portada conocenos
--------------------------------------------------------------*/
#portada-conocenos {
  margin-top: 90px !important;
  background: rgb(63, 84, 113);
}

#portada-conocenos h3 {
  color: #fff;
  font-weight: 800;
  font-size: 45px;
  line-height: 1.5;
}

#portada-conocenos .resaltado {
  color: #F0CA3F;
  font-weight: 800;
  font-size: 45px;
}

#portada h3 span {
  font-size: 45px;
  font-weight: 800;
}

#portada-conocenos span {
  color: #fff;
  font-size: 13px;
}

#portada-conocenos .btn2 {

  color: #fff;
  background: #BA436A;
  font-size: 14px;
  border-radius: 5px;
}

#portada-conocenos .text {
  margin-top: 30vh !important;
}

#portada-conocenos .btn2:hover {
  border: 1px solid #032e54;
  color: #032e54;
  background: #fff;
}

#portada-conocenos .btn1 {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
}

#portada-conocenos .btn1:hover {
  border-color: #032e54;
  color: #fff;
  background: #2E3E5F;
}

/*--------------------------------------------------------------
# portada soluciones
--------------------------------------------------------------*/
#portada-soluciones {
  margin-top: 90px !important;
}

#portada-soluciones h3 {
  color: #032e54;
  font-weight: bold;
  font-size: 50px;
  line-height: 1.5;
}

#portada-soluciones .resaltado {
  background: #F0CA3F;
  font-size: 50px;
}

#portada-soluciones span {
  color: #032e54;
  font-size: 14px;
  font-weight: 300;
}

#portada-soluciones .btn2 {
  border: 1px solid #032e54;
  color: #fff;
  background: #2E3E5F;
  font-size: 14px;
  border-radius: 5px;

}

#portada-soluciones .btn2:hover {
  border: 1px solid #032e54;
  color: #032e54;
  background: #fff;
}

#portada-soluciones .btn1 {
  border: 1px solid #032e54;
  color: #032e54;
  font-size: 14px;
  border-radius: 5px;
}

#portada-soluciones .btn1:hover {
  border-color: #032e54;
  color: #fff;
  background: #2E3E5F;
}

/*--------------------------------------------------------------
# portada precios
--------------------------------------------------------------*/
#portada-precios {
  background: rgb(63, 84, 113);
  background: linear-gradient(96deg, rgba(63, 84, 113, 1) 30%, rgba(44, 62, 88, 1) 49%);
}

#portada-precios h3 {
  color: #fff;
  font-weight: 800;
  font-size: 45px;
  line-height: 1.5;
}

#portada-precios .resaltado {
  color: #F0CA3F;
  font-weight: 800;
  font-size: 45px;
}

#portada-precios span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
}

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

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

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

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


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgb(63, 84, 113);
  background: linear-gradient(96deg, rgba(63, 84, 113, 1) 30%, rgba(44, 62, 88, 1) 49%);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer img {
  width: 70%;
}

#footer span {
  font-weight: 300;
  color: #fff;
  font-size: 14px;
}

#footer hr {
  color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  height: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
  /*  width: 320px !important; */
}

#footer .linea-sm hr {
  color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  height: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 320px !important;
}



#footer ul {
  list-style-type: none;
  font-weight: 300;
  padding: 0;
}

#footer .list-title {
  font-weight: 600;
}

#footer i {
  color: #fff;
  font-size: 20px;
}

#footer h4 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

#footer .input-container {
  position: relative;
  display: inline-block;
}

#footer .input-sus {
  padding-right: 35px;
}

#footer .btn-sus {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: #BA436A;
  font-size: 10px;
  border-radius: 5px;
  padding: 1px !important;
  font-weight: 300;
}

#footer a{
  color: #fff !important;
}




#section-one-soluciones span {
  color: var(--texto-primario);
}

#section-one-soluciones h3 {
  color: var(--texto-primario);
  font-weight: 500;
  font-size: 38px;

}

#section-one-soluciones h4 {
  color: var(--texto-primario);
  font-weight: var(--font-weight);

}

#section-one-soluciones p {
  color: var(--texto-primario);
}

#section-one-soluciones ul {
  color: #fff;
  font-size: 14px;
}

#section-one-soluciones .list-what {
  color: var(--texto-primario);
  font-size: 14px;
}

#section-one-soluciones .ventajas {
  background: #2E3E5F;
  border-radius: 10px;
  padding: 15px;
}

#section-one-conocenos span {
  color: var(--texto-primario);
}

#section-two span {
  color: var(--texto-primario);
}

#section-two label {
  color: var(--texto-primario);
  font-size: 14px;
  font-weight: 300;
}

#section-two img {
  width: 80%;
}

.form-check-input {
  width: 0.8em;
}



#section-two-soluciones span {
  color: var(--texto-primario);
}

#section-two-soluciones h4 {
  color: var(--texto-primario);
  font-weight: var(--font-weight);
}

#section-two-soluciones p {
  color: var(--texto-primario);
  font-size: 13px;
}

#section-three {
  background: rgb(63, 84, 113);
  background: linear-gradient(96deg, rgba(63, 84, 113, 1) 30%, rgba(44, 62, 88, 1) 49%);
}

#section-three h3 {
  color: #fff;
  font-weight: 500;
  font-size: 32px;
}

#section-three span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

#section-three .btn-saber {
  background: #BA436A;
  color: #fff;
  font-weight: 300;
}

#section-three .resaltado {
  color: #F0CA3F;
  font-size: 32px;
  font-weight: 500;
  ;
}

#section-three .video {
  border-radius: 10px;
  cursor: pointer;
}

#section-four .btn {
  border: 1px solid #BA436A;
  color: #BA436A;
}

#section-four img {
  width: 10%;
}


#section-four-soluciones span {
  color: var(--texto-primario);
  font-size: 14px;
}

#section-four-soluciones h4 {
  color: var(--texto-primario);
  font-weight: var(--font-weight);
}

#section-four-soluciones .btn {
  background: #BA436A;
  color: #fff;
}

#section-four-soluciones label {
  color: var(--texto-primario);
  font-size: 14px;
}

#section-five h3 {
  color: #fff;
  /*  font-weight: 500;
  font-size: 32px */
}

#section-five span {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

#section-five .resaltado {
  color: #F0CA3F;
  font-size: 32px;
  font-weight: 500;

}

#section-five h4 {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}

#section-five .btn {
  background: #BA436A;
  color: #fff;
  padding: 8px 12px;
  font-weight: 300;
}

#section-five {
  background: rgb(63, 84, 113);
  background: linear-gradient(96deg, rgba(63, 84, 113, 1) 30%, rgba(44, 62, 88, 1) 49%);
}


.img-container {
  margin-top: -80px;
  margin-bottom: -80px;
}

.img-container img {
  width: 100%;
  height: auto;
  display: block;
}


#section-five-soluciones h3 {
  color: var(--texto-primario);
  font-weight: var(--font-weight);

}

#section-five-soluciones span {
  color: var(--texto-primario);
  font-size: 14px;
}

#section-five-soluciones h4 {
  color: #fff;
  font-weight: var(--font-weight);
}

#section-five-soluciones .btn {
  background: transparent;
  color: #BA436A;
  border: 1px solid #BA436A;
}

#section-prueba .btn {
  color: #BA436A;
  border: 1px solid #BA436A;
}

.custom-container {
  position: relative;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.logo-apreciaciones {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}



#section-six p {
  color: var(--texto-primario);
}


#section-six i {
  color: #F0CA3F;
}

#section-six-soluciones h3 {
  color: #fff;
  font-weight: var(--font-weight);
  font-size: 34px;
}

#section-six-soluciones h3 span {
  color: #F0CA3F;
  font-size: 34px;
}

#section-six-soluciones span {
  color: #FFF;
  font-size: 14px;
}

#section-six-soluciones h4 {
  color: #fff;
  font-weight: var(--font-weight);
}

#section-six-soluciones .btn {
  background: #BA436A;
  color: #fff;
}

#section-six-soluciones {
  background: rgb(63, 84, 113);
  background: linear-gradient(96deg, rgba(63, 84, 113, 1) 30%, rgba(44, 62, 88, 1) 49%);
}

#section-seven p {
  color: #fff;
}

#section-seven span {
  color: #fff;
  font-size: 14px;
  line-height: 0;
  font-weight: 300;
}

#section-seven h3 {
  color: #fff;
  font-weight: 500;
  font-size: 32px;
}

#section-seven .btn {
  background: #BA436A;
  color: #fff;
  font-weight: 300;
}

#section-seven {
  background: rgb(63, 84, 113);
  background: linear-gradient(96deg, rgba(63, 84, 113, 1) 30%, rgba(44, 62, 88, 1) 49%);
}

#section-seven h3>span {
  color: #F0CA3F;

  font-weight: var(--font-weight);
  font-size: 32px;
}

/* Conocenos */
#section-seven-conocenos p {
  color: #fff;
}

#section-seven-conocenos span {
  color: #fff;
  font-size: 12px;
  line-height: 0;
}

#section-seven-conocenos h3 {
  color: #fff;
  font-weight: var(--font-weight);
}

#section-seven-conocenos .btn {
  background: var(--texto-primario);
  color: #fff;
}

#section-seven-conocenos {
  background: #BA436A !important;

}

#section-seven-conocenos h3>span {
  color: #F0CA3F;
  font-size: 26px;
}



#section-eight h3 {
  color: var(--texto-primario);
  font-weight: 500;
  font-size: 32px;

}

#section-eight p {
  color: var(--texto-primario);
}


#section-eight .btn {
  border: 1px solid #BA436A;
  color: #BA436A;
}


#section-eight-soluciones p {
  color: var(--texto-primario);
}

#section-eight-soluciones span {
  color: var(--texto-primario);
  font-size: 14px;
  line-height: 0;
}

#section-eight-soluciones .btn {
  border: 1px solid #BA436A;
  color: #BA436A;
}

#section-nine p {
  color: var(--texto-primario);
  font-size: 14px;
}

#section-nine span {
  color: #fff;
  font-size: 12px;
  line-height: 0;
}

#section-nine h3 {
  color: var(--texto-primario);
  font-weight: var(--font-weight);
  font-size: 34px;
}

#section-nine .btn {
  background: #BA436A;
  color: #fff;
}

#section-ten .row {
  background: #fff;
  border-radius: 15px;
}

#section-ten p {
  color: var(--texto-primario);
  font-size: 16px;
  font-weight: 500;
}

#section-ten span {
  color: #fff;
  font-size: 12px;
  line-height: 0;
}

#section-ten h3 {
  color: var(--texto-primario);
  font-weight: var(--font-weight);
  font-size: 34px;
}

#section-ten .btn {
  background: #BA436A;
  color: #fff;
}

#section-ten hr {
  color: #010f1b;
  height: 2px;
}

#section-ten a {
  color: var(--texto-primario);
}

#section-ten .card {
  color: var(--texto-primario);
}

#ventajas .card-body {
  background: #FBC92A;
  border-radius: 10px;
}

#ventajas .card {
  background: none !important;
  border: none !important;
}

#ventajas ul {
  color: var(--texto-primario);
  font-size: 12px;
}

#ventajas .logo {
  background: var(--texto-primario);
}

#ventajas .logo img {
  width: 20% !important;
}

#ventajas button {
  cursor: auto;
}

#section-four-soluciones .logo {
  background: var(--texto-primario);
}

#section-four-soluciones .logo img {
  width: 10% !important;
}

#section-four-soluciones button {
  font-size: 12px;
  font-weight: 300;
  cursor: auto;
}

#enterprise {
  background: #fff;
}

#planes label {
  color: var(--texto-primario);
  font-weight: 500;
  font-size: 16px;
}

#planes p {
  color: var(--texto-primario) !important;
  font-weight: 300 !important;
  font-size: 14px !important;
}

#planes .plan-body {
  background: rgb(88, 117, 155);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.581) !important;
  /* height: 30vh; */
}

.emprendedor {
  background: #58759A !important;
}

.profesional {
  background: #2E3E5F !important;
}

.corporativo {
  background: #1D2B40 !important;
}

.detalles {
  background: #DEDEDE !important;
  color: var(--texto-primario);
  width: 30%;
}

.emprendedor-body {
  background: #6882A3 !important;
}

.profesional-body {
  background: #41506D !important;
}

.corporativo-body {
  background: #323F51 !important;
}

.detalles-body {
  background: #F5F5F5 !important;
}

#comparar-planes table tbody td {
  font-weight: 300;
  font-size: 13px;
}

#comparar-planes table tbody th {
  font-weight: 400;
  font-size: 15px;
  color: var(--texto-primario);
  background: rgb(214, 211, 211) !important;
}

#comparar-planes table thead th {
  font-weight: 500 !important;
  font-size: 15px;
}

#comparar-planes table .footer {
  background: #FFCC29;
  color: var(--texto-primario);
}




#planes .plan-body h4 {
  color: #fff;
}

#planes .plan-footer {
  background: #fff;
  border-radius: 10px;
  margin-top: -5px;
  box-shadow: 0 4px 24px 0 rgba(34, 41, 47, 0.581) !important;
  height: 90vh;
  padding: 0;

}

#planes sup {
  font-weight: 300 !important;
  font-size: 65% !important;
}

#planes .plan {
  border-radius: 50px !important;

}

#planes .plan-body .title {
  color: #fff;
  letter-spacing: 5px;
}

#planes .plan-body span {
  color: #fff;
  font-size: 12px;
}

#planes .plan h3 {
  color: #fff;
}

#planes .btn {
  background: rgb(88, 117, 155);
  color: #fff;

  font-weight: 300;
  font-size: 14px;
}

.form-check-input:checked+.form-check-label::before {
  background-color: #3498db !important;
  /* Cambia esto al color deseado */
}

#formulario {
  background: rgb(63, 84, 113);
  background: linear-gradient(96deg, rgba(63, 84, 113, 1) 30%, rgba(44, 62, 88, 1) 49%);
}

#formulario .form-control {
  background: transparent !important;
  color: #fff !important;
}

#formulario .form-select {
  background: transparent !important;
  color: #948d8d !important;
}

#info-contacto p {
  font-size: 16px !important;
  color: var(--texto-primario) !important;
}


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


/* -----------------------------------------------------------
# Dispositivo móbil
 -----------------------------------------------------------*/
@media (max-width: 767px) {
  #portada h3 {
    font-size: 30px;
  }

  #portada h3 span {
    font-size: 30px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 20px;
  }

  #section-three h3 {
    font-size: 25px;
  }

  #section-three .resaltado {
    font-size: 25px;
  }

  #portada-conocenos .text {
    margin: 0 !important;
  }

  #planes .plan-footer {
    height: 50vh !important;
  }
}