footer{
    background-color:#000;
    width:100%;
    height:auto;
    border-top:2px dotted var(--blackLight);
}

.containerItemsFullFooter{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:50px;
  padding-top:50px;
  padding-bottom:10px;
  padding-left:20px;
  padding-right:20px;
}

.containerItemsFullFooter .itemBrand{
  width:20%;
  height:100%;
  display:flex;
  align-items:center;
  color:var(--black);
  flex-wrap:wrap;
}
.containerItemsFullFooter .itemBrand .containerImgBrandFooter{
  width:150px;
  height:auto;
}

.containerItemsFullFooter .itemBrand .containerImgBrandFooter img{
  width:100%;
  height:100%;
}

.containerItemsFullFooter .itemBrand a{
  width:100%;
  color:var(--white);
}

.containerItemsFullFooter .itemBrand .flexLink{
  margin:5px 0px;
}


.containerItemsFullFooter .itemBrand .flexLinkOv{
    text-decoration:underline;
}

.containerItemsFullFooter .itemBrand .flexLinkOv:hover{
   text-decoration:none;
}

.containerItemsFullFooter .itemLinks{
  width:20%;
  padding-left: 15px;
  height:auto;
  /*background-color:rgb(51, 255, 0);*/
}


.pGlobalFooter{
    color:var(--white);
    font-size:13px;
    font-weight:400;
    padding-top:5px;
    padding-bottom:10px;
}


.itemLinks h5{
  font-size:20px;
  font-weight:600;
  color:var(--white);
}


.flexLink{
  display:flex;
  justify-content:left;
  align-items:center;
  gap:10px;
  margin:15px 0px;
}


.flexLink p,.itemLinks .flexLink i{
  transition:all ease .3s;
  font-size:11px;
  color:var(--principal);
}

.hoverIndicators i{
  color:var(--black);
  border-radius:50%;
  padding:10px;
  width: 25px;
    background-color: var(--principal);
    height: 25px;
    display: flex
;
    justify-content: center;
    align-items: center;
}


.flexLink p,.itemLinks .flexLink{
  color:var(--white);
  font-size:18px;
}

.flexLink:hover p,.flexLink:hover i{
  color:var(--principalHover);
}


.containerItemsFullFooter .itemSocialLinks{
  width:15%;
  height:auto;
  /*background-color:rgb(51, 255, 0);*/
}


.itemSocialLinks h5{
  font-size:20px;
  font-weight:600;
  color:var(--white);
}

footer .flexRdsHeader{
	display:flex;
	justify-content:left;
    gap:10px;
    margin-top:10px;
	align-items:center;
}

footer .flexRdsHeader a{
	width:30px;
	height:30px;
	background-color:var(--principal);
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:50%;
	cursor:pointer;
	color:var(--black);
	transition:all ease .3s;
}

footer .flexRdsHeader a:hover{
	background-color:var(--principalHover);
    transform: rotate(360deg);
	color:var(--black);
}


/* CopyRight*/

footer .copyright{
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:10px;
  flex-wrap:wrap;
  font-weight:500;
  text-align:center;
  color: var(--black);
  padding:10px 0px;
  margin-top:30px;
  background-color: var(--principal);
}

footer .copyright .webFooterCopy{
  font-size:13px;
}

footer .copyright p{
  width:100%;
}
footer .copyright a{
  color: var(--black);
}




/* BUTTON UP */

.btn-scrolltop {
    position: fixed;
    bottom: 25px;
    left:25px;
    padding: 12px 15px;
    background-color: var(--white);
    color: var(--black);
    border:2px solid var(--principal);
    box-shadow: rgba(101, 107, 114, 0.2) 0px 8px 24px;
    cursor: pointer;
    transform: translateY(100px);
    border-radius:5px;
    transition: 0.3s;
    z-index:11;
  }

  .btn-scrolltop-active {
    transform: translateY(0);
  }

  .btn-scrolltop:hover{
    background-color: var(--principal);
  }


  /* BTN WHATSAPP */

   .whatsapp-float {
        position: fixed;
        right: 15px;
        bottom: 15px;
        width: 60px;
        height: 60px;
        background-color: #25D366; /* Color verde de WhatsApp */
        border-radius: 50%;
        border: 2px solid white;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .whatsapp-float:hover {
        background-color: #128C7E; /* Color verde más oscuro al pasar el mouse */
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transform: translateY(-3px);
    }

    .whatsapp-float a {
        color: var(--white);
        font-size: 30px;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

    /* Efecto al hacer clic */
    .whatsapp-float:active {
        transform: scale(0.95);
    }





  @media(max-width:1150px){
    .itemLinks h5{
      font-size:18px
    }
    .flexLink p{
      font-size:14px
    }
    .containerItemsFullFooter{
      gap:30px;
    }
  }

  @media(max-width:900px){
    .containerItemsFullFooter .itemLinks,.containerItemsFullFooter .itemSocialLinks,.containerItemsFullFooter .itemBrand{
      width:100%;
    }
    .containerItemsFullFooter{
      flex-wrap:wrap;
    }

    .containerItemsFullFooter .itemLinks{
      padding-left:0px;
    }
    .containerItemsFullFooter{
        padding-left: 0px;
        padding-right: 0px;
    }
}


@media(max-width:500px){
  footer .copyright{
    padding:20px 50px;
  }

  .webFooterCopy{
    display:flex;
    flex-direction:column;
  }

  .webFooterCopy a{
    font-size:10px;
  }
}

@media(max-width:365px){
  .containerChatOvet{
    width:310px;
  }
}


@media(max-width:350px){
  .containerChatOvet{
    width:300px;
  }
}
