@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --gold: #d4af37;
    --gold-hover: #f1c40f;
    --dark-bg: #121212;
    --card-bg: #1e1e1e;
    --text-light: #e0e0e0;
    --glass: rgba(255, 255, 255, 0.05);
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.container p{
    margin-bottom: 15px;
}

header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

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

.logo {
    font-family: 'Montserrat', serif;
    font-size: 28px;
    font-weight: 600;
}

.logo span { color: var(--gold); }

.nav-links { list-style: none; display: flex; align-items: center; }

.nav-links li { margin-left: 30px; }

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-btn {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 2px;
}

.nav-btn:hover { background: var(--gold); color: black !important; }

/* Hero Section Luxo */
.hero {
    height: 100vh;
    background:
    linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.6)),
    url('locksmith-4521069_1920.jpg');
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9), transparent);
}

.hero-content { position: relative; z-index: 1; }

.badge {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    display: block;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Montserrat', serif;
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 25px;
}

p { font-size: 1.1rem; color: #bbb; max-width: 1000px; line-height: 1.8; }

.cta-group { margin-top: 40px; }

.btn-gold {
    background: var(--gold);
    color: black;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.4s;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.4s;
}

/* Serviços com Card Glassmorphism */
#servicos { padding: 100px 20px; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-header p{
    max-width: 100%;
}

.line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
}

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

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--glass);
    transition: 0.4s;
    text-align: center;
    h3{
        margin-bottom: 15px;
    }
    p{
        font-size: 1rem
    };
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

/* WhatsApp Flutuante Animado */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover .tooltip { opacity: 1; visibility: visible; }

.tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}


/* Área de Atendimento */
#atendimento {
    padding: 80px 0;
}

.atendimento-grid {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

#notfound{
    text-align: center;
    max-width: 100%;
    position: relative;
    margin-top: 35px;
}

.bairros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px 25px;
    max-width: 900px;
    width: 100%;
    list-style: none;
}

.bairros li {
    padding: 12px 18px;
    border: 1px solid var(--glass);
    background: var(--card-bg);
    color: var(--text-muted);
    text-align: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.bairros li:hover {
    border-color: var(--gold);
    color: var(--text-main);
    transform: translateY(-3px);
}


/* Footer */
footer { padding: 80px 0 20px; border-top: 1px solid var(--glass); text-align: center; }



footer p{
    max-width: 100%;
    font-size: 0.9rem;
}

#footer-logo{
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.social-icons a{
    font-size: 1.4rem;
    margin-top: 25px;
    color: white;;

    text-decoration: none;
}

.social-icons p{
    margin-top: 25px;
}

.copyright { margin-top: 50px; font-size: 12px; color: #666; }

/* Mobile */
@media (max-width: 500px) {
    h1 { 
        font-size: 2rem;
        text-align: center;}
    br{
    }

    nav{
        position: sticky;
        top: 0;
    }

    .hero{
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }

    .logo{
        display: none;
    }

    .nav-links{
        width: 100%;
    }

    .nav-links li { margin-left: auto; }

    .cta-group a { display: block; margin: 10px 0; text-align: center; }

   

    .badge{
        text-align: center;
        margin-top: 120px;
        margin-bottom: 50px;
    }

    .hero-content p{
        font-size: 1.05rem;
        text-align: center;
    }

    .section-header p{
        font-size: 1.05rem;
    }

    #atendimento{
        max-width: 300px;
    }

    .bairros {
    display: flex;
    flex-direction: column;
    gap: 15px 25px;
    max-width: 300px;
    width: 100%;
    list-style: none;
}
    

}

