@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body{
	background-color: #000;
	font-family: 'Black Ops One', sans-serif;
}
main{
	display: flex;
}
.sidebar{
	width: 250px;
	height: 100vw;
	position: fixed;
	color: #c49a6c;
	padding: 30px 15px;
}
.sidebar a{
	color: #c49a6c;
	font-weight: 800;
}
.content{
	margin-left: 250PX;
}
#logo{
	width: 180px;
	margin: 0 auto;
}
.banner {
    width: 100%;  /* Ocupa toda a largura da div .content */  
    max-height: 700px; /* Define altura máxima de 800px */
    height: 100%;
    
}

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

.carousel-inner {
    width: 100%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    background-size: cover; /* Garante que a imagem ocupe toda a área sem distorção */
}
#sobre{
	background-color: #C49A6C;
	color: #000;
	padding: 10px;
}
#sobre img{
    min-width: 250px
	width: 450px;
}
.img-sobre{
	padding: 90px;
}

#sobre h2{
	font-family: 'Black Ops One', sans-serif;
	font-weight: 800;
	margin-bottom: 30px;
	color: #fff;
}
#sobre p{
	color: #202B38;
	font-weight: 800;
	letter-spacing: 0.2px;
	margin-left: 30px;
}
#sobre h4{
	margin-top: 30px;
}
#servicos{
	width: 100%;

}
/* Estilo do container principal */
#servicos {
    text-align: center;
    padding: 90px 20px;
    background: #000;
    color: white;
}
#servicos h2 {
    font-family: 'Black Ops One', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c49a6c;
}


#servicos h2 span {
    background: #c49a6c;
    color: black;
    padding: 1px 30px;
    border-radius: 5px;
}

/* Lista de serviços */
.lista-servicos ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px;
    margin-top: 60px;
}

/* Itens da lista */
.lista-servicos li {
    background: rgba(255, 255, 255, 0.1); /* Fundo translúcido */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-align: left;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

/* Estilo da descrição */
.lista-servicos .info {
    padding-bottom: 10px;
}

.lista-servicos h4 {
    font-size: 1.2rem;
    margin: 0;
    color: #c49a6c;
}

.lista-servicos p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0;
}

/* Estilo do preço */
.lista-servicos .preco {
    font-size: 0.9rem;
    font-weight: bold;
    color: #fff;
    background: #c49a6c;
    padding: 5px 10px;
    border-radius: 5px;
    align-self: flex-end;
}

/* Efeito hover */
.lista-servicos li:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
}

#agendamento{
	color: #c49a6c;
}

/* Estilização do modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    width: 350px;
    color: white;
    text-align: center;
}

.modal-content h2 {
    color: #c49a6c;
}

.close {
    color: white;
    font-size: 25px;
    float: right;
    cursor: pointer;
}

/* Estilização dos inputs */
input, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

/* Botão de confirmar */
button {
    background: #c49a6c;
    border: none;
    padding: 10px 15px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

#openModal:hover, .btn-form:hover {
    background: #e0ad7a;
    color: #000;
}

 /* Estilos do slider personalizados */
.custom-carousel {
    max-width: 900px;
    margin: auto;
}
.custom-carousel-inner {
    display: flex;
}
.custom-carousel-item {
    flex: 0 0 100%;
    min-height: 300px; /* Altura do slider */
    position: relative;
}
.custom-slide-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}
/* Escurece a imagem para melhor legibilidade do texto */
.custom-slide-content::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.custom-slide-info {
    position: relative;
    z-index: 2;
}
.custom-slide-price {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 5px;
}

#contactForm{
    max-width: 950px;
    height: 450px;
    width: 100%;
    margin: 0 auto;
}

.contato h2{
    color: #c49a6c;
}
form {
    background: rgba(255, 255, 255, 0.1); /* Fundo translúcido */
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    padding: 30px;
    color: #fff;
}

.form-label {
    font-weight: 600;
}

.btn-primary {
    background: #c49a6c;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
}



/* Estilização do Footer */
.footer {
    background: #000;
    color: #fff;
    max-height: 250px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.footer{
    margin: 10px;
}

/* Informações de contato */
.footer .info p {
    margin: 5px 0;
}

/* Ícones das redes sociais */
.social a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: 0.3s;
}

.social a:hover {
    color: #1DB954;
}

/* Botão do WhatsApp */
.whatsapp a {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}
#navMobile{
    background-color: #000;
    color: #C49A6C;
    display: none;
}
#navMobile a img{
    width: 60px;
}
#navbarNav ul li a{
    color: #C49A6C;
}
.whatsapp a:hover {
    background: #1DA851;
}
#navMobile{
    display: none;
}
/* Responsividade */
@media (max-width: 780px) {
    #navMobile{
        display: block;
    }
    #menu-list-mob{
        font-weight: 800;
    }
    .sidebar{
        display: none;
    }
    .content{
        margin: 0px;
    }
    .navbar-toggler-icon {
        background-image: none !important; /* Remove o ícone padrão */
        width: 30px;
        height: 3px;
        background-color: #c49a6c; /* Cor do ícone */
        display: block;
        position: relative;
    }
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        background-color: #c49a6c; /* Cor das linhas superiores e inferiores */
        width: 30px;
        height: 3px;
        position: absolute;
        left: 0;
    }
    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        top: 8px;
    }
    .banner{
        max-height: 250px;
    }
    .carousel{
        width: 100%;
        height: 100%;
    }
    .carousel-inner{
        height: 250px;
    }
    .carousel-item img{
       
        background-size: cover;
    }
    #sobre, .img-sobre, #sobre p{
        padding: 0px;
    }

    #sobre p{
        color: #1C1C1C;
        font-size: 0.8em;
    }
    #sobre h2{
        font-weight: 600;
        margin-bottom: 10px;
    }
    #servicos{
        padding: 30px 20px;
    }
    #servicos h2{
        font-size: 1.8rem;
    }
    .contactForm{
        height: auto;
    }
    .footer{
        max-height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .social{
        display: flex;
        margin: 30px 0px;
    }
    .whatsapp{
        display: flex;
    }
    

}
