*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --green100:#9BA16F;
    --brow100:#EBDDD0;
    --brow200: #745335;
    --brow300: #523F2E;
    --white:#fff;
    --white100: #FFF6EE;
    --black100: #2F3028;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.swiper-pagination-bullet-active{
	background:var(--brow200);
}

.container{
    width: 100%;
    max-width: 1128px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width:768px){
    .container.content{
        flex-direction: column;
        gap: 24px;
    }
}

li{
    list-style-type: none;
}

a{
    text-decoration: none;
    display: block;
}

.button_primary{
    background: var(--brow200);
    color: var(--white);
    padding: 8px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    cursor: pointer;
}

#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 9999;
}

#progress-bar {
    width: 0%;
    height: 2px;
    background: var(--brow300);
    transition: width 0.1s linear;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-bottom {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.tag{
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background-color: var(--brow200);
    display: flex;
}


/* header */
.logo{
    width: 180px;
    border-radius: 4px;
}

.logo img{
    object-fit: contain;
}

header{
    padding: 16px 0px;
}

header .content .menu{
    display: flex;
    align-items: center;
    gap: 24px;
}

header .content .menu nav ul{
    display: flex;
    align-items: center;
    gap: 24px;
}

header .content .menu nav ul li a{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: var(--brow300);
    transition: all 0.3s;
}

header .content .menu nav ul li a:hover{
    color: var(--brow300);
    border-bottom: 1px solid var(--green100);
}
section.hero{
    padding: 16px 20px;
}


section.hero .container{
    background-image: url('https://oriheadspa.com.br/wp-content/uploads/2025/05/Group-85.png');
    border-radius: 24px;
    background-position: center;
    background-size: cover;
    padding: 87px 40px;
    min-height: 397px;
    max-width: calc(1128px - 40px);
    position: relative;
}

section.hero  .box_images{
    position: absolute;
    bottom: 34px;
    right: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
}

section.hero .content .text{
    max-width: 442px;
    width: 100%;
}

section.hero .content .text h1{
    color: var(--white);
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 72px;
    margin: 0 0 8px;
}

section.hero .content .text p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    color: var(--white);
    margin: 0 0 24px;
}

section.hero .content .text .button_primary{
	background: var(--brow100);
    max-width: fit-content;
    color: var(--black100);
}

/* history */


section.history{
    padding: 48px 0;
}

section.history .content .banner{
    width: 100%;
    max-width: 455px;
}

section.history .content .banner img{
    width: 100%;
    object-fit: cover;
}

section.history .content .text{
    width: 100%;
    max-width: 540px;

}

section.history .content .text h2{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: var(--brow200);
    margin: 4px 0 16px;
}

section.history .content .text p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--black100);
}

section.history .content .text a.button_primary{
    background: var(--brow200);
    max-width: fit-content;
    margin: 48px 0 0;
}


/* Estilos responsivos - Mobile First */

