/* ======================================================
   RESET / LINKS
====================================================== */

a{
    text-decoration: none;
    color: inherit;
}


/* ======================================================
   VARIÁVEIS & CORES PRINCIPAIS
====================================================== */

:root {
  --primary-color: #b08b5b;
  --text-color: #333;
}


/* ======================================================
   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);
}


/* ======================================================
   TIPOGRAFIA
====================================================== */

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

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


/* ======================================================
   NAVBAR
====================================================== */

.transparent-navbar .nav-link{
    color: #333;
}

.transparent-navbar .nav-link:hover{
    color: #000;
}

.navbar .nav-link{
    font-size: 1.1rem;
	text-transform: uppercase;
}

.navbar-nav .nav-link{
    padding-left:10px;
    padding-right:10px;
    font-size:1rem;
}


/* ======================================================
   HERO (HOME)
====================================================== */

.hero{
    position: relative;    
	height: 70vh;
    background-size: cover;
    background-position: center;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin-left: 5vw;
}

.hero h1{
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* Desktop */
@media (min-width: 992px){
    .hero h1{
        font-size: 3rem;
    }
}

.hero-subtitle{
    font-size: 1.25rem;
    color: #fff;
    margin-top: 15px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero .btn-primary{
    background-color: #000;
    border: none;
	border-radius: 30px;
    padding: 12px 32px;
}

.hero .btn-primary:hover{
    background-color: #222;
}


/* ======================================================
   BEM-VINDO
====================================================== */

.welcome{
    padding: 50px 0;
}

.welcome-small{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.welcome-title{
    font-size: 2rem;
    margin-bottom: 20px;
}

.welcome-title span{
    color: #b08b5b;
}

.welcome-lead{
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.welcome-image img{
    border-radius: 12px;
}

.welcome-signature{
	font-weight: 700;
    margin-top: 20px;
}


/* ======================================================
   TRATAMENTOS
====================================================== */

.treatments{
    padding: 90px 0;
    background: #f8f6f3;
}

.section-title{
    font-size: 2.4rem;
}

.section-subtitle{
    max-width: 620px;
    margin: 10px auto 40px;
    color: #666;
}

.treatment-card{
    display: block;
    text-decoration: none;
    color: #333;
}

.treatment-image{
    height: 230px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform .35s ease;
}

.treatment-card:hover .treatment-image{
    transform: scale(1.05);
}

.treatment-card h3{
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.treatment-card p{
    font-size: 0.95rem;
    color: #666;
}

.gift-callout{
    background:#f7f4ef;
    border-left:4px solid #B07A33;
    padding:18px;
    border-radius:6px;
	margin-bottom: 20px;
}


/* ======================================================
   DAY SPA
====================================================== */

.day-spa{
    padding: 100px 0;
}

.day-spa-card{
    display: block;
    background: #f8f6f3;
    border-radius: 20px;
    padding: 25px;
    color: #333;
    transition: transform .3s ease, box-shadow .3s ease;
}

.day-spa-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.day-spa-image{
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
}

.day-spa-card h3{
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.day-spa-card p{
    color: #666;
    font-size: 0.95rem;
}

.day-spa-btn{
    display: inline-block;
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #c8a27a;
    transition: all .3s ease;
}

.day-spa-card:hover .day-spa-btn{
    color: #a8845f;
    transform: translateX(4px);
}


/* ======================================================
   CONVENIÊNCIAS
====================================================== */

.conveniences{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  position: relative;
  color: #fff;
}

.conveniences .overlay{
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.75);
  z-index:1;
}

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

.convenience-box{
  background-color: rgba(0,0,0,0.55); /* fundo mais escuro */
  border:1px solid rgba(255,255,255,0.25);
  border-radius:8px;
  padding:20px;
  text-align:center;
  color:#ffffff;
}

.convenience-box h5{
  color:#ffffff;
  font-weight:600;
}

.convenience-box p{
  color:rgba(255,255,255,0.9);
}

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

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


/* ======================================================
   WHATSAPP BUTTON
====================================================== */

.whatsapp-btn{
  position:fixed;
  z-index:9999;
  color:#fff;
  transition:all .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

@media (min-width:768px){
  .whatsapp-btn{
      bottom:20px;
      right:20px;
      background-color:#157347;
 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:#157347;
      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;
  }
}


/* ======================================================
   ABOUT / GALERIA
====================================================== */

.about-logo{
    max-width:300px;
}

.gallery{
    background:#f8f6f3;
}

.gallery img{
    border-radius:12px;
    transition:transform .3s ease;
}

.gallery-item:hover img{
    transform:scale(1.05);
}


/* ======================================================
   TESTEMUNHOS
====================================================== */

.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 .3s ease, box-shadow .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;
    }
}


/* ======================================================
   VALE PRESENTE
====================================================== */

.gift-card p{
    font-size: 1.05rem;
    line-height: 1.7;
}

.gift-options{
    background-color: #f8f6f3;
}

.gift-options .section-title{
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.gift-options .lead{
    font-size: 1.1rem;
    color: #555;
}

.gift-options ul{
    padding-left: 18px;
    margin-bottom: 20px;
}

.gift-options ul li{
    margin-bottom: 6px;
}

.gift-options ol{
    padding-left: 20px;
    margin-bottom: 20px;
}

.gift-options ol li{
    margin-bottom: 8px;
}

.gift-options .btn{
    padding: 12px 26px;
}

.gift-btn{
    display: inline-block;
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #c8a27a;
    transition: all .3s ease;
}


/* ======================================================
   LOCALIZAÇÃO
====================================================== */

.location{
    padding:100px 0;
}

.location-address{
    font-size:1.1rem;
    margin-top:20px;
    line-height:1.7;
}

.location-hours{
    margin-top:20px;
    color:#555;
}

.btn-location{
    background:#3f7a6e;
    color:#fff;
    padding:12px 25px;
    border-radius:6px;
    display:inline-block;
}

.btn-location:hover{
    background:#33645a;
}

.map-container iframe{
    border-radius:12px;
}


/* ======================================================
   FOOTER
====================================================== */

.footer{
    background:#000;
    color:#fff;
    padding:60px 0;
}

.footer a{
    color:#fff;
    transition:opacity .3s ease;
}

.footer a:hover{
    opacity:.7;
}

.footer img{
    filter:brightness(0) invert(1);
}

.footer hr{
    border-color:rgba(255,255,255,0.2);
}

.footer .lead{
    font-size:1rem;
}

.footer i{
    font-size:1.4rem;
}