  /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --accent: #3b82f6;
      --accent-hover: #2563eb;
      --bg: #1a1a2e;
      --card-bg: #ffffff;
      --text: #1f2937;
      --text-light: #6b7280;
      --border: #e5e7eb;
      --shadow: 0 2px 8px rgba(0,0,0,0.06);
      --radius: 14px;
      --radius-sm: 10px;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      max-width: 480px;
      margin: 0 auto;
      padding: 20px 16px 100px;
    }

    /* ===== CABEÇALHO ===== */
    .header {
      text-align: center;
      padding: 28px 20px;
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      margin-bottom: 16px;
    }

    .avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 14px;
      display: block;
      border: 3px solid var(--card-bg);
      box-shadow: 0 4px 12px rgba(59,130,246,0.25);
    }

    .header h1 {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .header .specialty {
      font-size: 0.88rem;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .header .location {
      font-size: 0.82rem;
      color: var(--text-light);
      margin-bottom: 8px;
    }

    .header .bio {
      font-size: 0.82rem;
      color: var(--text-light);
      margin-bottom: 14px;
      line-height: 1.5;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 12px;
    }

    .social-links a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #f0f1f3;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text);
      text-decoration: none;
      font-size: 1rem;
      transition: background 0.2s, color 0.2s;
    }

    .social-links a:hover {
      background: var(--accent);
      color: #fff;
    }

    /* ===== CHIPS INFO ===== */
    .info-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      padding: 16px;
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      margin-bottom: 16px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: #f0f1f3;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text);
      white-space: nowrap;
    }

    /* ===== SEÇÃO SERVIÇOS ===== */
    .section-title {
      text-align: center;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-light);
      margin: 24px 0 14px;
    }

    /* ===== CARDS DE SERVIÇO ===== */
    .service-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 20px;
      margin-bottom: 12px;
      transition: transform 0.15s;
    }

    .service-card:active {
      transform: scale(0.98);
    }

    .service-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }

    .service-emoji {
      font-size: 1.6rem;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f0f1f3;
      border-radius: var(--radius-sm);
      flex-shrink: 0;
    }

    .service-info h3 {
      font-size: 0.95rem;
      font-weight: 700;
    }

    .service-info p {
      font-size: 0.78rem;
      color: var(--text-light);
      margin-top: 2px;
    }

    .service-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      padding: 12px;
      margin-top: 12px;
      background: #25d366;
      color: #fff;
      border: none;
      border-radius: var(--radius-sm);
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      min-height: 44px;
    }

    .service-btn:hover {
      background: #1fb855;
    }

    .service-btn:active {
      transform: scale(0.97);
    }

    .service-btn i {
      font-size: 1rem;
    }

    /* ===== DEPOIMENTOS ===== */
    .testimonial-card {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 20px;
      margin-bottom: 12px;
    }

    .testimonial-card blockquote {
      font-size: 0.85rem;
      font-style: italic;
      color: var(--text);
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .testimonial-card .author {
      font-size: 0.78rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .testimonial-card .stars {
      color: #f59e0b;
      font-size: 0.85rem;
      margin-top: 4px;
    }

    /* ===== FAQ ACCORDION ===== */
    .faq-item {
      background: var(--card-bg);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      margin-bottom: 8px;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 16px 20px;
      background: none;
      border: none;
      font-family: inherit;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      text-align: left;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 44px;
      transition: background 0.2s;
    }

    .faq-question:hover {
      background: #f0f1f3;
    }

    .faq-question .icon {
      font-size: 0.75rem;
      color: var(--text-light);
      transition: transform 0.3s;
      flex-shrink: 0;
    }

    .faq-item.active .faq-question .icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-answer-inner {
      padding: 0 20px 16px;
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ===== RODAPÉ ===== */
    .footer {
      text-align: center;
      padding: 24px 16px;
      font-size: 0.72rem;
      color: var(--text-light);
      margin-top: 16px;
    }

    .footer a {
      color: var(--accent);
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    /* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.6rem;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(37,211,102,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
      z-index: 100;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    }

    .whatsapp-float:active {
      transform: scale(0.95);
    }

    /* ===== SELOS DE CONFIANÇA ===== */
    .trust-badges {
      gap: 12px;
    }

    .chip-highlight {
      background: var(--accent);
      color: #fff;
      font-weight: 600;
    }

    /* ===== RODAPÉ EXTRAS ===== */
    .footer .privacy {
      margin-top: 6px;
    }

    /* ===== LGINFO ===== */
    #lginfo {
      text-align: center;
      font-size: 0.72rem;
      color: var(--text-light);
      padding: 12px 0;
    }

    #lginfo a {
      color: var(--accent);
      text-decoration: none;
    }

    #lginfo a:hover {
      text-decoration: underline;
    }