@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  75% {
    opacity: 0.75;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes left__to__right {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes right__to__left {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade__in {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fade-in {
  animation: fadeIn 2s ease-in-out;
}

.left__to__right {
  animation: left__to__right 1.5s 0.3s ease-in-out backwards;
  animation: name duration timing-function delay iteration-count direction fill-mode;
}

.right__to__left {
  animation: right__to__left 1.5s 0.3s ease-in-out backwards;
}

.fade__in {
  animation: fade__in 1s 0.3s ease-out backwards;
}

.img-hero-mobile {
  overflow: hidden;
}

.whatsapp-fixo {
  position: fixed; /* Fixa o elemento na tela */
  font-size: 3rem;
  width: 5rem; /* Largura do botão */
  height: 5rem; /* Altura do botão */
  bottom: 2rem; /* Distância da base da tela */
  right: 2rem; /* Distância da lateral direita da tela */
  background-color: #1ea750; /* Cor de fundo (verde do WhatsApp) */
  color: #fff; /* Cor do ícone/fontes */
  border-radius: 50%; /* Deixa o botão circular */
  display: flex; /* Para centralizar o ícone dentro do botão */
  align-items: center; /* Centraliza verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
  box-shadow: 4px 4px 12px var(--color-font); /* Sombras para dar destaque */
  z-index: 1000; /* Garante que fique por cima de outros elementos */
  text-decoration: none; /* Remove sublinhado do link */
  transition: all ease-in-out 0.2s;
}

@keyframes whatsapp__button__animation {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.9);
  }
  66% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.whatsapp__button__animation {
  animation: whatsapp__button__animation ease-in-out 4s infinite;
}

.whatsapp__button__animation:hover {
  animation: whatsapp__button__animation 2s;
}

.whatsapp-fixo:hover {
  background-color: #20b857; /* Muda a cor no hover */
}

.btn-nav {
  color: #efe906;
}

.imagem-logo {
  width: auto;
  height: 200px;
  opacity: 0.8;
}

.header {
  height: 85vh;
  width: 100%;
  overflow: hidden;
}

.image-container {
  height: 100vh; /* altura total da viewport */
  padding: 0 !important; /* remove padding extra do Bootstrap */
  margin: 0 !important; /* remove margem extra */
}

.image-container img {
  width: 100%; /* largura completa do container */
  height: 100%; /* altura completa do container */
  object-fit: cover; /* mantém proporção, recortando excesso */
  object-position: center; /* centraliza a imagem */
}

.hero-img {
  overflow-y: hidden;
}

.background-cover {
  background: url(../assets/images/background_pontilhadao_hero_3.png) center center no-repeat;
  background-size: cover;
}

.imagem-logo {
  width: 5rem;
  height: 5rem;
}

.hero {
  height: 85vh;
}

.btn-hero {
  width: 30rem;
  font-size: 1.3rem;
  transform: scale(1);
  transition: transform 0.4s ease-in-out;
  background-color: #0c0c0e;
  border-color: #0c0c0e;
  color: #efe906;
}

.btn-hero:hover {
  transform: scale(1.05);
  background-color: #efe906;
  border-color: #efe906;
  color: #0c0c0e;
  opacity: 1;
}

.hero-left-col {
  height: 85vh;
}

@media (max-width: 1250px) {
  .btn-hero {
    justify-self: center;
    width: 25rem;
  }
}
@media (max-width: 1000px) {
  .btn-hero {
    justify-self: center;
    width: 20rem;
  }
}
@media (max-width: 572px) {
  .btn-hero {
    justify-self: center;
    width: 15rem;
  }
  .background-cover {
    background: url(../assets/images/background_sm_pontilhadao_hero_3.png) center center no-repeat;
    background-size: cover;
  }
  .header {
    height: 90vh;
    width: 100%;
  }
}
@media (max-width: 400px) {
  .btn-hero {
    justify-self: center;
    width: 10rem;
  }
}
.hero-2 {
  background-color: #0c0c0e;
  height: 100vh;
  background-image: linear-gradient(215deg, rgba(248, 249, 250, 0.1) 1%, rgba(38, 38, 38, 0.8) 40%), linear-gradient(40deg, rgb(248, 249, 250) 1%, rgba(38, 38, 38, 0.8) 60%);
  width: 100%;
  overflow: hidden;
}

.div-image-hero-2 {
  display: flex;
  height: 80vh;
}

.hero-image-2 {
  object-fit: cover;
  height: 80vh;
}

@media (max-width: 768px) {
  .div-image-hero-2 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-image-2 {
    height: auto;
    object-fit: cover;
  }
}
.hero-section-about {
  height: 100vh;
}

.about {
  height: auto;
  width: 100%;
  overflow-x: hidden;
}

.bg-about {
  background-image: linear-gradient(240deg, rgba(38, 38, 38, 0.2) 1%, rgba(248, 249, 250, 0.8) 20%), linear-gradient(50deg, rgba(38, 38, 38, 0.6) 1%, rgba(248, 249, 250, 0.8) 20%);
}

.card-about-bg {
  background: transparent;
  border: none;
}

.text-font-size-about {
  font-size: 1.25rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .title-about-text {
    text-align: center;
  }
  .bg-about {
    background-image: linear-gradient(240deg, rgba(38, 38, 38, 0.1) 1%, rgba(248, 249, 250, 0.8) 20%), linear-gradient(100deg, rgba(38, 38, 38, 0.2) 1%, rgba(248, 249, 250, 0.8) 20%);
  }
}
.services {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bg-service {
  background-image: linear-gradient(110deg, rgba(38, 38, 38, 0.125) 1%, rgba(248, 249, 250, 0.9) 20%);
}

.container-services {
  justify-self: center;
  width: 85%;
}

.text-service-container p {
  font-size: 1.25rem;
  width: 100%;
}

.card-img-bordered {
  border-radius: 8px;
  margin: 10px;
  width: calc(100% - 20px);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  background-color: #262626;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.card-text {
  font-size: 1.15rem;
}

.card-img-consultancy {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.font-size-consultancy {
  font-size: 1.35rem;
}

.card-body-consultancy {
  flex: 1;
  overflow-wrap: break-word;
}

.card-button-modal {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  opacity: 0.9;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-button-modal:hover {
  transform: scale(1.05);
  opacity: 1;
}

.modal-bg {
  height: 100%;
  width: 100%;
  opacity: 0.1;
  border-radius: 10px;
  background-color: #f8f9fa;
  position: relative;
  object-fit: cover;
}

.modal-body-personalized {
  position: relative;
  height: 75vh;
  overflow-y: auto;
  object-fit: cover;
}

.modal-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: start;
  z-index: 1;
}

.modal-text-overlay p {
  font-size: 1.2rem;
  color: #262626;
  font-weight: semibold;
}

@media (max-width: 768px) {
  .container-services {
    flex-direction: column;
    width: 80%;
  }
  .card-button-modal {
    height: auto;
  }
  .modal-body-personalized {
    height: 90vh;
  }
  .card-consultancy {
    display: flex;
    flex-direction: column;
  }
  .bg-service {
    background-image: linear-gradient(100deg, rgba(38, 38, 38, 0.1) 1%, rgba(248, 249, 250, 0.8) 20%);
  }
  .text-service-container p {
    font-size: 1.25rem;
    width: 100%;
  }
}
.contact {
  overflow-x: hidden;
}

.bg-contact {
  background-image: linear-gradient(10deg, rgba(38, 38, 38, 0.5) 1%, rgba(248, 249, 250, 0.8) 12%), linear-gradient(350deg, #262626 1%, #f8f9fa 12%);
}

.card-contact {
  background-color: #262626;
  border-radius: 8px;
  width: 80vw;
  color: #efe906;
  opacity: 1;
}

.container-form {
  width: 50%;
}

.text-contact {
  max-width: 45%;
}

@media (max-width: 768px) {
  .container-form {
    width: 80%;
  }
  .text-contact {
    max-width: 80%;
  }
}
.footer {
  height: 45vh;
}
