@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root{
    --fonte-destaque: Playfair Display, sans-serif;
    --fonte-principal: Inter, sans-serif;
    --cor-primaria: #5a1516;
}

*{
    margin: 0;
    padding: 0;
}

strong{
  color: #CBB97E;
}

h1,h2,h3{
  font-family: var(--fonte-destaque);
}

body, html{
  overflow-x: hidden;
}

body{
  font-family: var(--fonte-principal);
  line-height: 2em;
}


 header {
  position: fixed;
  color: white;
  padding: 20px 0px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
  background-color: transparent; 
}

header.scrolled {
  background-image: linear-gradient(45deg, #5a1516, #8D2B2E, #5a1516);
  padding: 15px 0px; 
}

header figure {
  margin: 0;
}

#logo {
  width: 250px;
  transition: filter 0.3s ease;
}


.btn-whatsapp{
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  border: none;
  
}

.btn-whatsapp:hover{
    background-color: #1ebc57;
}

.btn-whatsapp a{
    color: white;
}

a{
    text-decoration: none;
}

#bandeira{
    position: relative;
    max-width: 100vw;
    background-image: linear-gradient(rgba(0, 0, 0, 0.459), rgba(0, 0, 0, 0.452)), url(imagens/bandeira.png);
    background-position: 40% 20%;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    margin-bottom: 50px;

}

#bandeira div{
    position: absolute;
    top: 50%;
    left: 20%;
    color: white;
    transform: translate(-20%, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    width: 50%;
    
    

}

#bandeira h1{
  font-weight: 500;
  font-family: var(--fonte-destaque);
  line-height: 1.3em;
}

#bandeira button{
    display: block;
    left: 50%;
    width: fit-content;
    cursor: pointer;
    padding: 0 15px;
    background: linear-gradient(90deg, #bfa14a, #e6c76b);
    animation: pulse 2.5s infinite;
}


#bandeira button:hover, .btn-agendamento:hover{
  filter: brightness(1.1);
  transition: 0.5s;
}

#bandeira button a{
  display: block;
  width: 100%;
  padding: 15px 0;
  text-align: left;
 
}

.btn-agendamento {
    width: fit-content;
    cursor: pointer;
    padding: 8px 20px;
    background: linear-gradient(90deg, #bfa14a, #e6c76b);
    text-decoration: none;
    border-radius: 8px;
    color: white;
    font-weight: 500;

    animation: pulse 2.5s infinite;
}

/* Animação */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(191, 161, 74, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(191, 161, 74, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(191, 161, 74, 0);
    }
}


p{
    line-height: 2em;
    margin: 20px 0;
    text-align: justify;

}


section {
  margin: 50px auto;
}

section h3, .cta h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2rem;
  color:#8D2B2E;
  margin-bottom: 25px;
  border-bottom: 3px solid #CBB97E;
  display: inline-block;
  padding-bottom: 5px;
}

.sobre p {
  font-size: 1.15rem;


}

.sobre {
  padding: 80px 10%;
  background-color: #fff;
}

.sobre-container {
  display: grid;
  gap: 60px;
  align-items: center;
}

/* Foto */
.sobre-foto img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.sobre-foto img:hover {
  transform: scale(1.03);
}

/* Texto */
.sobre-texto h3 {
  color: #8b1e1e; /* marsala */
  margin-bottom: 20px;
}

.sobre-texto p {
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 650px;
}

.servicos-lista {
  display: grid;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.servico-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
  font-weight: 600;
  transition: transform 0.3s ease;
  cursor: default;
  
}

.servico-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 15px rgba(0,0,0,0.15);
  background-color: #CBB97E;
  color: white;
}


.servico-item:hover i {
  color: white;
}

.servico-item i {
  font-size: 24px;
  color: #CBB97E;

}

#container-form{
  display: flex;
  align-items: center;
  gap: 50px;  
  background-image: 
  linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
  url(imagens/background-form.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  padding: 40px;
    
}

#container-form p{
  font-size: 1.5em;
  color: white;
}

.cta{
  background-color: #F5F5F5;
  padding: 20px 0;
}



form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  
}

input, textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

form button {
  padding: 12px;
  border-radius: 6px;
  border: none;
  background-color: #8D2B2E;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #631417;
}

.container-agendamento{
  align-items: center ;
 
}

.container-agendamento img {
  animation: respirar 4s ease-in-out infinite;
}

/* Animação */
@keyframes respirar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}



.agendamento-info{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
 
}

.agendamento-info i{
  color: #8D2B2E;
}



.social-buttons {
    position: fixed;
    bottom: 110px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.social-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-button img {
    width: 30px;
    height: 30px;
}


/* WhatsApp Button */
.whatsapp-button {
    background-color: #25d366;
}

.whatsapp-button:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ANIMAÇÃO DE SURGIMENTO */

.surgir {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.surgir.aparecendo {
  opacity: 1;
  transform: translateY(0);
}

.surgir-direita {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}
.surgir-direita.aparecendo {
  transform: translateX(0);
  opacity: 1;
}

.surgir-esquerda {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}
.surgir-esquerda.aparecendo {
  transform: translateX(0);
  opacity: 1;
}

.surgir-baixo {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}
.surgir-baixo.aparecendo {
  transform: translateY(0);
  opacity: 1;
}


.rodape {
  background-color: #631417;
  color: white;
  padding: 40px 20px;
  font-family: sans-serif;
}

.rodape p{
  margin: 10px 0;
}

.rodape info{
  text-align: left;
}

.container-rodape {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-rodape, .contato-rodape, .social-rodape {
  flex: 1 1 250px;
}

.social-rodape div{
  display: flex;
  flex-direction: column;
}
.rodape h4 {
  margin-bottom: 12px;
  font-size: 1.2em;
}

.rodape a {
  color: white;
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.3s;
  

}

.rodape a:hover {
  color: #CBB97E;
}

.copyright-rodape {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9em;
  color: #ccc;
}

/* página politica privacidade*/

#mainPolitica{
  max-width: 800px;
  margin: 250px auto 50px;
  padding: 0 20px;
}

#mainPolitica h1, #mainPolitica h2 , #mainPolitica a{
  color: #631417;
}

.btn-voltar{
  border: none;
  padding: 10px 30px;
  background-color: #bfa14a;
  color: white;
  border-radius: 4px; 
  cursor: pointer;
}

.btn-voltar:hover{
  background-color: #8b1e1e;
  transition-duration: 0.5s;
}