body{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'montserrat-bold';
    src: url('../fonts/Montserrat-Bold.ttf');
}

@font-face {
    font-family: 'montserrat-regular';
    src: url('../fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: 'montserrat-thin';
    src: url('../fonts/Montserrat-Thin.ttf');
}

@font-face {
    font-family: 'HurmeGeometricSans3-bold';
    src: url('../Fonts/HurmeGeometricSans3\ Bold.otf');
}

@font-face {
    font-family: 'lato-bold';
    src: url('../fonts/Lato-Bold.ttf');
}

@font-face {
    font-family: 'lato-regular';
    src: url('../fonts/Lato-Regular.ttf');
}

@font-face {
    font-family: 'lato-light';
    src: url('../fonts/Lato-Light.ttf');
}

.montserrat-bold {
    font-family: "montserrat-bold", sans-serif;
}

.montserrat-regular {
    font-family: "montserrat-regular", sans-serif;
}

.montserrat-thin {
    font-family: "montserrat-thin", sans-serif;
}

.lato-bold {
    font-family: "lato-bold", sans-serif;
}

.lato-regular {
    font-family: "lato-regular", sans-serif;
}

.lato-light {
    font-family: "lato-light", sans-serif;
}





.fondo-azul{
    background-color: rgba(14, 59, 95,.02);
}

.fondo-footer {
    background-color: #f7f7f7;
}

.fondo-footer-secundario {
    background-color: #1bb097;
}

.fondo-transparencia-primario {
    background-color: rgba(27, 176, 151, .1);
}

.fondo-info{
    background-image: url(../img/bg-banner.png);
    background-repeat: no repeat;
    background-size: cover;
}

.fondo-banner{
    background-image: url(../img/bg-banner-2.png);
    background-repeat: no repeat;
    background-size: cover;
}

.transparencia{
    background-color: rgba(14, 59, 95,.8);
}

.fondo-transparencia{
    background-image: url(../img/fondo-transparencia.png);
    background-repeat: no-repeat;
}



.s-container{
    height: 450px;
}

.p-linea{
    line-height:1px;
}

.s-titulo{
    font-family: "montserrat-bold", sans-serif;
    font-size: 80px !important;
    font-weight: bold;
}

.s-titulo-sm{
    font-size: 55px !important;
    letter-spacing: 1px;
}

.s-titulo-md{
    font-size: 35px !important;
    font-weight: 600;
}

.text-xs{
    font-size: 10px;
}

.text-sm{
    font-size: 16px;
}

.fa-light{
color: #cac9c4;
}


.text-alert{
    font-size: 12px;
}

.precio{
    font-size: 50px;
}

.color-startup{
    background: #f09144;
    
}

.color-entrepreneur{
    background: #EC7615;
}

.color-business{
    background: #B15910;
}

.color-customize{
    background: #763b0b;
}
/*Tooltip*/

.tooltip-container {
    position: relative; /*relative: los elementos se posicionan de forma relativa a su posición normal.*/
    display: inline-block;
  }
  
  .tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: 125%; /* Posiciona el tooltip bajo del elemento */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }

  .degradado-cero{
    background: linear-gradient(90deg, rgba(214,51,132,1) 0%, rgba(159,34,186,1) 49%, rgba(102,16,242,1) 100%);
}

  .degradado-uno{
    background: linear-gradient(90deg, rgba(243,172,115,1) 0%, rgba(239,144,68,1) 100%);
  }

  .degradado-dos{
    background: linear-gradient(90deg, rgba(239,144,68,1) 0%, rgba(235,118,21,1) 100%);
  }

.degradado-tres{
    background: linear-gradient(90deg, rgba(235,118,21,1) 0%, rgba(176,89,16,1) 100%);
}
.degradado-cuatro{
    background: linear-gradient(90deg, rgba(176,89,16,1) 0%, rgba(118,59,11,1) 100%);
}

.container-alto{
    background: #fcfafa;
    min-height: 100vh;
}

p{
    font-size: 16px;
}

a{
    text-decoration: none;
}

/* Botones Social Media */

.box-social{
    width: 140px;
    height: 228px;
    position: fixed;
    bottom: 35px;
    right: 10px;
    transform: translateY(0%);
}
.box-social-item{
    text-decoration: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #FF5722;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    border-radius: 50%;
    bottom: 10px;
    left: 10px;
    transition: all .3s ease;
}
.box-social-item i{
    font-size: 25px;
}
.box-social-item:hover{
    background: #FF5722;
    color: white;
}
#box-social-btn{
    z-index: 10;
}
.box-social-item:nth-child(1){
    bottom: 0%;
    width: 70px;
    height: 70px;
}
.menu-activo .box-social-item:nth-child(1){
    transform: rotate(360deg);
    color: #fff;
    background: rgba(255, 87, 34, .6);
}
.menu-activo .box-social-item:nth-child(2){
    transform: translate(-12px,-75px);
}
.menu-activo .box-social-item:nth-child(3){
    transform: translate(-63px,-49px);
}
.menu-activo .box-social-item:nth-child(4){
    transform: translate(-90px,5px);
}
.menu-activo .box-social-item:nth-child(5){
    transform: translate(90px,-84px);
}
.menu-activo .box-social-item:nth-child(6){
    transform: translate(98px,-43px);
}
.menu-activo .box-social-item:nth-child(7){
    transform: translateX(100px);
}
@media (max-width: 576px) {
    .box-social{
        bottom: 115px;
    }
}

.warnings{
    width: 200px;
    text-align: center;
    margin: auto;
    color: #b06ab3;
    padding-top: 20px;
}

/* estios extra */

.fs-6{
    font-size: 10rem;
}

/* estilos */

.bg-green{
    background-color: #00b050;
}

.texto-md{
    font-size: 50px;
}

.texto-xs{
    font-size: 20px;
    font-weight: 100;
}

h6{
    font-size: 12px;
}

.desc-cards{
    font-size: 12px;
}

