@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem !important; /* ~28px */
    
  }

  h2 {
    font-size: 1.5rem !important; /* ~24px */
  }

  h3 {
    font-size: 1.25rem !important; /* ~20px */
  }

  p {
    font-size: 1rem !important; /* ~16px */
  }

  small {
    font-size: 0.875rem !important; /* ~14px */
  }
}




h1{
    font-family: "Lora", serif;
    font-weight: 600;
    font-size: 48px;
}

h2{
    font-family: "Lora", serif;
    font-weight: 600;
    font-size: 30px !important;
}

body{
     font-family: "Montserrat", sans-serif;
}

/*.hero-section {
    min-height: 80vh; /* Garante que a seção ocupe a altura total da tela */
    /*background: linear-gradient(to bottom, #323232 0%, #303030 40%, #000000 150% 150%), linear-gradient(to top, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.25) 200%);
    background-blend-mode: multiply;*/
    /*background: radial-gradient(circle at center, rgb(59, 59, 59) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1)) 100%;
    background-color: #0E0E10;
    color: white;
 
}*/

.hero-section{
  min-height: 80vh;
  background: #0E0E10;
  background: linear-gradient(to bottom, #000000 0%, #242424 40%, #000000 150%), linear-gradient(to top, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.25) 200%);
 background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.scroll-hidden {
    -ms-overflow-style: none; /* IE e Edge */
    scrollbar-width: none; /* Firefox */
}

.scroll-hidden::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.card{
    height: 480px !important;
    border-radius: 28px !important;
    padding: 20px;
}

.text-gold{
   color: #c5a46e
}

.black-bg{
    background-color: #0E0E10;
    color: white;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    border-top: 1px solid #c5a46e1a;
    border-width: 80%;
}

.section-subtitle-liner-one {
    background-image: linear-gradient(90deg, #c5a46e, #0000);
    width: 24px;
    height: 1px;
    transform: rotate(180deg);
}

.section-subtitle-liner-two {
    background-image: linear-gradient(90deg, #c5a46e, #0000);
    width: 24px;
    height: 1px;
}

.bg-gradient-black{
    background: radial-gradient(circle at center, rgb(59, 59, 59) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1)) 100%;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Estilos extras para a sessão */
.testimonial {
  padding: 60px;
  height: 100%;
  background-image: linear-gradient(135deg, #19171966, #19171933);
  border: 1px solid #c5a46e1a;
}



.testimonial:hover{
  border-color: #c5a46e66;
  box-shadow: 2px 2px 15px #c5a46e26;
}
.testimonial .quote {
font-size: 1.05rem;
line-height: 1.5;
color: #ffffff;
}
.testimonial .meta {
margin-top: 1rem;
display: flex;
gap: .75rem;
align-items: center;
}
.testimonial .avatar {
width:48px;
height:48px;
border-radius:50%;
object-fit:cover;
flex-shrink:0;
}
.testimonial .name {
margin:0;
font-weight:600;
font-size:0.95rem;
}
.testimonial .role {
margin:0;
font-size:0.85rem;
color:#666;
}
/* indicador customizado (opcional) */
.carousel-indicators [data-bs-target] {
width: 10px;
height: 10px;
border-radius: 50%;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 1px 1px 2px #888;
  padding: 6px;
  z-index: 1000;

  /* começa invisível */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: opacity 0.4s ease, transform 0.4s ease;
}

.whatsapp-float.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
