/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --primary: #0f172a; /* Navy Blue */
            --secondary: #1e293b;
            --accent: #c5a059; /* Gold */
            --text: #334155;
            --light: #f8fafc;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Lato', sans-serif; color: var(--text); line-height: 1.6; background: var(--light); }
        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary); }

        /* Utilities */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .section { padding: 80px 0; }
        .bg-white { background: var(--white); }
        .text-center { text-align: center; }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: var(--accent);
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: 4px;
            transition: 0.3s;
            border: 2px solid var(--accent);
        }
        .btn:hover { background: transparent; color: var(--accent); }
        .btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
        .btn-outline:hover { background: var(--white); color: var(--primary); }

        /* Header */
        header { background: var(--primary); padding: 20px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
        .nav { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 1.5rem; color: var(--white); text-decoration: none; font-family: 'Playfair Display', serif; letter-spacing: 1px; }
        .logo span { color: var(--accent); }
        .nav-links { display: flex; gap: 30px; }
        .nav-links a { color: var(--white); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; transition: 0.3s; }
        .nav-links a:hover { color: var(--accent); }
        .mobile-toggle { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('../images/3797950d0c744b2fddf7de156092403a.jpg');
            background-size: cover;
            background-position: center;
            height: 85vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }
        .hero h1 { font-size: 3.5rem; margin-bottom: 20px; color: var(--white); line-height: 1.2; }
        .hero p { font-size: 1.2rem; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; opacity: 0.9; }

        /* About */
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-img { position: relative; }
        .about-img img { width: 100%; border-radius: 4px; box-shadow: 20px 20px 0 var(--accent); }
        .about-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .stats { display: flex; gap: 40px; margin-top: 30px; }
        .stat-item h3 { font-size: 2.5rem; color: var(--accent); margin-bottom: 5px; }

        /* Areas */
        .areas { background: var(--secondary); color: var(--white); }
        .areas h2 { color: var(--white); text-align: center; margin-bottom: 60px; font-size: 2.5rem; }
        .areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .area-card { background: rgba(255,255,255,0.05); padding: 40px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
        .area-card:hover { background: var(--accent); transform: translateY(-10px); }
        .area-card:hover h3, .area-card:hover p, .area-card:hover i { color: var(--primary); }
        .area-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; transition: 0.3s; }
        .area-card h3 { color: var(--white); margin-bottom: 15px; font-size: 1.3rem; transition: 0.3s; }
        .area-card p { color: #94a3b8; font-size: 0.95rem; transition: 0.3s; }

        /* FAQ */
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item { background: var(--white); margin-bottom: 15px; border-radius: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
        .faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--primary); }
        .faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; padding: 0 20px; color: var(--text); }
        .faq-item.active .faq-answer { padding-bottom: 20px; max-height: 200px; }
        .faq-icon { transition: 0.3s; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }

        /* Contact */
        .contact { background: var(--white); }
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
        .contact-info h3 { margin-bottom: 20px; font-size: 1.5rem; }
        .info-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
        .info-item i { width: 40px; height: 40px; background: var(--light); color: var(--accent); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
        .form-group { margin-bottom: 20px; }
        .form-input { width: 100%; padding: 15px; border: 1px solid #e2e8f0; border-radius: 4px; font-family: inherit; }
        .form-input:focus { outline: none; border-color: var(--accent); }

        /* Footer */
        footer { background: var(--primary); color: #94a3b8; padding: 50px 0; text-align: center; font-size: 0.9rem; }
        .footer-logo { color: var(--white); font-size: 1.5rem; font-family: 'Playfair Display', serif; margin-bottom: 20px; display: inline-block; }

        /* Floating Button */
        .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(37, 211, 102, 0.4); z-index: 1000; transition: 0.3s; }
        .whatsapp-float:hover { transform: scale(1.1); }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .about-grid, .contact-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--primary); flex-direction: column; padding: 20px; text-align: center; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
            .about-img { order: -1; margin-bottom: 30px; }
        }