:root {
    --obsidian: #0f172a;
    --accent: #00d2ff;
    --wa-green: #25d366;
    --glass: rgba(255, 255, 255, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body { background: white; color: var(--obsidian); overflow-x: hidden; }

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

/* CONFIGURAÇÃO DE TELA 1920x1080 */
:root {
    --steel-light: #f5f5f5;
    --steel-mid: #a0a0a0;
    --steel-dark: #404040;
    --wa-green: #25d366;
    --lustra-obsidian: #0f172a;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

/* NAVBAR PREMIUM - ESTILO FINE CUISINE */
.navbar-premium {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent; /* Invisível no topo */
}

/* Estado quando o usuário rola a página */
.navbar-premium.nav-active {
    height: 75px;
    background: rgba(15, 23, 42, 0.98); /* Obsidian profundo */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 210, 255, 0.2);
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}

/* ÁREA DA MARCA */
.nav-brand-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 210, 255, 0.3));
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #00d2ff; /* Azul dos cards para visibilidade no preto */
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

/* LINKS DE NAVEGAÇÃO */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #00d2ff; /* Cor principal solicitada */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.4s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* HOVER COM EFEITO OVERLAY AZUL */
.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px #00d2ff;
}

/* BOTÃO SILVER NA NAV (ESTILO CHAVE PRATA) */
.btn-silver-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(145deg, #ffffff 0%, #b0b0b0 100%);
    color: #111;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid #fff;
    transition: 0.3s;
}

.btn-silver-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}


/* AJUSTES DE ESPAÇAMENTO NO CONTATO */
.location-box {
    background: #fff;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.loc-text { padding: 80px; flex: 1; }
.info-group { margin: 30px 0 40px; }
.info-group p { margin-bottom: 15px; font-size: 1.1rem; color: #555; }

/* HERO FLEX (CENTRALIZAÇÃO ABSOLUTA) */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    /* Substitua pelo caminho da sua foto de chaveiros */
    background: url('assets/fundo\ walter.png') center/cover no-repeat; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-flex-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.hero-logo-medium {
    width: 120px; /* Redimensionado para não ser enorme */
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.2));
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; /* Impacto para 1920x1080 */
    color: #fff;
    line-height: 1.1;
    font-weight: 700;
}

.hero-title span {
    color: #007bff; /* Azul sutil da Lustra */
}

