*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "DM Serif Text", serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Cores principais */
    --bg-color: #101010; /* Fundo principal */
    --main-color: #6A0606; /* Cor primária */
    --secondary-color: #B77D00; /* Cor secundária */
    --font-color: #DCDCDC; /* Cor do texto */
    --accent-color: #6A0606; /* Cor de destaque */
    --border-color: #DCDCDC; /* Cor de borda */
    --secondary-bg: #350303; /* Fundo secundário */

    /* Tamanhos de fonte */
    --big-font: 4.6rem;
}


body{
    background-color: var(--bg-color);
    color: var(--font-color);
}

header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 35px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;

}

.logo img{
    width: 4rem;
    height: 4rem;
 }

.navlist{
    display: flex;
}

.navlist a{
    display: inline-block;
    margin: 0 35px;
    color: var(--font-color);
    transition: all .6s ease;

}

a{
    font-size:1.2rem ;
}

.navlist a:hover{
    color: var(--main-color);
}

.right-content{
    display: flex;
    align-items: center;
}

.nav-btn{
    display: inline-block;
    padding: 9px 24px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 7px;
    color: var(--font-color);
    font-size: 15px;
    font-weight: 500;
    transition: all .6s ease;

}

.nav-btn:hover{
    transform: translate(-5px);
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

#menu-icon{
    font-size: 42px;
    margin-left: 25px;
    cursor: pointer;
    z-index: 10001;
    display: none;
}

section{
    padding: 0 14%;

}

