/* 
  =======================================================================
  PROFESSIONAL HTML TEMPLATE
  =======================================================================
  Licença: Uso Comercial (Agência/Freelancer)
  Author: Envato User
  Site: #
  
  Licensed under Envato Elements Terms. 
  You are free to use this template for your commercial or personal projects.
  =======================================================================
*/

:root {
    --bg-dark: #050505;
    --bg-card: #111111;
    --primary-gold: #d4af37;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { 
    font-family: var(--font-body); 
    background-color: var(--bg-dark); 
    color: var(--text-white); 
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; }
h2 { font-size: 2.5rem; margin-bottom: 10px; }
.subtitle { color: var(--primary-gold); text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 10px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-gold);
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 1px solid var(--primary-gold);
}
.btn:hover { background: transparent; color: var(--primary-gold); }
.btn-outline { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
.btn-outline:hover { background: var(--primary-gold); color: var(--bg-dark); }

/* Header */
header {
    background: rgba(5, 5, 5, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; color: var(--text-white); text-decoration: none; letter-spacing: 1px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-white); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; transition: 0.3s; opacity: 0.8; }
.nav-links a:hover { color: var(--primary-gold); opacity: 1; }
.mobile-toggle { display: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
.hero p { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    text-align: center;
}
.service-card:hover { border-color: var(--primary-gold); transform: translateY(-5px); }
.service-icon { font-size: 2rem; color: var(--primary-gold); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { color: var(--text-gray); font-size: 0.9rem; }
.service-price { display: block; margin-top: 15px; font-weight: 600; color: var(--primary-gold); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 40px; }
.gallery-item { height: 300px; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(30%); }
.gallery-item:hover img { transform: scale(1.1); filter: grayscale(0%); }

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-left: 3px solid var(--primary-gold);
    margin-top: 30px;
}
.stars { color: var(--primary-gold); margin-bottom: 15px; font-size: 0.8rem; }
.client-name { margin-top: 15px; font-weight: 600; font-family: var(--font-heading); }

/* Contact/Footer */
.footer { background: #000; padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--text-gray); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--text-white); margin-bottom: 20px; font-family: var(--font-heading); }
.footer p { margin-bottom: 10px; }
.social-links a { color: var(--text-white); margin-right: 15px; font-size: 1.2rem; transition: 0.3s; }
.social-links a:hover { color: var(--primary-gold); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-dark); flex-direction: column; padding: 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .gallery-grid { grid-template-columns: 1fr; }
}