@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Aplica a imagem de fundo para toda a página */
body,
html {
  height: 100%;
  margin: 0;
  background-image: url("../assets/img/background2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.offer_section,
.about_section,
.slider_section,
.header_section,
footer {
  background: transparent !important;
}

/* Tipografia geral */
h1,
h2,
h3,
h4,
h5,
.h5 {
  font-family: "Changa", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.2rem;
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h5 {
    font-size: 1rem;
  }
}

.topicos {
  padding-left: 1rem;
  list-style-position: inside;
}
.custom_nav-container {
  position: relative;
  z-index: 1000;
}

.navbar-collapse {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 1rem;
}

@media (max-width: 991.98px) {
  /* Bootstrap md breakpoint - colapso padrão */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    padding: 1rem;
  }
}

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 3000;
  backdrop-filter: blur(10px);
  animation: fadeOut 3s ease forwards;
  animation-delay: 3s;
}

/* Conteúdo centralizado */
.intro-content {
  text-align: center;
  color: black;
  animation: fadeInUp 1.5s ease forwards;
}

.intro-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.intro-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.intro-subtitle-small {
  font-size: 1rem;
  opacity: 0.8;
}

/* Animações */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.email-animado {
  animation: piscarEmail 2s infinite;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

@keyframes piscarEmail {
  0% {
    color: #f3d159;
  }
  50% {
    color: #5690f3;
  }
  100% {
    color: #f3d159;
  }
}

.text-index {
  text-align: justify;
}

.offer-text {
  font-weight: bolder !important;
}

.container,
.container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}

.header_section .navbar-nav .nav-link {
  display: block;
  width: 100%;
  padding: 10px 15px;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  border-radius: 5px;
  margin-bottom: 8px;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 768px) {
  .navbar-nav {
    align-items: stretch !important;
    text-align: right !important;
  }
}

section.py-5,
section.about_section {
  background-image: url("../assets/img/background2.jpg");
  background-color: rgba(255, 255, 255);
  background-blend-mode: lighten;
  background-attachment: fixed;
  background-position: center;
  margin: 0;
}

.logo-text {
  color: #000 !important;
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 40px;
}

.slider_section h1 {
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.owl-dot.active {
  background-color: #f9c300 !important;
}

button.owl-dot {
  background: lightgrey !important;
}

.img-carousel {
  max-width: 300px;
  justify-self: center;
}

/*FOOTER*/
.footer-social .social-icon img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(40%);
}

.footer-social .social-icon:hover img {
  transform: scale(1.2);
  filter: none;
}

.footer-logos a {
  margin-right: 15px;
}

@media (max-width: 768px) {
  .footer-social,
  .footer-logos {
    justify-content: center !important;
    text-align: center;
    align-items: center;
    gap: 1rem;
  }

  .footer-social p {
    margin-bottom: 0.5rem;
  }

  .footer-logos img,
  .footer-social img {
    max-width: 60px;
    height: auto;
  }

  .footer-logos a {
    margin-right: 0;
  }
}

/*SLIDESHOW FILOSOFIA*/

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Garante que a imagem preenche sem distorcer */
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Changa", sans-serif;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease-in-out;
}

.slide:hover .slide-caption {
  opacity: 1;
  transform: translateY(0);
}

.slider_section h1 {
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 12px;
  cursor: pointer;
  border: none;
  font-size: 24px;
  z-index: 10;
  transition: background 0.3s ease;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 0;
}
.next {
  right: 0;
}

/*SLIDESHOW*/
.slidelanheses-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .slidelanheses-container {
    max-width: 525px;
  }
}

.slideshow-wrapper {
  width: 100%;
}

.slidelanheses-slide {
  display: none;
  position: absolute;
  inset: 0;
}

.slidelanheses-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slidelanheses-slide.active {
  display: block;
}

.slidelanheses-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-family: "Changa", sans-serif;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease-in-out;
}

.slidelanheses-slide:hover .slidelanheses-caption {
  opacity: 1;
  transform: translateY(0);
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px;
  cursor: pointer;
  border: none;
  font-size: 24px;
  z-index: 10;
  transition: background 0.3s ease;
}