.hero{
    position: relative;
    width: 100%;
    height: 100vh;
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

.hero-img img{
    width: 100%;
    height: auto;
}

.hero-text h1{
    font-size: var(--big-font);
    color: var(--);
    font-family: "Pinyon Script", cursive;
    font-weight: 900;
    margin: 15px 0;
    text-align: center;

}

.hero-text h5{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.hero-text p{
    width: 100%;
    max-width: 620px;
    font-weight: 400;
    line-height: 32px;
    color: var(--font-color);
    margin-bottom: 40px;
    text-align: center;
}

.main-hero{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn{
    display: inline-block;
    padding: 13px 32px;
    background: var(--main-color);
    border: 2px solid transparent;
    border-radius: 7px;
    color: var(--font-color);
    font-size: 15px;
    font-weight: 500;
    transition: all .6s ease;
    margin-right: 20px;
}

.btn:hover{
    transform: scale(1.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.icons{
    position: absolute;
    left: 10%;
    top: 35%;
    padding: 0 7%;
    transform: translate(-50%);
}

.icons i{
    display: block;
    margin: 35px 0;
    font-size: 26px;
    transition: all .6s;
}

.ri-instagram-fill{
    color: #E1306C;
}

.ri-whatsapp-fill{
    color: #25D366;
}

.ri-mail-fill{
    color: #DCDCDC;
}

.ri-map-pin-fill{
    color:red;
}
.ri-map-pin-fill span{
    color: var(--font-color);
    font-size: 1.3rem ;
}

.ri-phone-fill{
    color: var(--secondary-color)
}

.icons i:hover{
    transform: translateY(-5px);
    color: var(--secondary-color);
}




@media (max-width: 1770px){
    header{
        padding: 22px 4%;
    };
    .icons{
        padding: 0 4%;
    }

}
@media (max-width: 1670px){
    :root{
        --big-font: 4.5rem;
    }
}

@media (max-width: 1370px){
    .icons{
        display: none;
    }
    section{
        padding: 0 4%;
    };
}

@media(max-width: 1150px){
    .btn{
        padding: 10px 23px;
    }
}

@media(max-width: 950px){
    #menu-icon {
        display: block;
    }
    .navlist{
        position: absolute;
        width: 100%;
        height: 100vh;
        padding: 100px 50px;
        top: 0;
        left: 100%;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(32px);
        transition: all .6s ease-in-out;
    }
    .navlist a{
        display: block;
        padding: 0;
        margin: 0px 0px 25px 0px;
        font-size: 1.7rem;
    }
    .navlist.open{
        left: 0;
    }
}

@media(max-width: 920px){
    .hero{
        grid-template-columns: 1fr;
        height: auto;
    }
    .hero-text{
        padding-top: 170px;
    }
    .hero-img{
        height: 500px;
        width: 500px;
        margin: 0 auto;
    }
    .hero-img img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

@media(max-width: 600px){
    .hero{
        height: 100vh;
    }
    .hero-img{
        height: 400px;
        width: 400px;
        margin: 0 auto;
    }
    :root{
        --big-font: 4rem;
    }
}

@media(max-width: 440px){
    :root{
        --big-font: 3.2rem;
    }
    .hero-text h5{
        font-size: 15px;
    }
    .hero-text p{
        font-size: 13px;
    }
    .hero-img{
        height: 300px;
        width: 300px;  
        margin: 0 auto;
    }
}

@media(max-width: 380px){
    .hero-img{
        height: 250px;
        width: 250px;  
        margin: 0 auto;
    }
}


/* Seção Sobre */
.about {
    padding: 80px 14%;
    background-color: var(--secondary-bg);
    color: var(--font-color);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.about-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.5s ease;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    max-width: 400px;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.round-image {
    border-radius: 50%;
    border: 4px solid var(--secondary-color); 
}

.about-text {
    flex: 1;
    text-align: justify;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.about-text h2 {
    font-family: "Pinyon Script", cursive;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--font-color);
}
/* Responsividade */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-section.reverse {
        flex-direction: column;
    }

    .about-image {
        margin: 0 auto;
    }
}



/* Seção de Serviços */
.services {
    padding: 80px 14%;
    background-color: var(--bg-color); /* Fundo preto */
    color: var(--font-color);
    position: relative;
    overflow: hidden;
}

.services h2 {
    font-family: "Pinyon Script", cursive;
    font-size: 3rem;
    color: var(--main-color); 
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.services p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--font-color);
    margin-bottom: 40px;
    text-align: center;
}

/* Swiper Container */
.swiper-container {
    width: 100%;
    max-width: 900px;
    margin: 1.5rem auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background-color: var(--bg-color);
}

.swiper-slide {
    text-align: center;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: filter 0.5s ease;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 15px 10px;
    text-align: center;
    z-index: 2;
    height: 80px;
    box-sizing: border-box;
}

.slide-content h3 {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 5px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Overlay com Efeito de Blur e Botão "Ver Mais" */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.swiper-slide:hover .slide-overlay {
    opacity: 1;
    visibility: visible;
}

.swiper-slide:hover img {
    filter: blur(5px);
}

.btn-ver-mais {
    padding: 10px 20px;
    background-color: var(--main-color);
    color: var(--font-color);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-ver-mais:hover {
    background-color: var(--secondary-color);
}

/* Botão "Ver Mais" para mobile */
.btn-ver-mais-mobile {
    display: none;
    padding: 10px 20px;
    background-color: var(--main-color);
    color: var(--font-color);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    margin-bottom: 15px;
}


/* Estilo para o indicador de navegação */

.swiper-pagination-bullet {
    background-color: var(--border-color) !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--main-color) !important;
    transform: scale(1.2);
}

.swiper-button-prev,
.swiper-button-next {
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--main-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: transparent;
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: var(--main-color);
    transition: color 0.3s ease;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: var(--secondary-color); 
}

@media (max-width: 768px) {
    .btn-ver-mais {
        display: none;
    }

    .btn-ver-mais-mobile {
        display: inline-block;
    }
    .slide-content {
        height: auto;
    }
    .slide-content h3 {
        font-size: 1.2rem;
    }
}



/* Seção de Staff */
.staff {
    padding: 80px 14%;
    background-color: var(--secondary-bg);
    color: var(--font-color);
    position: relative;
    overflow: hidden;
}

.staff h2 {
    font-family: "Pinyon Script", cursive;
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.staff p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--font-color);
    margin-bottom: 40px;
    text-align: center;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.staff-member {
    text-align: center;
    background-color:var(--secondary-color);
    border-radius: 5%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-member:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.staff-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-member:hover .staff-image img {
    transform: scale(1.1);
}

/* Overlay do Staff */
.staff-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.staff-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.staff-overlay p {
    font-size: 1rem;
    color: var(--font-color);
    text-align: center;
    padding: 10px;
    line-height: 1.6;
}

.staff-member:hover .staff-overlay {
    opacity: 1;
    visibility: visible;
}

.staff-member:hover .staff-image img {
    transform: scale(1.1);
}

.staff-info h3 {
    font-size: 1.5rem;
    color: var(--main-color);
    margin-bottom: 5px;
}

.staff-info p {
    font-size: 1.1rem;
    color: var(--font-color);
}



/* Responsividade */
@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }

    .staff-image {
        height: 200px;
    }
}



/* Seção de Localização */
.location {
    padding: 80px 14%;
    background-color: var(--bg-color); /* Fundo preto da paleta */
    color: var(--font-color);
    position: relative;
    overflow: hidden;
}

.location-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px; /* Espaçamento entre as colunas */
}

/* Estilo para as informações */
.location-info {
    flex: 1;
    max-width: 40%; /* Limita a largura das informações */
}

.location-info h2 {
    font-family: "Pinyon Script", cursive;
    font-size: 3rem;
    color: var(--main-color); /* Cor vermelha para destacar */
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.contact-details p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.contact-details a {
    color: var(--font-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--main-color);
}

.hours h3 {
    font-size: 1.8rem;
    color: var(--main-color); /* Título em vermelho */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.hours h3 i {
    margin-right: 10px;
    font-size: 2rem;
    color: var(--main-color); /* Ícone do relógio em vermelho */
}

.hours ul {
    padding: 0;
}

.hours li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.hours li i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--main-color); /* Ícones de check em platina */
}

/* Estilo para o mapa */
.location-map {
    flex: 1;
    max-width: 60%; /* Limita a largura do mapa */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.location-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
    .location-container {
        flex-direction: column;
        gap: 20px;
    }

    .location-info,
    .location-map {
        max-width: 100%;
    }

    .location-map iframe {
        height: 300px; /* Reduz a altura do mapa no mobile */
    }
}

@media (max-width: 768px) {
    .location-info h2 {
        font-size: 2.5rem; /* Reduz o tamanho do título no mobile */
    }

    .contact-details p,
    .hours li {
        font-size: 1rem; /* Reduz o tamanho do texto no mobile */
    }

    .hours h3 {
        font-size: 1.5rem; /* Reduz o tamanho do subtítulo no mobile */
    }
}


