/* ── ÁREAS DE ATUAÇÃO ── */
#services {
   background: var(--navy);
   padding: 7rem 0;
}

/* TABS */
.audience-tabs {
   display: flex;
   gap: 0;
   margin-bottom: 3rem;
   border: 1px solid rgba(255,255,255,0.2);
   border-radius: 6px;
   overflow: hidden;
   width: fit-content;
   margin-left: auto;
   margin-right: auto;
}
.tab-btn {
   font-family: 'Montserrat', sans-serif;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1px;
   text-transform: uppercase;
   padding: 0.65rem 1.75rem;
   border: none;
   background: transparent;
   color: rgba(255,255,255,0.5);
   cursor: pointer;
   transition: background 0.25s, color 0.25s;
}
.tab-btn.active {
   background: var(--accent);
   color: var(--navy);
}

.service-card {
   background: var(--navy);
   border: 1px solid rgba(255,255,255,0.09);
   border-radius: 12px;
   overflow: hidden;
   height: 100%;
   transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
   cursor: default;
}
.service-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 50px rgba(0,0,0,0.3);
   border-color: rgba(180,214,221,0.3);
}
.service-card img {
   width: 100%; height: 190px;
   object-fit: cover;
   filter: brightness(0.85);
   transition: filter 0.3s;
}
.service-card:hover img { filter: brightness(1); }
.service-card-body { padding: 1.75rem; }
.service-number {
   font-family: 'Playfair Display', serif;
   font-size: 3rem;
   font-weight: 700;
   color: rgba(180,214,221,0.2);
   line-height: 1;
   margin-bottom: 0.25rem;
   transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(180,214,221,0.5); }
.service-card-body h5 {
   font-family: 'Playfair Display', serif;
   font-size: 1.15rem;
   color: var(--white);
   margin-bottom: 0.75rem;
}
.service-card-body p {
   font-size: 13px;
   color: rgba(255,255,255,0.6);
   line-height: 1.75;
   margin-bottom: 1rem;
}
.service-card-body ul { list-style: none; padding: 0; }
.service-card-body ul li {
   font-size: 12.5px;
   color: rgba(255,255,255,0.7);
   padding: 0.3rem 0 0.3rem 1.1rem;
   position: relative;
   line-height: 1.5;
   border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-card-body ul li:last-child { border-bottom: none; }
.service-card-body ul li::before {
   content: '';
   position: absolute; left: 0; top: 0.65rem;
   width: 5px; height: 5px;
   border-radius: 50%;
   background: var(--accent);
}

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Subtítulo dos cards de serviço (texto secundário) */
.service-card-subtext {
   font-size: 13px;
   color: var(--gray-500);
   margin-bottom: 0.75rem;
}
