/* 
  Design Original: Envato User 
  Licença de Uso: Comercial (Cliente Final)
  Proibida a revenda do código fonte.
*/
:root {
            --primary: #1a2c42; /* Navy Blue */
            --secondary: #c5a059; /* Gold/Beige */
            --bg: #f9f9f9;
            --text: #333333;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
        }

        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover { background-color: #b08d48; }
        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline:hover { background-color: var(--primary); color: white; }

        /* Header */
        header {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
        .logo span { color: var(--secondary); }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(26, 44, 66, 0.9), rgba(26, 44, 66, 0.8)), url('../images/bd24fe16d6a6401f65326c2a4b682ec1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        .hero h1 { color: white; font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
        .hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto 40px; opacity: 0.9; }

        /* Features/Empathy */
        .empathy { padding: 80px 0; background: white; }
        .empathy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .empathy-content h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .empathy-content p { margin-bottom: 20px; color: #555; }
        .check-list { list-style: none; margin-top: 20px; }
        .check-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .check-list i { color: var(--secondary); }

        /* Services */
        .services { padding: 80px 0; background: var(--bg); }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .service-card {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: 0.3s;
            border-top: 3px solid transparent;
        }
        .service-card:hover { transform: translateY(-5px); border-top-color: var(--secondary); }
        .service-icon { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
        .service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .service-card p { color: #666; font-size: 0.95rem; }

        /* FAQ (Educational) */
        .faq { padding: 80px 0; background: white; }
        .faq-container { max-width: 800px; margin: 0 auto; }
        .faq-item { border-bottom: 1px solid #eee; }
        .faq-question {
            padding: 25px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: 0.3s;
            color: #666;
            line-height: 1.6;
        }
        .faq-item.active .faq-answer { padding-bottom: 25px; max-height: 300px; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }

        /* CTA Strip */
        .cta-strip {
            background-color: var(--primary);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .cta-strip h2 { color: white; margin-bottom: 20px; }
        .cta-strip p { margin-bottom: 30px; opacity: 0.9; }

        /* Footer */
        footer { background: #111; color: #888; padding: 60px 0 20px; font-size: 0.9rem; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer h4 { color: white; margin-bottom: 20px; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; }
        .footer ul { list-style: none; }
        .footer li { margin-bottom: 10px; }
        .footer a { color: #888; text-decoration: none; }
        .disclaimer { border-top: 1px solid #222; padding-top: 20px; text-align: center; font-size: 0.8rem; }

        /* Mobile */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .empathy-grid { grid-template-columns: 1fr; }
            .nav-flex { flex-direction: column; height: auto; padding: 15px 0; gap: 15px; }
        }