@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #d4af37;
    /* Gold */
    --primary-hover: #b5952f;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-main: #f5f5f5;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.9)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; */
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.9)), url('../img/home.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--text-muted);
}

/* Sobre */
/* .sobre {
    background: #f1f1f1;
} */

/* .sobre-topo {
    background: #f58200;
    padding: 30px 15px;
} */

/* .sobre-topo h2 {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
} */

/* .sobre-conteudo {
    padding: 60px;
} */

/* .sobre-conteudo h2 {
    color: #f58200;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
} */

/* .linha {
    width: 90px;
    height: 3px;
    background: #f58200;
    margin-bottom: 30px;
} */

/* .sobre-conteudo p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
} */
.sobre-conteudo p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVO */
/* @media (max-width: 768px) {
    .sobre-conteudo {
        padding: 40px 25px;
    }

    .sobre-topo h2 {
        font-size: 22px;
    }

    .sobre-conteudo h2 {
        font-size: 32px;
    }
} */

/* Custom Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    color: #000;
}

/* Modals */
.modal-content {
    background-color: var(--card-bg);
    color: var(--text-main);
    border: 1px solid #333;
    border-radius: 10px;
}

.modal-header {
    border-bottom: 1px solid #333;
}

.modal-footer {
    border-top: 1px solid #333;
}

.form-control,
.form-select {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: var(--text-main);
}

.form-control:focus,
.form-select:focus {
    background-color: #2a2a2a;
    color: var(--text-main);
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Cards */
.card-custom {
    background-color: var(--card-bg);
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-10px);
}

.card-custom .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

/* Timeslot Badges */
.badge-time {
    cursor: pointer;
    background-color: #2a2a2a;
    color: var(--text-main);
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #444;
    transition: all 0.2s;
}

.badge-time:hover {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.badge-time.selected {
    background-color: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    font-weight: bold;
}



/* Servicos */
/* FUNDO DA SEÇÃO */
.servicos {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)),
        url('../img/servicos.jpg') center center / cover no-repeat;
}

/* TÍTULO */
.titulo-servicos {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.linha-titulo {
    width: 220px;
    height: 4px;
    background: #f58200;
}

/* CARD */
.card-servico {
    position: relative;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.card-servico .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.conteudo-card {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.icone-servico {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.conteudo-card h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* BOTÃO */
.btn-agendar {
    background: #f58200;
    color: #fff;
    padding: 14px 35px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: .3s;
}

.btn-agendar:hover {
    background: #d96f00;
    color: #fff;
}

/* RESPONSIVO */
@media (max-width: 991px) {
    .titulo-servicos {
        font-size: 2.4rem;
    }

    .conteudo-card h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .card-servico {
        height: 210px;
    }

    .titulo-servicos {
        font-size: 2rem;
    }

    .linha-titulo {
        width: 150px;
    }

    .conteudo-card h3 {
        font-size: 1.4rem;
    }

    .icone-servico {
        width: 45px;
        height: 45px;
    }
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-overlay svg {
    color: #fff;
    width: 40px;
    height: 40px;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.btn-instagram {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 40px;
    display: inline-block;
    text-decoration: none;
}

.btn-instagram:hover {
    background-color: var(--primary-color);
    color: #000;
}

/* Localização Section */
.map-section {
    padding: 80px 0;
    background-color: var(--black-bg);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    /* Dark mode map effect */
}

.address-info {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* RESPONSIVIDADE GLOBAL (SMARTPHONES E TABLETS) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    /* Sobre Section */
    .sobre-conteudo p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .sobre-img {
        max-height: 300px;
        object-position: top;
    }

    /* Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Map */
    .map-container {
        height: 300px;
    }

    /* Padding Global de Seções */
    section {
        padding: 50px 0;
    }
}