@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200&display=swap');

*{    
    margin:0px;
    padding: 0px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

a{
    color: inherit; /* hereda el color del padre */
    text-decoration: none; /* opcional: quita el subrayado */
}

 

i, .OArpIcon{
  font-family: "OArpIcon";
  font-size: 37px;
  font-style: normal;
  font-weight: 200;
  line-height: 50px;
  color:#8E969F;
}

h3,h4,h5{
    font-weight: 400;
}

body{
    background-color: #000;
    position: relative;
    /*overflow-x: hidden;*/
    width: 100%;
}



.animation{
-webkit-transition:0.3s;
 -moz-transition: 0.3s;
   -o-transition: 0.3s;
  -ms-transition: 0.3s;
      transition: 0.3s;
}

.animation5{
-webkit-transition:0.5s;
 -moz-transition: 0.5s;
   -o-transition: 0.5s;
  -ms-transition: 0.5s;
      transition: 0.5s;
}

.body{
 position: relative;
}

.header-shadow{
    height: 50px;
}

.bg-content{
    position: absolute; 
    position: fixed;
    object-fit: cover; /* or object-fit: contain; */
    height: 100%;
    width: 100%;
-webkit-transition:0.3s;
 -moz-transition: 0.3s;
   -o-transition: 0.3s;
  -ms-transition: 0.3s;
      transition: 0.3s;  
      overflow: hidden;
}
 


h3{
    color: #006185;
    font-weight: 200;
    font-size: 40px;
}

.body{
    height: 100%;
}

.g-width{
  max-width: 1200px;
  margin: auto;
}
 
.no-list-style{
    /*padding: 0px;*/
    margin:0px;
    padding:0px;
   
}


.float-wa {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 20px;
  right: 15px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 50px;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0,0,0,0.8);
}

/* Onda expansiva tipo sonar */
.float-wa::before,
.float-wa::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  background-color: rgba(37, 211, 102, 0.8); /* Verde WhatsApp semi */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: -1;
  animation: sonar-ping 4s infinite ease-out;
}

.float-wa::after {
  animation-delay: 1.25s; /* desfase para doble onda */
}

@keyframes sonar-ping {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

.float-wa i{
  color:#FFF !important;
}

.no-list-style li{
     list-style-type: none;
}

.gen-width{
  max-width:1200px;
}

.h2-blue{
    font-size: 45px;
    color: #2B485E;
    margin-bottom: 20px;
    font-weight: 200;
}

.h2-blue-black{
    font-size: 45px;
    color: #39688C;
    margin-bottom: 10px;
    font-weight: 200; 
}

.h2-white{
    font-size: 30px;
    color: #FFF;
    margin-bottom: 20px;
}

.p-gray{
    color:#686868;
    font-size: 20px;
}

.p-white{
    color:#CDCDCD;
    font-size: 20px;
}

.button-blue{
    display: inline-block;
    color:#FFF;
    background-color: #4A8DD6;    
    border-radius: 20px;
    padding: 5px 20px;
    font-size: 14px;
    border:1px solid transparent;
}

.button-green{
    display: inline-block;
    color:#000;
    background-color: #AFCD09;    
    border-radius: 15px;
    padding: 5px 25px;
    font-size: 20px;
    border:1px solid transparent;
    cursor: pointer;
}

.button-green:hover{
  opacity: 0.7; 
}

.button-blue:hover{
    color:#4A8DD6;
    background-color: transparent;    
    cursor: pointer;
    border:1px solid #5580AE;
}

.button-blue-white i{
    line-height: 15px;
    padding-right: 5px;
    color:#4A8DD6;    
    font-size: 34px;
}

.button-blue-white:hover i{
    color:#FFF;
}


.button-blue-white{
    display: flex;
    justify-content: center;
    align-items: center;
    color:#245891;
    background-color: #FFF;    
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 14px;
    border:1px solid #4A8DD6;
}


.button-blue-white:hover{
    color:#FFF;
    background-color: #4A8DD6;    
    cursor: pointer;
    border:1px solid #FFF;
}


.titleauth{

    position: absolute;
    bottom: 25%;
    width: 100%;
    margin: auto;

}

.titleauth h2{
    margin-bottom: 5px;
    font-size: 30px;
    text-align: center;
}

@media(min-width: 600px){

    .titleauth h2{
        font-size: 40px;
    }
}



.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}


.contentViewPicture{
  z-index: 99;
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);                /* desenfoque gaussiano */
  -webkit-backdrop-filter: blur(6px); 
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  
}

.contentViewPicture .loadingGIF{
  height: 100px;
}

.body[disable]{  
  pointer-events: none;
  user-select: none;  
  /*overflow: hidden;*/
}

.contentViewPicture[disable]{
  display: none;

}

.contentViewPicture *[disable]{
  display: none;
}

.contentViewPicture .fullViewImage{
  padding: 20px;
  opacity: 0;
  position: absolute;
  z-index: 100;
  display: block;
}

.contentViewPicture .closeButton{
  position: absolute;
  z-index: 101;
  top: 25px;
  right: 18px;
  height: 50px;
  cursor: pointer;
}


.contentViewPicture .navButton{
  position: absolute;
  z-index: 101;  
  top:calc(50% - 50px);  
  height: 55px;
  cursor: pointer;
}

.contentViewPicture .navButton.next{
  right: 13px;
}

.contentViewPicture .navButton.back{
  left: 13px;
  transform: rotate(180deg);
}

@media(max-width: 500px){

  .contentViewPicture .navButton.next{
    right: 5px;
  }

  .contentViewPicture .navButton{
    height: 45px;
  }

  .contentViewPicture .closeButton{
    right: 10px;
  }


  .contentViewPicture .navButton.back{
    left: 5px;    
  }

}