.prev:hover,
.next:hover {
  background-color: rgba(234, 224, 91, 0.5);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

@media (min-width: 577px) and (max-width: 767px) {
  .slideshow-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .slidelanheses-container,
  .slideshow-wrapper {
    padding: 0 15px;
  }
  .prev,
  .next {
    padding: 8px;
    font-size: 18px;
  }
  .slidelanheses-caption {
    font-size: 1rem;
    padding: 0.5rem;
  }
}

.title {
  text-align: center;
}

body {
  overflow-x: hidden;
}

/*CARDS*/
.card {
  background-color: #f2e1cf;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, height 0.5s ease;
  overflow: hidden;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card #info {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  overflow: hidden;
}

.card:hover #info {
  opacity: 1;
  max-height: 300px;
}

.card-img-top {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.btn-card {
  background: linear-gradient(45deg, #4caf50, #81c784);
  border: none;
  border-radius: 30px;
  color: white;
  padding: 0.6rem 1.8rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-card:hover,
.btn-card:focus {
  background: linear-gradient(45deg, #388e3c, #66bb6a);
  box-shadow: 0 6px 20px rgba(56, 142, 60, 0.6);
  transform: translateY(-3px);
  color: white;
}

#titulo {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#under {
  font-style: italic;
  text-decoration: underline;
}

.card-text {
  max-height: 150px;
  overflow-y: auto;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .custom-cards-container .card {
    width: 90%;
    margin: 0 auto;
  }
}

/*BOTOES*/

.btn-custom {
  background-color: #3ec8ff;
  color: white;
  border: none;
}

.btn-custom:hover {
  background-color: #2779c0;
}
/*BIOCONVERSA*/
.span-title {
  color: #000;
}

.paragrafo-texto {
  font-size: 16px;
  color: #000;
  text-align: justify;
}

.header1-texto {
  font-size: 32px;
  color: #30bdcf;
  margin-bottom: 0.5em;
}

.header2-texto {
  font-size: 26px;
  color: #30bdcf;
  margin-bottom: 0.5em;
}

.header3-texto {
  font-size: 22px;
  color: #30bdcf;
  margin-bottom: 0.5em;
}

.texto-container {
  width: 100%;
  max-width: 100%;
}

.text-justify {
  text-align: justify;
}

.ver-mais {
  display: flex;
  justify-self: center;
}

.btn-ver-mais {
  background-color: #80ef80; /* amarelo dourado (exemplo) */
  color: #000; /* texto preto */
  border: none; /* remove borda, opcional */
}

.btn-ver-mais:hover {
  background-color: #58a358; /* cor ao passar o rato */
  color: white;
}

.form-label,
.list-group-item {
  color: #000;
  font-family: "Changa", sans-serif;
}

.divisor {
  border: 1px solid white;
}

@media (max-width: 767px) {
  .about_section .row {
    flex-direction: column;
  }
}

.img-entrevistado {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 1rem;
  display: block;
}

.text-title {
  color: #000;
}

.rmv-padding {
  padding: 0 !important;
}

.bg-info-subtle {
  background-color: #eafaff;
}
.texto-ocr {
  max-width: 85%;
  font-size: 20px;
  font-family: "Changa", sans-serif;
  place-self: anchor-center;
}

.missing {
  color: red;
  font-weight: bold;
  font-size: 25px;
}

.login-content {
  justify-items: center;
}

/* Estilo geral para o formulário */
.custom-form {
  background-color: #fefefe;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Input group spacing e visual */
.input-group-text {
  background-color: #e9ecef;
  border-right: none;
  color: #495057;
}

.input-group .form-control {
  border-left: none;
}

/* Botão Limpar com melhor contraste */
#btnLimpar {
  transition: all 0.3s ease;
}

#btnLimpar:hover {
  background-color: #dc3545;
  color: white;
}

/* Total box estética */
.total-box {
  min-height: 120px;
  border-left: 5px solid #0d6efd;
  transition: box-shadow 0.3s ease;
}

.total-box:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.total-bio {
  font-family: "Changa", sans-serif;
}

.detail-box {
  text-align: justify;
}

.img-partner {
  width: 100%;
  height: 200px; /* controla o tamanho do espaço da imagem */
  object-fit: contain;
  object-position: center;
  padding: 20px; /* padding uniforme em todos os lados */
  background-color: #f8f9fa; /* opcional: fundo neutro */
  border-radius: 10px;
  box-sizing: border-box;
}

.text-partner {
  max-height: 200px;
}

.card-text {
  text-align: justify;
}

.card-title, .card-subtitle {
  text-align: center;
}