/* ===========================
   FONTES
=========================== */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
}

p, ul, li {
  font-size: 1.1rem;
  line-height: 1.8rem;
}

/* ===========================
   VARIÁVEIS & CORES PRINCIPAIS
=========================== */
:root {
  --primary-color: #387c6f;
  --primary-color-dark: #2e6358;
  --text-color: #fff;
}

/* ===========================
   UTILITÁRIOS
=========================== */
.spacer {
  padding-top: 48px;
  padding-bottom: 35px;
}

@media(min-width: 992px) {
  .spacer {
    padding-top: 65px;
    padding-bottom: 55px;
  }
}

.text-custom {
  color: var(--primary-color);
}

.bg-custom {
  background-color: var(--primary-color);
}

/* ===========================
   TÍTULOS DE SESSÃO
=========================== */
.section-title {
  color: var(--primary-color);
  font-weight: 700;
}

/* ===========================
   PARÁGRAFOS / LEAD
=========================== */
.lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

.p-limit {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

/* ===========================
   BOTÕES
=========================== */
.btn-custom {
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-custom:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  transform: translateY(-2px);
  color: var(--text-color);
}

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

/* ===========================
   NAVBAR TRANSPARENTE
=========================== */
.transparent-navbar {
  position: absolute;   /* fica sobre a hero */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 1000; /* garante que fique sobre a hero */
  transition: background 0.3s ease;
}

.navbar-nav .nav-link {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary-color);
}

.navbar-nav .nav-item {
  margin: 0 0.8rem;
}

.transparent-navbar .nav-link {
  color: #fff !important;
}

.transparent-navbar .dropdown-menu {
  background: rgba(0, 0, 0, 0.7);
}

.transparent-navbar .dropdown-item {
  color: #fff;
}

.transparent-navbar .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

/* No mobile, quando abrir o menu, aplica fundo escuro */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0,0,0,0.9); /* fundo escuro translúcido */
    padding: 1rem;
    border-radius: 0.5rem;
  }
  .navbar-nav .nav-link {
    color: #fff !important; /* garante contraste */
  }
}


/* ===========================
   HERO
=========================== */
.hero {
  height: 550px;
  background: center center/cover no-repeat;
  position: relative;
}

.hero-text {
	padding-top: 200px;
}
	

@media (min-width: 768px) {
	.hero {
	  height: 600px;
	}
	
	.hero-text {
		padding-top: 250px;
	}
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* opacidade da imagem */
}

.hero .container {
  position: relative;
  z-index: 2;
}

.text-shadow {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}


/* =======================
   TRATAMENTOS - CARD HOVER
======================= */
#tratamentos .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#tratamentos .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* ===========================
   CONVENIÊNCIAS
=========================== */
.conveniences {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  position: relative;
  color: #fff;
}

.conveniences .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.75); /* opacidade */
  z-index: 1;
}

.conveniences .container {
  position: relative;
  z-index: 2;
}

.convenience-box {
  background-color: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #fff;
}

#conveniences .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#conveniences .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* ===========================
   TESTIMONIALS SECTION
=========================== */
.testimonials-section .section-title {
    text-align: center;
}

.testimonials-section .carousel-inner {
    overflow: hidden;
}

.testimonials-section .carousel-item .row {
    justify-content: center;
    gap: 1rem;
}

.testimonial-card {
	height: 400px;
    border-radius: 10px;
    padding: 2rem;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
	.testimonial-card {
		height: 280px;
	}
}

.testimonial-card img {
    object-fit: cover;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }

.carousel-control-prev span,
.carousel-control-next span { font-size: 2rem; color: #c7c7c7; }

@media(max-width: 991px) {
    .testimonial-card { max-width: 100%; margin-bottom: 1rem; }
}

/* ===========================
   WHATSAPP BUTTON
=========================== */
.whatsapp-btn {
  position: fixed;
  z-index: 9999;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .whatsapp-btn {
      bottom: 20px;
      right: 20px;
      background-color: var(--primary-color);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      font-size: 1.5rem;
  }
  .whatsapp-btn .whatsapp-text {
      display: none;
  }
}

@media (max-width: 767px) {
  .whatsapp-btn {
      bottom: 7px;
      left: 50%;
      transform: translateX(-50%);
      width: 95%;
      height: 60px;
      background-color: var(--primary-color);
      border-radius: 7px;
      font-size: 1rem;
      padding: 0 10px;
  }
  .whatsapp-btn i {
      margin-right: 10px;
      font-size: 1.5rem;
  }
  .whatsapp-btn .whatsapp-text {
      display: inline;
      font-weight: 500;
  }
}


/* ===========================
   FOOTER
=========================== */
.footer {
    background-color: #000;        /* fundo preto */
    color: #fff;                   /* texto branco */
    padding: 40px 0;               /* espaço interno */
    font-size: 0.95rem;            /* tamanho de fonte confortável */
    line-height: 1.6;              /* espaçamento entre linhas */
    text-align: center;            /* centraliza conteúdo */
}

.footer a {
    color: #fff;                   /* links brancos */
    text-decoration: none;          /* remove sublinhado */
    transition: color 0.3s ease;   /* efeito suave ao passar o mouse */
}

.footer a:hover {
    color: #387c6f;                /* cor de destaque no hover */
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.4); /* linha sutil */
    margin: 20px 0;
}

