/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "POPPINS-REGULAR";
    src: url(assets/fonts/POPPINS-REGULAR.TTF);
}
@font-face {
    font-family: "POPPINS-BOLD";
    src: url(assets/fonts/POPPINS-BOLD.TTF);
}

body {
    font-family: "POPPINS-REGULAR";
    line-height: 1.2;
    color: #333;
    background: linear-gradient(to bottom, #FAD8FE, #da85ff);    
}

/* Estilo do cabeçalho */

.header {            
    background-image: url("assets/web-site_01.png");       
    background-size: 100vw 100vh; 
    background-position: top;            
    background-repeat: no-repeat;   
    display: flex;
    flex-direction: column;    
    color: black;
    padding: 45px 25vh;        
    width: 100vw;
    height: 100vh;
}

.Logo-header {
    margin-bottom: 5vh;
}

.Logo-header img{
    max-width: 200px;
    max-height: 200px;    
}

.Slogam-Header h2 {
    font-size: 50pt;
    margin-bottom: 20px;
    color: #fff;
    font-family: "POPPINS-BOLD";
}

.Slogam-Header span {    
    color: #FFA6FB;
}

.Btn-saiba-mais {
    margin-top: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: aparecer 1s ease-out 0.5s forwards;
}

@keyframes aparecer {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.btn-primary {       
    background-color: #F9A8F6;    
    border: solid #000 1px;
    padding: 5px 40px;    
    color: #fff;    
    font-family: "POPPINS-BOLD";
    text-decoration: none;
    font-size: 36pt;    
    max-width: 400px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #E0A7FA;
} 


/* Seção "Sobre" */
.sobre {
    background-image: url("assets/web-site_02.png");         
    height: 60vmax;
    background-position: top; 
    background-size: 100vw 100vh;    
    background-repeat: no-repeat; 
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: start;
    padding: 40px 20px;    
    color: #000;    
}

.sobre h2 {
    font-family: "POPPINS-BOLD";
    text-align: center;
    font-size: 36pt;
    margin-bottom: 50px;
}

.sobre p {
    font-size: 22pt;
    padding: 0 100px;    
}

.imgPessoa{
    border-radius: 200px;
    margin-right: 30px;
    max-width: 550px;
    max-height: 550px;  
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1s ease, opacity 1s ease;  
}

.imgPessoa.reveal {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Seção serviços */

.section-servicos {    
    background-image: url("assets/web-site_03.png");         
    height: 60vmax;
    background-position: top; 
    background-size: 100vw 100vh;    
    background-repeat: no-repeat;         
    font-family: "POPPINS-REGULAR";
    height: 100vh;
    width: 100vw;    
    color: black;
    /* background: rgb(250,220,246);
    background: linear-gradient(125deg, rgba(250,220,246,0.9971509971509972) 0%, rgba(215,114,201,1) 1%, rgba(226,105,178,1) 45%, rgba(226,105,178,1) 66%, rgba(209,90,161,1) 79%, rgba(190,78,153,1) 91%); */
    padding: 50px 0px;     
}

.Titulo-Pagina-Servicos{
    font-family: "POPPINS-BOLD";
    color: white;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36pt;    
}

.T-Servico {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36pt;    
}

.container-servicos {
    display: flex;  
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;  
            
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1s ease, opacity 1s ease;  
}

.container-servicos.reveal {
    opacity: 1;
    transform: translateY(0);    
}

.servicos {    
    text-align: center;
    background: #fff;    
    border-radius: 5px;
    margin: 25px 30px;
    padding: 10px;
    max-width: 400px;
    max-height: 200px;
}

.servicos h2{
    font-family: "POPPINS-BOLD";
    font-size: 15pt;
    color: #000;
    background-color: #C8B8FF;
    border-radius: 10px;
    padding: 10px;
    margin-top: -30px;
}

.servicos h3{
    font-size: 15pt;
}

/* Seção "Depoimentos" */
.depoimentos {
    background-image: url("assets/web-site_04.png");         
    height: 60vmax;
    background-position: top; 
    background-size: 100vw 100vh;    
    background-repeat: no-repeat; 
    height: 100vh;
    width: 100vw;      
    background-color: #fff;    
    padding-top: 20px;
}

.depoimentos h2 {
    font-family: "POPPINS-BOLD";
    text-align: center;
    font-size: 36pt;
    color: #000;    
}

.depoimentos h3 {
    text-align: center;
    font-size: 15pt;
    color: #000;
    margin-bottom: 50px;
}

.swiper {
    width: 95%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    text-align: center;    
}

.depoimento {    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid #9f9f9f;
    border-radius: 10px;
    background: #fffbff;    
}

.depoimento img {
    width: 300px;
    height: 400px;    
    border-radius: 5px;        
}

/* Chamada */

.Chamada {
    background-image: url("assets/web-site_05.png");         
    background-position: top; 
    background-size: 100vw 100vh;    
    background-repeat: no-repeat; 
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;            
    font-family: "POPPINS-REGULAR";    
}

.Chamada-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: start;  
    padding: 90px 50vh;    
}

.Chamada h1{      
    font-family: "POPPINS-REGULAR";
    font-size: 22pt;
    color: #fff;    
}

.Chamada span {  
    font-family: "POPPINS-BOLD";  
    font-size: 22pt;
    color: #fff;
}

.btn-whatsApp {
    display: flex;
    align-items: center;
    background-color: #17EA11;    
    border: solid #000 1px;
    border-radius: 20px;
    padding: 15px 25px;    
    color: #fff;    
    font-family: "POPPINS-REGULAR";
    text-decoration: none;
    font-size: 22pt;    
    max-width: 550px;
    transition: background 0.5s;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 1s ease, opacity 1s ease;  
}

.btn-whatsApp.reveal {
opacity: 1;
transform: translateY(0);
}


.btn-whatsApp:hover {
    background: #189D0E;
} 


.Chamada img {
    max-width: 64px;
    max-height: 64px;
    margin-right: 20px;
}

/* Ajustes para tablet */
@media (max-width: 968px) {

/* Estilo do cabeçalho */

.header {   
    background-image: url("assets/mobile_01.png");             
    padding: 30px 45px;            
}

.Logo-header {
    margin-bottom: 5vh;
}

.Logo-header img{
    max-width: 250px;
    max-height: 250px;    
}

.Slogam-Header h2 {
    font-size: 50pt;    
}


.Btn-saiba-mais {
    margin-top: 50px;
}

.btn-primary {           
    font-size: 45pt;    
    max-width: 300px;    
}


/* Seção "Sobre" */
.sobre {    
    background-image: url("assets/mobile_02.png");
    padding: 30px 30px;       
    display: grid;    
    grid-template-columns: repeat(3,1fr);      
}

.sobre h2 {    
    grid-column: 1 / -1;
    font-size: 50pt;
    margin-bottom: 60px;
    margin-top: -10vw;
}

.sobre .container {
    display: contents; /* Deixa os filhos entrarem direto na grid */
}

.sobre p {
    grid-column: 1 / 3;
    font-size: 20pt;
    padding: 0 20px;        
    margin: 0;  
    margin-top: -45vw; 
}

.imgPessoa{            
    grid-column: 3/4;      
    margin: 0;    
    margin-top: -45vw;    
    max-width: 450px;
    max-height: 450px;        
}

/* Seção serviços */

.section-servicos {    
    background-image: url("assets/mobile_03.png");
    padding: 80px 0px;    
}

.Titulo-Pagina-Servicos {    
    margin-bottom: 90px;
    font-size: 50pt;
}


.servicos {                
    margin: 30px 15px;
    padding: 30px 10px;
    padding-top: 0px;
    max-width: 270px;
    max-height: 500px;    
}

.servicos h2{
    font-size: 16pt;    
    padding: 5px;   
    margin-top: -20px; 
}

.servicos h3{    
    font-size: 15pt;
}

/* Seção "Depoimentos" */

.depoimentos {
    background-image: url("assets/mobile_04.png");   
    padding-top: 80px;
}

.depoimentos h2 {    
    font-size: 50pt;        
}

.depoimentos h3 {    
    font-size: 24pt;    
    margin-bottom: 50px;
}

.depoimento img {
    width: 500px;
    height: 600px;        
}

/* Chamada */
.Chamada {
    background-image: url("assets/mobile_05.png");
}

.Chamada-text {   
    padding: 120px 60px;    
}

.Chamada h1{          
    font-size: 30pt;    
    margin-bottom: 0px;
}

.Chamada span {      
    font-size: 30pt;    
}

.btn-whatsApp {    
    padding: 10px 10px;        
    font-size: 30pt;    
    max-width: 55vh;    
}

}

/* Ajustes para celular */
@media (max-width: 480px) {    

/* Estilo do cabeçalho */

.header {   
    background-image: url("assets/mobile_01.png");             
    padding: 10px 25px;            
}

.Logo-header {
    margin-bottom: 5vh;
}

.Logo-header img{
    max-width: 150px;
    max-height: 150px;    
}

.Slogam-Header h2 {
    font-size: 30pt;    
}


.Btn-saiba-mais {
    margin-top: 50px;
}

.btn-primary {           
    font-size: 25pt;    
    max-width: 300px;    
}


/* Seção "Sobre" */
.sobre {    
    background-image: url("assets/mobile_02.png");
    padding: 10px 5px;       
    display: grid;    
    grid-template-columns: repeat(3,1fr);            
}

.sobre h2 {          
    grid-column: 1 / -1;            
    font-size: 30pt;     
    margin: 0;       
}

.sobre .container {
    display: contents; /* Deixa os filhos entrarem direto na grid */
}

.sobre p {          
    grid-column: 1 / 3;
    font-size: 12pt;
    padding: 0 10px;  
    margin: 0;  
    margin-top: -45vw;    
}

.imgPessoa{            
    grid-column: 3/4;      
    margin: 0;    
    margin-top: -45vw;    
    max-width: 250px;
    max-height: 250px;        
}

/* Seção serviços */

.section-servicos {    
    background-image: url("assets/mobile_03.png");
    padding: 40px 0px;    
}

.Titulo-Pagina-Servicos {    
    margin-bottom: 40px;
    font-size: 30pt;
}

.T-Servico{
    margin-bottom: 0;
}

.servicos {                
    margin: 25px 5px;
    padding: 20px 10px;
    padding-top: 5px;
    max-width: 170px;    
}

.servicos h2{
    font-size: 10pt;    
    padding: 5px;   
    margin-top: -20px; 
}

.servicos h3{
    margin-top: 15px;
    font-size: 10pt;
}

/* Seção "Depoimentos" */

.depoimentos {
    background-image: url("assets/mobile_04.png");   
}

.depoimentos h2 {    
    font-size: 30pt;        
}

.depoimentos h3 {    
    font-size: 14pt;    
    margin-bottom: 50px;
}

.depoimento img {
    width: 300px;
    height: 400px;        
}

/* Chamada */
.Chamada {
    background-image: url("assets/mobile_05.png");
}

.Chamada-text {   
    padding: 70px 50px;    
}

.Chamada h1{          
    font-size: 18pt;    
    margin-bottom: 0px;
}

.Chamada span {      
    font-size: 18pt;    
}

.btn-whatsApp {    
    padding: 10px 10px;        
    font-size: 18pt;    
    max-width: 40vh;    
}

}
