/* Variáveis  globais CSS */
:root {
    --primary-gold: #d4af37;
    --primary-gold-hover: #b8962e;
    --bg-dark: #121212;
    --bg-light: #1a1a1a;
    --bg-card: #252525;
    --text-white: #fff;
    --text-gray: #aaa;
}

/* Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    scroll-behavior: smooth;
}

h1,
h2,
.logo {
    font-family: 'Oswald', sans-serif;
}

/* Header e Navegação */
header {
    background-color: #1a1a1a;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    letter-spacing: 2px;

}

.logo_span,
.logo span {
    font-weight: bold;
    color: var(--primary-gold);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(imagens/WhatsApp\ Image\ 2026-03-24\ at\ 18.58.37\ \(2\).jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
}

/* Ajuste de texto para telas pequenas */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        /* Diminui o título no celular para não quebrar linha estranho */
    }

    .hero p {
        font-size: 1.1rem;
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.btn-agendar {
    display: inline-block;
    padding: 15px 30px;
    background-color: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-agendar:hover {
    background-color: #b8962e;
    transform: scale(1.05);
}

/* Serviços */
.services {
    padding: 80px 5%;
    text-align: center;
}

.services h2,
.gallery h2,
.testimonials h2,
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-gold);
}

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

.service-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;

}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;
}

.price {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #d4af37;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 40px;
    background-color: #1a1a1a;
    font-size: 0.8rem;
    color: #666;
}

.gallery {
    padding: 80px 5%;
    background-color: #121212;
    text-align: center;
}



/* Estilos do Carrossel */
.carousel-img {
    height: 500px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
}

.carousel-img:hover {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .carousel-img {
        height: 350px;
    }
}

.testimonials {
    padding: 80px 5%;
    background-color: #1a1a1a;
    text-align: center;
}



.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background: #252525;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    font-style: italic;
    border-left: 5px solid #d4af37;
}

.testimonial-card h4 {
    margin-top: 20px;
    color: #d4af37;
    font-style: normal;
}

.contact {
    padding: 80px 5%;
    text-align: center;
    background-color: #121212;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-btn {
    text-decoration: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-size: 1.1rem;
}

/* Cor do WhatsApp */
.whatsapp {
    background-color: #25d366;
}

/* Cor do Instagram (Gradiente) */
.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.address {
    margin-top: 40px;
    color: var(--text-gray);
    line-height: 2;
}

.address i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Garante que o link não pare embaixo do menu fixo */
section {
    scroll-margin-top: 70px;
}



/* Modal de Agendamento */
#modalAgendamento .form-control,
#modalAgendamento .form-select {
    background-color: #252525;
    border: 1px solid #444;
    color: #fff;
}

#modalAgendamento .form-control:focus,
#modalAgendamento .form-select:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

#modalAgendamento .form-control::placeholder {
    color: #888;
}

/* Altera a cor do ícone de calendário (WebKit) */
#modalAgendamento input[type="date"]::-webkit-calendar-picker-indicator,
#modalAgendamento input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}