
.custom-navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.custom-carousel {
    background: #E4E4E4;
}
.custom-carousel img {
    background-size: cover;
}

.custom-tecnologias {
    background-image: url('../img/tecnologias/img-fundo-tecnologia.png'); 
    background-size: cover;
}

.footer-logo {
    width: 60%;
}

.carousel-label {
    right:0%;
}

.carousel-label .carrousel-message {
    border-radius: .5rem 0rem 0rem .5rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(52, 58, 64, .8);
    border-color: rgba(52, 58, 64, .8);
    display: none;
}

.carousel-item.active .carrousel-message {
    animation: 1s ease-out 0s 1 slideFromRight;
    display: inline-block;
}

@keyframes slideFromRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

p {
  color: #343a40;
  font-size: 1rem;
}

.links-footer h6 {
    text-transform: uppercase;
}

.links-footer li {
    padding-top: 1rem;
}

.links-footer a {
    color: #343a40;
}

.btn-social {
    border-radius: 100%;
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
    justify-content: center;
    align-items: center;
}

.container.clientes {
    position: relative;
    width: 100%;
    background-image: url('../img/bg-clientes.png');
    background-size: cover;
}

.container.clientes::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.6);
}

/** CARD FLIP **/
.card-block .btn-outline-primary {
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}

.card {
  margin: 20px 0;
}

/* Flip Cards CSS */
.card-container {
  perspective: 700px;
}
.card-flip {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  height: auto;
  transition: all 0.5s ease-out;
  background: white;
  border: none;
}

.card-flip div {
  backface-visibility: hidden;
  transform-style: preserve-3d;
  height: 100%;
  width: 100%;
  border: none;
}

.card-flip .front {
  position: relative;
  z-index: 1;
}

.card-flip .back {
  position: relative;
  z-index: 0;
  transform: rotateY(-180deg);
}

.card-container:hover .card-flip {
  transform: rotateY(180deg);
}