/* Media Queries Gerais */
@media (max-width: 1200px) {
    .content {
      padding: 0 20px;
    }
  }
  
  /* Header Responsivo */
  @media (max-width: 768px) {
    header .content {
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
  
    header .content .menu {
      flex-direction: column;
      gap: 16px;
      width: 100%;
    }
  
    header .content .menu nav {
      width: 100%;
      display: none;
    }
  
    header .content .menu nav ul {
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      width: 100%;
      display: flex;
      justify-content: center;
    }
    
    header .content .menu nav ul {
      gap: 12px;
    }
    
    header .content .menu nav ul li a {
      font-size: 12px;
    }
  }
  
  /* Hero Section Responsivo */
  @media (max-width: 992px) {
    section.hero .container {
        padding: 30px 15px;
        min-height: 480px;
        border-radius: 16px;
        display: flex;
        align-items: end;
        justify-content: center;
    }
    
    section.hero .content .text h1 {
      font-size: 36px;
      line-height: 54px;
    }
    
    section.hero .content .text p {
      font-size: 18px;
      line-height: 28px;
    }
    
    section.hero .box_images {
      bottom: 20px;
      right: 20px;
      gap: 16px;
    }
  }
  
  @media (max-width: 768px) {
    section.hero .container {
      padding: 40px 20px;
    }
    
    section.hero .content .text {
      max-width: 100%;
    }
    
    section.hero .content .text h1 {
      font-size: 32px;
      line-height: 46px;
    }
    
    section.hero .content .text p {
      font-size: 16px;
      line-height: 24px;
      margin: 0 0 20px;
    }
    
    section.hero .box_images {
      position: static;
      margin-top: 30px;
      justify-content: center;
    }
  }
  
  @media (max-width: 480px) {
    section.hero .container {
      padding: 30px 15px;
      border-radius: 16px;
    }
    
    section.hero .content .text h1 {
      font-size: 28px;
      line-height: 38px;
    }
    
    section.hero .content .text p {
      font-size: 14px;
      line-height: 22px;
    }
    
    section.hero .box_images {
        display: none;
    }
  }
  
  /* History Section Responsivo */
  @media (max-width: 992px) {
    section.history .content {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
    
    section.history .content .banner,
    section.history .content .text {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    section.history {
      padding: 36px 0;
    }
    
    section.history .content .text h2 {
      font-size: 30px;
      line-height: 32px;
    }
    
    section.history .content .text p {
      font-size: 15px;
      line-height: 24px;
    }
    
    section.history .content .text a.button_primary {
      margin: 36px 0 0;
    }
  }
  
  @media (max-width: 480px) {
    section.history {
      padding: 24px 0;
    }
    
    section.history .content .text h2 {
      font-size: 26px;
      line-height: 28px;
    }
    
    section.history .content .text p {
      font-size: 14px;
      line-height: 22px;
    }
    
    section.history .content .text a.button_primary {
      margin: 24px 0 0;
      width: 100%;
      text-align: center;
    }
  }

/* section services */

section.services{
    padding: 48px 0 88px;
}

section.services svg{
    text-align: center;
    width: 100%;
    margin: 0 auto 8px;
    justify-content: center;
}

section.services h2{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: var(--brow200);
    text-align: center;
    margin: 0 0 42px;
}

section.services .content{
  	overflow: hidden;
	position:relative;
	padding: 0 0 40px;
}

section.services .content .single_service{
    position: relative;
    width: 100%;
    max-width: 264px;
    height: 472px;
    padding: 24px;
    border-radius: 8px;
}
section.services .content .single_service::before{
	content:'';
	position:absolute;
	width:100%;
	height:100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 2;
	border-radius:8px;
}

section.services .content .single_service img{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    border-radius: 8px;
}

section.services .content .single_service .text{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

section.services .content .single_service .text h4{
    background: var(--brow200);
    color: var(--white);
    padding: 4px;
    width: 100%;
    border-radius: 6px;
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;;
}

section.services .content .single_service .text .bottom p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: var(--white);
}

section.services .content .single_service .text .bottom span{
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--white);
    align-items: center;
    justify-content: center;
    margin: 12px 0 0;
}

section.services .content .single_service .text .bottom span svg{
    width: 10px;
    margin:0;
}

/* section diferentials */

section.diferentials{
    background: var(--white100);
    padding: 66px 0;
}

section.diferentials h2{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: var(--brow200);
    text-align: center;
    margin: 0 0 42px;
}

section.diferentials .content{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

section.diferentials .content .box_text{
    width: 100%;
    max-width: 265px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    padding: 0 20px;
    flex-direction: column;
    background-size: cover;
    position: relative;
    border-radius: 6px;
}

section.diferentials .content .box_text.one{
    background-image: url('../images/text1.png');
}

section.diferentials .content .box_text.two{
    background-image: url('../images/text2.png');
}

section.diferentials .content .box_text.three{
    background-image: url('../images/text3.png');
}

section.diferentials .content .box_text h3{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: var(--white);
    margin: 0 0 12px;
}

section.diferentials .content .box_text p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #EDEDED;
}

section.diferentials .content .box_text a{
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 12px;
    left: 20px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: var(--white);
    gap: 4px;
}


section.diferentials .content .box_img{
    width: 100%;
    max-width: 129px;
}


/* Serviços Responsivo */
@media (max-width: 992px) {
    section.services .content {
        overflow:hidden;
      justify-content: center;
      gap: 20px;
    }
    
    section.services .content .single_service {
      max-width: 230px;
      height: 450px;
    }
  }
  
  @media (max-width: 768px) {
    section.services {
      padding: 40px 0 60px;
    }
    
    section.services h2 {
      font-size: 30px;
      line-height: 32px;
      margin: 0 0 30px;
    }
    
    section.services .content {
      flex-wrap: wrap;
      gap: 30px;
    }
    
    section.services .content .single_service {
      max-width: 280px;
      height: 420px;
    }
  }
  
  @media (max-width: 576px) {
    section.services {
      padding: 30px 0 50px;
    }
    
    section.services h2 {
      font-size: 28px;
      line-height: 30px;
      margin: 0 0 24px;
    }
    
    section.services .content .single_service {
      max-width: 90%;
      height: 520px;
    }
    
    section.services .content .single_service .text h4 {
      font-size: 18px;
      line-height: 18px;
    }
    
    section.services .content .single_service .text .bottom p {
      font-size: 13px;
      line-height: 20px;
    }
  }
  
  /* Diferenciais Responsivo */
  @media (max-width: 992px) {
    section.diferentials {
      padding: 50px 0;
    }
    
    section.diferentials .content {
      gap: 15px;
    }
    
    section.diferentials .content .box_text {
      max-width: 230px;
      padding: 0 15px;
    }
    
    section.diferentials .content .box_img {
      max-width: 100px;
    }
  }
  
  @media (max-width: 768px) {
    section.diferentials {
      padding: 40px 0;
    }
    
    section.diferentials h2 {
      font-size: 30px;
      line-height: 32px;
      margin: 0 0 30px;
    }
    
    section.diferentials .content {
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }
    
    section.diferentials .content .box_text {
      max-width: 280px;
      min-height: 220px;
      padding: 20px 15px 40px;
    }
    
    section.diferentials .content .box_img {
        display: none;
    }
  }
  
  @media (max-width: 576px) {
    section.diferentials {
      padding: 30px 0;
    }
    
    section.diferentials h2 {
      font-size: 28px;
      line-height: 30px;
      margin: 0 0 24px;
    }
    
    section.diferentials .content .box_text {
      max-width: 100%;
    }
    
    section.diferentials .content .box_text h3 {
      font-size: 20px;
      line-height: 24px;
      margin: 0 0 10px;
      text-align: center;
    }
    
    section.diferentials .content .box_text p {
      text-align: center;
    }
    
    section.diferentials .content .box_text a {
      left: 50%;
      transform: translateX(-50%);
    }
    
    section.diferentials .content .box_img {
      max-width: 100%;
    }
  }

section.video{
    padding: 44px 0;
}

section.video .container{
    width: 100%;
    max-width: 744px;
}

section.video .container .video_single{
    width: 100%;
}

section.video .container .video_single img{
    width: 100%;
}

section.video .container .video_single video{
	border-radius:24px;
}

/* gallery */

section.gallery{
    padding: 44px 0;
}

section.gallery .content{
    flex-wrap: wrap;
    gap: 16px 0;
}

section.gallery .content img{
    width: 100%;
    max-width: 49%;
}

/* testimonials */

section.testimonials{
    padding: 44px 0 20px;
}

section.testimonials .content{
	flex-direction:column;
}

section.testimonials .img-test{
	position:relative;
}

section.testimonials .img-test::after{
	position:absolute;
	content:"";
	top:0px;
	left:0;
	z-index:2;
		background: rgba(255, 255, 255, 0.5); /* branco com transparência */
	backdrop-filter: blur(5px); /* desfoca o que está por trás */
	-webkit-backdrop-filter: blur(5px); 
	width:100%;
	height:70px;
	border-radius: 12px 12px 0 0 ;
		display:none;
}

.myTestimonials{
	padding:0 0 40px;
}

/* contact */

section.contact{
    padding: 44px 0 88px;
}

section.contact .content{
    max-width: 1024px;
}

section.contact .content .text{
    max-width: 448px;
}

section.contact .content .text h3{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    color: var(--brow200);
    margin: 0 0 16px;
}

section.contact .content .text p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #251F19;
}

section.contact .content .text h4{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    color: var(--brow200);
    margin: 0 0 16px;
}

section.contact .content .text a{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #251F19;
	display:flex;
	align-items:center;
	cursor:pointer;
	gap:6px;
}

section.contact .content .text a svg{
	width:18px;
	height:18px;
}

section.contact .content .text .map{
    width: 100%;
    max-width: 270px;
    height: 204px;
    border-radius: 12px;
}


section.contact .content .text .map iframe{
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

section.contact .content .box_form{
    width: 100%;
    max-width: 456px;
    border-radius: 20px;
    background-color: var(--brow100);
    padding: 33px 24px;
}

section.contact .content .box_form form{
    width: 100%;
    display: flex;
    flex-direction: column;
}

section.contact .content .box_form form label{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: var(--brow200);
    margin: 0 0 6px;
}

section.contact .content .box_form form input{
    width: 100%;
    margin: 0 0 20px;
    height: 42px;
    background: var(--white);
    padding-left: 8px;
    border: none;
    outline: none;
    border-radius: 6px;
}

section.contact .content .box_form form input[type=submit]{
    cursor: pointer;
    background: var(--brow300);
    text-transform: uppercase;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 36px;
    color: var(--white);
}


/* footer */

footer{
    background: var(--brow200);
    padding: 16px 0;
}

footer p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    color: var(--white);
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

footer p a{
    color: var(--white);
    text-decoration: underline;
}

footer .icons{
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .icons a{
    cursor: pointer;
}


/* Video Section Responsivo */
@media (max-width: 768px) {
    section.video {
      padding: 36px 0;
    }
    
    section.video .container {
      max-width: 100%;
      padding: 0 20px;
    }
  }
  
  @media (max-width: 480px) {
    section.video {
      padding: 30px 0;
    }
  }
  
  /* Gallery Section Responsivo */
  @media (max-width: 768px) {
    section.gallery {
      padding: 36px 0;
    }
    
    section.gallery .content {
      gap: 12px 0;
      flex-direction: row;
    }
    
    section.gallery .content img {
      max-width: 48%;
    }
  }
  
  @media (max-width: 480px) {
    section.gallery {
      padding: 30px 0;
    }
    
    section.gallery .content img {
      max-width: 100%;
      margin-bottom: 10px;
    }
  }
  
  /* Testimonials Section Responsivo */
  @media (max-width: 768px) {
    section.testimonials {
      padding: 36px 0;
    }
  }
  
  @media (max-width: 480px) {
    section.testimonials {
      padding: 30px 0;
    }
  }
  
  /* Contact Section Responsivo */
  @media (max-width: 992px) {
    section.contact .content {
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }
    
    section.contact .content .text,
    section.contact .content .box_form {
      max-width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    section.contact {
      padding: 36px 0 60px;
    }
    
    section.contact .content .text h3 {
      font-size: 30px;
      line-height: 32px;
    }
    
    section.contact .content .text p {
      font-size: 16px;
      line-height: 24px;
    }
    
    section.contact .content .text h4 {
      font-size: 20px;
      line-height: 28px;
    }
    
    section.contact .content .text .map {
      max-width: 100%;
    }
    
    section.contact .content .box_form {
      padding: 24px 20px;
    }
    
    section.contact .content .box_form form label {
      font-size: 22px;
      line-height: 30px;
    }
    
    section.contact .content .box_form form input[type=submit] {
      font-size: 18px;
      line-height: 28px;
    }
  }
  
  @media (max-width: 480px) {
    section.contact {
      padding: 30px 0 50px;
    }
    
    section.contact .content .text h3 {
      font-size: 28px;
      line-height: 30px;
    }
    
    section.contact .content .text p {
      font-size: 15px;
      line-height: 22px;
    }
    
    section.contact .content .text h4 {
      font-size: 18px;
      line-height: 26px;
    }
    
    section.contact .content .box_form {
      padding: 20px 15px;
      border-radius: 15px;
    }
    
    section.contact .content .box_form form label {
      font-size: 20px;
      line-height: 26px;
    }
    
    section.contact .content .box_form form input {
      margin: 0 0 15px;
      height: 38px;
    }
    
    section.contact .content .box_form form input[type=submit] {
      font-size: 16px;
      line-height: 24px;
    }
  }
  
  /* Footer Responsivo */
  @media (max-width: 768px) {
    footer .content {
      flex-direction: column;
      gap: 15px;
    }
    
    footer p {
      order: 2;
    }
    
    footer .icons {
      justify-content: center;
      order: 1;
    }
  }
  
  @media (max-width: 480px) {
    footer {
      padding: 20px 0;
    }
    
    footer p {
      font-size: 11px;
      line-height: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
  }

.text-center{
	margin:24px 0 0;
	display:flex;
	justify-content:center;
	align-items:center;
}

.text-center .button_primary{
	max-width:fit-content;
	margin:0 auto;
}