:root {
    --bg-dark: #050505;
    --bg-panel: rgba(20, 20, 20, 0.7);
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --gold-text: #F4C430;
    --white: #ffffff;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 20px rgba(191, 149, 63, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* --- ESTRUTURA GERAL --- */
html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--white);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(191, 149, 63, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(63, 81, 191, 0.05), transparent 25%);
}

/* --- Tipografia --- */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: var(--glass-border);
    padding: 15px 0;
    transition: 0.3s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(191, 149, 63, 0.5));
}

.nav-menu a {
    color: #ccc;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold-text);
    text-shadow: 0 0 10px rgba(191, 149, 63, 0.5);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;     
    justify-content: center; 
    text-align: center;
    position: relative;
    background: linear-gradient(to bottom, rgba(5,5,5,0.4), var(--bg-dark)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    animation: fadeUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* --- Botões --- */
.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.4);
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(191, 149, 63, 0.7);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-text);
}

/* --- Destaques (Highlights) --- */
.highlights-section {
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.highlight-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-text);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold-text);
}

.highlight-card h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Seção de Serviços --- */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    padding: 0 10px;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--gold-text);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card h3 i {
    font-size: 1.4rem;
    color: var(--gold-text);
}

.card ul {
    list-style: none;
    color: #ccc;
}

.card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* --- Sobre --- */
.about-section {
    background: linear-gradient(to right, #0a0a0a, #111);
    position: relative;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: -20px 20px 0 rgba(191, 149, 63, 0.1);
}

.about-content {
    flex: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-item h4 {
    color: var(--gold-text);
    font-size: 1.2rem;
}

/* --- Footer --- */
footer {
    background: #000;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.social-links {
    margin-top: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: #ffffff !important;
    font-size: 2.2rem;
    margin: 0 15px;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--gold-text) !important;
    transform: scale(1.1);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    text-decoration: none;
    transition: all 0.4s ease;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%; border-radius: 50%;
    background: inherit; z-index: -1; opacity: 0.7;
    animation: pulse-wave 2s infinite;
}

@keyframes pulse-wave {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================= */
/* AJUSTES FINAIS DE RESPONSIVIDADE (MOBILE) */
/* ========================================= */
@media (max-width: 768px) {
    
    .hero {
        min-height: 0 !important; 
        height: auto !important;
        display: block !important; 
        padding-top: 100px !important; 
        padding-bottom: 60px !important;
        background-attachment: scroll !important; 
    }

    .hero-content {
        margin: 0 auto !important;
        top: 0 !important;
        transform: none !important;
    }
    
    .hero h1 { 
        font-size: 1.8rem !important; /* Reduzi um pouco para caber melhor */
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 0.95rem !important;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .container {
        flex-direction: column; 
        text-align: center;
    }

    .section { padding: 50px 0; }

    .about-wrapper { flex-direction: column; gap: 30px; }

    .about-image { width: 100%; max-width: 320px; margin: 0 auto; }

    .stats-grid { grid-template-columns: 1fr; }

    .grid-services { grid-template-columns: 1fr; padding: 0 15px; }

    .nav-menu { display: none; }
    
    .btn-group { flex-direction: column; width: 100%; }

    .btn { width: 100%; font-size: 0.9rem; }

    footer { padding: 40px 20px 90px 20px; }

    .whatsapp-float { width: 60px; height: 60px; font-size: 32px; }
}