/* BOTÃO DE AÇO ESCOVADO (SILVER BUTTON) */
.btn-steel-pulse {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 55px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #111;
    
    /* Estetica da Chave (Prateado) */
    background: linear-gradient(145deg, #ffffff 0%, #b0b0b0 50%, #888 100%);
    border: 2px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 2px 4px #fff;
    
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: silver-pulse 2s infinite;
}

.btn-steel-pulse:hover {
    transform: scale(1.05) translateY(-5px);
    background: linear-gradient(145deg, #fff 0%, #d1d1d1 100%);
}

/* TEXTO ABAIXO COM PAD/MARGIN MAIOR */
.wa-subtext-refined {
    margin-top: 50px; /* Respiro solicitado */
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* ANIMAÇÃO PULSE SILVER */
@keyframes silver-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* SOBRE LADO A LADO */
.about { padding: 150px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.img-shadow-box { position: relative; }
.about-img { width: 100%; border-radius: 30px; box-shadow: 30px 30px 60px rgba(0,0,0,0.1); }
.about-text h2 { font-size: 3rem; margin-bottom: 25px; line-height: 1.1; }
.about-text p { font-size: 1.2rem; line-height: 1.8; color: #555; }

/* SEÇÃO DE SERVIÇOS PREMIUM */
.services-premium {
    padding: 120px 0;
    background-color: #ffffff; /* Fundo da página branco para destacar os cards */
}

/* HEADER DO TÍTULO */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.header-pre-title {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.85rem;
    color: #007bff;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.header-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #0f172a;
    font-weight: 700;
    line-height: 1.2;
}

.header-line {
    width: 80px;
    height: 4px;
    background: #007bff;
    margin: 25px auto;
    border-radius: 2px;
}

/* GRID 2X2 */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* BASE DO CARD (BANNER STYLE) */
.banner-card {
    position: relative;
    padding: 60px 40px;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Estilo Obsidian (Cinza Escuro/Azulado) */
.obsidian-style {
    background: linear-gradient(145deg, #404751, #102134);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

/* ESTILO SOCORRO 24H (SUPER DESTAQUE) */
.highlight-24h-banner {
    background: linear-gradient(135deg, #007bff, #00d2ff);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.3);
    border: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-icon {
    font-size: 3.5rem;
    color: #00d2ff;
    margin-bottom: 25px;
}

.highlight-24h-banner .banner-icon {
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.banner-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.banner-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.05rem;
    padding: 0 20px;
}

/* BOTÃO SOLICITAR SERVIÇO */
.btn-solicitar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #00d2ff;
    color: #00d2ff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.4s;
}

.btn-solicitar:hover {
    background: #00d2ff;
    color: #0f172a;
    transform: scale(1.05);
}

/* Botão Específico do Socorro */
.gold-pulse {
    background: #fff;
    color: #007bff;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gold-pulse:hover {
    background: #0f172a;
    color: #fff;
}

/* HOVER EFFECTS NO CARD */
.banner-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.obsidian-style:hover {
    border-color: #00d2ff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* ANIMAÇÃO DE PULSO NO ÍCONE 24H */
.pulse-icon {
    animation: icon-bounce 2s infinite;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
    }
    .header-main-title {
        font-size: 2.5rem;
    }
}

/* SEÇÃO LOCALIZAÇÃO PREMIUM */
.location-premium {
    padding: 120px 0;
    background-color: #f4f4f4; /* Branco levemente escuro para separação */
    position: relative;
    overflow: hidden;
}

/* Divisor Abstrato para quebrar o design */
.section-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, #007bff, transparent);
}

.location-header-main {
    text-align: center;
    margin-bottom: 70px;
}

.title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #0f172a;
    margin-top: 10px;
}

.pre-title {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    color: #007bff;
    font-weight: 700;
}

/* LAYOUT FLEXÍVEL 1920x1080 */
.location-flex-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.info-side { flex: 1; }
.image-side { flex: 1.2; }

/* CARD DE ENDEREÇO (OBSIDIAN STYLE REFINADO) */
.address-premium-card {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 30px 30px 60px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    position: relative;
}

.card-tag {
    position: absolute;
    top: -15px;
    left: 40px;
    background: #0f172a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.address-premium-card h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #0f172a;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: #007bff;
}

.info-text strong {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* BOTÕES DE AÇÃO */
.location-button-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-contact-primary {
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-contact-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-maps-outline {
    border: 2px solid #0f172a;
    color: #0f172a;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.4s;
}

.btn-maps-outline:hover {
    background: #0f172a;
    color: #fff;
}

/* FRAME DA IMAGEM */
.shop-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 40px 40px 80px rgba(0,0,0,0.1);
}

.shop-img-final {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.8s;
}

.shop-frame:hover .shop-img-final {
    transform: scale(1.05);
}

.frame-accent {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border-right: 4px solid #007bff;
    border-bottom: 4px solid #007bff;
    pointer-events: none;
}

/* FOOTER STRIP CORPORATIVO */
.footer-corporate-strip {
    background: linear-gradient(145deg, #e0e0e0 0%, #c0c0c0 100%); /* Prata Acetinado */
    padding: 20px 0; /* Tira fina e discreta */
    border-top: 1px solid #fff;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
}

.footer-flex-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-info p {
    color: #000; /* Letras pretas conforme solicitado */
    font-size: 0.85rem;
    font-weight: 400;
}

.copyright-info strong {
    font-weight: 700;
    text-transform: uppercase;
}

.copyright-info span {
    margin-left: 10px;
    opacity: 0.7;
    border-left: 1px solid rgba(0,0,0,0.2);
    padding-left: 10px;
}

/* BOTÃO LKS ESTILO DISCRETO */
.btn-lks-silver {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000; /* Botão preto para contraste no fundo prata */
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-lks-silver:hover {
    background: #D4AF37; /* Destaque em Dourado no Hover */
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* RESPONSIVIDADE PARA O STRIP */
@media (max-width: 768px) {
    .footer-flex-inline {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .copyright-info span {
        display: block;
        border: none;
        padding: 0;
        margin: 5px 0 0 0;
    }
}

@keyframes wa-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 30px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes ring-pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

@media (max-width: 900px) {
    .about-grid, .services-grid, .location-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.8rem; }
    .nav-links { display: none; }
}