/**
 * Nombre del archivo: style.css
 * Descripción: Maneja los estilos de todo el sitio.
 * Autor: BYTE IT
 * Fecha de creación: 2025-03-04
 * Última modificación: 2025-03-04
 */
 
 
 /***************************************
* FONTS
***************************************/
@font-face {
    font-family: 'neuland';
    src: url('../fonts/NeulandGrotesk-Bold.woff') format('woff'),
         url('../fonts/NeulandGrotesk-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;

}
@font-face {
    font-family: 'neuland';
    src: url('../fonts/NeulandGrotesk-Regular.woff') format('woff'),
        url('../fonts/NeulandGrotesk-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;

}

/***************************************
* GENERIC DEFINITIONS
***************************************/
*,p,h1,h2,h4,h5,h6,span,input,a,div{
    font-family: 'neuland';
}
html, body {
    overscroll-behavior: contain;
}
body {
    background: #fff;
    overflow-x: hidden;
    overflow-y: scroll !important;
}

footer {
    clear:both;
    position:relative;
    height:120px;
    margin-bottom:-120px;
}

.text-white {color: #fff;}
.text-black {color: #000000;}
.text-blue {color: #130dff;}
.text-green {color: #00584b;}


.bg-white {background: #fff;}
.bg-black {background: #000;}
.bg-blue {background: #130dff;}
.bg-green {background: #00584b;}
.bg-img {background:url(../images/Background.jpg) no-repeat;background-size: cover;}

.border-white {border: solid 1px #fff;}
.border-black {border: solid 1px #000;}
.border-blue {border: solid 1px #130dff;}
.border-green {border: solid 1px #00584b;}

.fs-7 {
    font-size: 0.8rem !important;
}
.fs-8 {
    font-size: 0.5rem !important;
}
.fs-9 {
    font-size: 0.25rem !important;
}
.fs-custom{
    font-size: 2rem !important;
}

.h100vh{
    min-height: 100vh;
    height: -webkit-fill-available;
    overflow: hidden;
}
.h-fill-available{
    height: -webkit-fill-available;
}

.btn:disabled{
    color: #6C6C6C;
    background: #AFAFAF;
    border: none;
    border-radius: 50px;
    padding: 5px 30px;
    font-size: 1em;
    cursor: not-allowed;
}
.btn-green {
    color: #fff;
    background: #005d13;
    border: none;
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 1em;
    cursor: pointer;
}
.video-poster {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.1s ease;
}
.ribbon-video{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0% 100%);
}
.botones {
    position: relative;
    margin-top: 0px;
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}

.botones.visible {
    opacity: 1;
}

#progressContainerM1, #progressContainerM2, #progressContainerPDR,#progressContainerInvite{
    width: 80%;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: absolute;
    top: 0;  /* Ahora en la parte superior */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Asegura que esté sobre el video */
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

#progressBarM1,#progressBarM2,#progressBarPDR,#progressBarInvite {
    background: #fcd018;
    height: 100%;
    width: 100%;
    transition: clip-path 0.5s ease-in-out; /* Suaviza la animación del clip-path */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); /* Se mantiene rectangular por defecto */
}


.noscroll {
    overflow: hidden !important;
}

.cursor-pointer {
    cursor: pointer
}
.popup {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110vh;
    z-index: 999;
}
.hidden {
    display:none;
}
.overflow-y-scroll{
    overflow-y: scroll;
    overflow-x: hidden;
}
/***************************************
* CUSTOM CHECKBOX
***************************************/

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: solid 1px #005d13;
  }
  
  .container:hover input ~ .checkmark {
    background-color: #fff;
    border: solid 1px #005d13;
  }
  
  .container input:checked ~ .checkmark {
    background-color: #005d13;
  }
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

/***************************************
* RESPONSIVE QUERIES
***************************************/

/* X-Small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    
}
/* Small devices (landscape phones, 5760px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {

}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
    
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {
    
}

/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) and (max-width: 1399.98px) {
    
}

/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {
    

    
}
