/* ==========================================================================
   VisaoClin — Main CSS (Ophthalmology Clinic)
   ========================================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;        /* evita scroll horizontal em qualquer breakpoint */
  max-width: 100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--vc-text, #1A2340);
  background: var(--vc-bg, #F5F8FF);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;        /* evita que slides extras e absolute elements causem overflow */
  max-width: 100%;
  position: relative;        /* cria contexto de empilhamento para filhos absolute */
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- CSS Variables ---- */
:root {
  --vc-primary:    #1650D4;
  --vc-primary-d:  #1040B0;
  --vc-secondary:  #00B4D8;
  --vc-secondary-d:#009BBD;
  --vc-bg:         #F5F8FF;
  --vc-bg-card:    #FAFBFF;
  --vc-dark:       #060D1F;
  --vc-dark-2:     #0A1530;
  --vc-dark-3:     #1A2B5C;
  --vc-text:       #1A2340;
  --vc-text-muted: #5A6A8A;
  --vc-border:     rgba(22,80,212,.10);
  --vc-white:      #ffffff;
  --vc-radius:     12px;
  --vc-radius-lg:  20px;
  --vc-shadow:     0 4px 24px rgba(22,80,212,.09);
  --vc-shadow-lg:  0 12px 48px rgba(22,80,212,.14);
  --vc-transition: .25s ease;
  --vc-container:  1200px;
}

/* ---- Container ---- */
.vc-container { max-width: var(--vc-container); margin: 0 auto; padding: 6px 24px; }

/* ---- Buttons ---- */
.vc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 700; line-height: 1.2;
  transition: all var(--vc-transition); cursor: pointer;
  white-space: nowrap; border: 2px solid transparent;
  text-decoration: none; letter-spacing: .01em;
}
.vc-btn--primary { background: var(--vc-primary); color: #fff; box-shadow: 0 4px 20px rgba(22,80,212,.35); }
.vc-btn--primary:hover { background: var(--vc-primary-d); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(22,80,212,.45); }
.vc-btn--secondary { background: var(--vc-secondary); color: #fff; box-shadow: 0 4px 20px rgba(0,180,216,.3); }
.vc-btn--secondary:hover { background: var(--vc-secondary-d); transform: translateY(-1px); }
.vc-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.vc-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.vc-btn--outline { background: transparent; color: var(--vc-primary); border-color: var(--vc-primary); }
.vc-btn--outline:hover { background: rgba(22,80,212,.06); }
.vc-btn--white { background: #fff; color: var(--vc-primary); box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.vc-btn--white:hover { background: var(--vc-bg); transform: translateY(-1px); }
.vc-btn--dark { background: var(--vc-dark); color: #fff; }
.vc-btn--dark:hover { background: var(--vc-dark-2); }
.vc-btn--lg { padding: 16px 36px; font-size: 16px; }

/* ---- Section Headers ---- */
.vc-section-header { text-align: center; margin-bottom: 52px; }
.vc-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--vc-primary); background: rgba(22,80,212,.09);
  padding: 5px 14px; border-radius: 4px; margin-bottom: 12px;
}
.vc-section-title {
  font-size: clamp(24px, 4vw, 40px); font-weight: 900; line-height: 1.15;
  color: var(--vc-text); letter-spacing: -.02em;
}
.vc-section-title--white { color: #fff; }
.vc-section-desc {
  font-size: 16px; color: var(--vc-text-muted); max-width: 600px;
  margin: 14px auto 0; line-height: 1.7;
}

/* ---- Forms ---- */
.vc-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--vc-border); border-radius: var(--vc-radius);
  font-size: 15px; font-family: inherit; color: var(--vc-text);
  background: #fff; transition: border-color var(--vc-transition), box-shadow var(--vc-transition);
  outline: none;
}
.vc-input:focus { border-color: var(--vc-primary); box-shadow: 0 0 0 3px rgba(22,80,212,.1); }
.vc-textarea { resize: vertical; min-height: 120px; }
.vc-form-group { display: flex; flex-direction: column; gap: 6px; }
.vc-form-group label { font-size: 14px; font-weight: 700; color: var(--vc-text); }
.vc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ==========================================================================
   HEADER — White nav + Agendar Consulta button
   ========================================================================== */
.vc-header { position: sticky; top: 0; z-index: 999; }
.vc-header__top { background: var(--vc-dark); color: rgba(255,255,255,.6); font-size: 12px; }
.vc-header__top-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 7px; padding-bottom: 7px; gap: 16px;
}
.vc-header__top-info { display: flex; align-items: center; gap: 6px; }
.vc-header__top-socials { display: flex; align-items: center; gap: 6px; }
.vc-header__top-social {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--vc-transition); flex-shrink: 0;
}
.vc-header__top-social:hover { background: var(--vc-secondary); color: #fff; transform: translateY(-1px); }
.vc-header__top-social svg { width: 13px; height: 13px; fill: currentColor; }
.vc-header__main {
  background: #fff; border-bottom: 1px solid rgba(22,80,212,.08);
  box-shadow: 0 2px 16px rgba(6,13,31,.06);
}
.vc-header__main-inner { display: flex; align-items: center; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.vc-header__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-decoration: none; }
.vc-header__logo-img { height: 42px; width: auto; }
.vc-header__logo-name { font-size: 20px; font-weight: 900; color: var(--vc-dark); letter-spacing: -.03em; line-height: 1.1; }
.vc-header__logo-sub { font-size: 10px; color: var(--vc-text-muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.vc-header__nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.vc-header__nav-link {
  font-size: 13px; font-weight: 600; color: var(--vc-text-muted); padding: 8px 12px;
  border-radius: 6px; transition: all var(--vc-transition); letter-spacing: .01em;
}
.vc-header__nav-link:hover { color: var(--vc-primary); background: rgba(22,80,212,.06); }
.vc-header__actions { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.vc-header__wa-btn { font-size: 13px; padding: 9px 18px; border-radius: 6px; }
.vc-header__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.vc-header__toggle span { width: 22px; height: 2px; background: var(--vc-dark); border-radius: 2px; transition: all var(--vc-transition); display: block; }
.vc-header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vc-header__toggle.is-open span:nth-child(2) { opacity: 0; }
.vc-header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.vc-mobile-menu {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; top: 53px;
  background: var(--vc-dark); padding: 24px; z-index: 9990;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.vc-mobile-menu.is-open { display: flex; }
.vc-mobile-menu__link { font-size: 17px; font-weight: 700; color: rgba(255,255,255,.85); padding: 14px 16px; border-radius: var(--vc-radius); border-bottom: 1px solid rgba(255,255,255,.08); display: block; }
.vc-mobile-menu__link:hover { color: var(--vc-secondary); }

/* ==========================================================================
   HERO — dark navy, "Visão é Tudo"
   ========================================================================== */
.vchs { position: relative; width: 100%; min-height: 88vh; overflow: hidden; background: var(--vc-dark); color: #fff; }
.vchs__track {
  display: flex; width: 100%; min-height: 88vh;
  transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); will-change: transform;
}
.vchs__slide {
  flex: 0 0 100%; width: 100%; min-height: 88vh; position: relative;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  display: flex; align-items: center;
}
.vchs__overlay { position: absolute; inset: 0; z-index: 1; }
.vchs__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--vc-container);
  margin: 0 auto; padding: 100px 24px 80px;
}
.vchs__content { max-width: 640px; }
.vchs__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--vc-secondary); color: #fff;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 24px; width: fit-content;
}
.vchs__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); flex-shrink: 0; }
.vchs__title { font-size: clamp(36px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -.03em; color: #fff; margin-bottom: 20px; }
.vchs__highlight { color: var(--vc-secondary); }
.vchs__desc { font-size: 17px; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 500px; margin-bottom: 36px; }
.vchs__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.vchs__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px; font-size: 15px; font-weight: 700; line-height: 1.2;
  transition: all var(--vc-transition); cursor: pointer; white-space: nowrap; text-decoration: none; border: 2px solid transparent;
}
.vchs__btn--primary { background: var(--vc-primary); color: #fff; box-shadow: 0 4px 20px rgba(22,80,212,.5); }
.vchs__btn--primary:hover { background: var(--vc-primary-d); transform: translateY(-2px); }
.vchs__btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.vchs__btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.vchs__stats {
  display: flex; align-items: stretch; gap: 0;
  background: rgba(255,255,255,.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  width: fit-content; overflow: hidden;
}
.vchs__stat { text-align: center; padding: 18px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.vchs__stat:last-child { border-right: none; }
.vchs__stat-num { display: block; font-size: 26px; font-weight: 900; color: var(--vc-secondary); line-height: 1.1; }
.vchs__stat-label { display: block; font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.vchs__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  color: #fff; z-index: 10; transition: all var(--vc-transition);
  display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18);
}
.vchs__nav--prev { left: 20px; }
.vchs__nav--next { right: 20px; }
.vchs__nav:hover { background: var(--vc-primary); border-color: var(--vc-primary); }
.vchs__dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.vchs__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.2); transition: all var(--vc-transition); cursor: pointer; }
.vchs__dot.is-active { background: var(--vc-secondary); border-color: var(--vc-secondary); width: 24px; border-radius: 4px; }
.vchs__progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.12); z-index: 10; }
.vchs__progress-bar { height: 100%; background: var(--vc-secondary); width: 0%; animation: vchs-progress var(--vchs-interval, 5s) linear infinite; }
@keyframes vchs-progress { from { width: 0%; } to { width: 100%; } }
.vchs__pause { position: absolute; bottom: 18px; right: 24px; z-index: 10; color: rgba(255,255,255,.5); font-size: 14px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }

/* ==========================================================================
   BENEFITS STRIP — Cirurgia Refrativa, Estrutura Completa, Equipe
   ========================================================================== */
.vc-benefits { padding: 52px 0; background: #fff; border-bottom: 1px solid var(--vc-border); }
.vc-benefits__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vc-benefits__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--vc-radius);
  border: 1.5px solid var(--vc-border); background: var(--vc-bg);
  transition: all var(--vc-transition);
}
.vc-benefits__item:hover { border-color: rgba(22,80,212,.2); box-shadow: var(--vc-shadow); transform: translateY(-2px); }
.vc-benefits__icon {
  font-size: 26px; width: 52px; height: 52px; border-radius: 12px;
  background: rgba(22,80,212,.09); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vc-benefits__text { font-size: 15px; font-weight: 700; color: var(--vc-text); line-height: 1.4; }
.vc-benefits__sub { font-size: 13px; color: var(--vc-text-muted); line-height: 1.6; margin-top: 4px; }

/* ==========================================================================
   ABOUT — dark left + blue right card
   ========================================================================== */
.vc-about { padding: 88px 0; background: var(--vc-bg); }
.vc-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.vc-about__left {
  background: var(--vc-dark-2); border-radius: var(--vc-radius-lg);
  padding: 52px 48px; color: #fff;
}
.vc-about__right {
  background: var(--vc-primary); border-radius: var(--vc-radius-lg);
  padding: 52px 48px; color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
}
.vc-about__left .vc-eyebrow { color: var(--vc-secondary); background: rgba(0,180,216,.12); }
.vc-about__title { font-size: clamp(22px, 3vw, 34px); font-weight: 900; line-height: 1.2; color: #fff; margin-bottom: 20px; }
.vc-about__desc { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 14px; }
.vc-about__features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.vc-about__feature { display: flex; align-items: flex-start; gap: 12px; }
.vc-about__feature-check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--vc-secondary);
  color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.vc-about__feature strong { display: block; font-weight: 700; color: #fff; font-size: 14px; }
.vc-about__feature span { font-size: 13px; color: rgba(255,255,255,.65); }
.vc-about__right-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.65); margin-bottom: 28px; }
.vc-about__counters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vc-about__counter { background: rgba(255,255,255,.12); border-radius: 10px; padding: 20px 16px; }
.vc-about__counter-num { display: block; font-size: 32px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 6px; }
.vc-about__counter-label { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; line-height: 1.4; }

/* ==========================================================================
   SERVICES — "Nossos Serviços" slider cards
   ========================================================================== */
.vc-services { padding: 88px 0; background: #fff; }
.vc-services__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.vc-services__header-text { text-align: left; }
.vc-services__header-text .vc-eyebrow { margin-bottom: 8px; }
.vc-services__nav-btns { display: flex; gap: 10px; }
.vc-services__nav-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--vc-border);
  display: flex; align-items: center; justify-content: center; transition: all var(--vc-transition);
  color: var(--vc-text-muted);
}
.vc-services__nav-btn:hover { background: var(--vc-primary); color: #fff; border-color: var(--vc-primary); }
.vc-services__slider { overflow: hidden; }
.vc-services__track { display: flex; gap: 20px; transition: transform .4s cubic-bezier(0.4,0,0.2,1); }
.vc-service-card {
  flex: 0 0 calc(25% - 15px); min-width: 240px;
  background: var(--vc-bg); border-radius: var(--vc-radius-lg);
  border: 1.5px solid var(--vc-border); overflow: hidden;
  transition: all var(--vc-transition); display: flex; flex-direction: column;
}
.vc-service-card:hover { transform: translateY(-6px); box-shadow: var(--vc-shadow-lg); border-color: rgba(22,80,212,.2); }
.vc-service-card--featured { border-color: var(--vc-primary); }
.vc-service-card__image { height: 180px; overflow: hidden; position: relative; background: var(--vc-bg-card); flex-shrink: 0; }
.vc-service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.vc-service-card:hover .vc-service-card__image img { transform: scale(1.06); }
.vc-service-card__image--placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px;
  background: linear-gradient(135deg, rgba(22,80,212,.06) 0%, rgba(6,13,31,.06) 100%);
}
.vc-service-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--vc-primary); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.vc-service-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.vc-service-card__title { font-size: 16px; font-weight: 800; color: var(--vc-text); margin-bottom: 8px; line-height: 1.3; }
.vc-service-card__desc { font-size: 13px; color: var(--vc-text-muted); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.vc-service-card__price { font-size: 22px; font-weight: 900; color: var(--vc-primary); margin-bottom: 4px; letter-spacing: -.01em; }
.vc-service-card__price-note { font-size: 11px; color: var(--vc-text-muted); margin-bottom: 14px; }
.vc-service-card__link {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--vc-primary);
  padding: 10px 16px; border-radius: 6px; border: 1.5px solid rgba(22,80,212,.25);
  transition: all var(--vc-transition); text-align: center; text-decoration: none;
}
.vc-service-card__link:hover { background: var(--vc-primary); color: #fff; border-color: var(--vc-primary); }
.vc-service-card--featured .vc-service-card__link { background: var(--vc-primary); color: #fff; border-color: var(--vc-primary); }

/* ==========================================================================
   STATS BAR — dark, Complicações Zeradas
   ========================================================================== */
.vc-stats { background: var(--vc-dark-3); padding: 36px 0; }
.vc-stats__grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.vc-stats__item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px; color: rgba(255,255,255,.8);
  border-right: 1px solid rgba(255,255,255,.12);
}
.vc-stats__item:last-child { border-right: none; }
.vc-stats__icon { font-size: 18px; flex-shrink: 0; }
.vc-stats__text { font-size: 13px; font-weight: 700; line-height: 1.3; }
.vc-stats__text strong { display: block; color: var(--vc-secondary); font-size: 15px; }

/* ==========================================================================
   VIDEO — "Veja como é Simples Transformar sua Visão"
   ========================================================================== */
.vc-video { padding: 88px 0; background: var(--vc-bg); }
.vc-video__inner { text-align: center; max-width: 820px; margin: 0 auto; }
.vc-video__desc { font-size: 16px; color: var(--vc-text-muted); line-height: 1.75; margin: 14px auto 36px; max-width: 560px; }
.vc-video__player-wrap { position: relative; width: 100%; }
.vc-video__embed-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 16/9; background: var(--vc-dark); box-shadow: var(--vc-shadow-lg);
}
.vc-video__iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; }
.vc-video__poster {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 1;
}
.vc-video__play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--vc-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px rgba(22,80,212,.55);
  transition: all var(--vc-transition); padding-left: 5px;
}
.vc-video__play-btn:hover { transform: scale(1.12); box-shadow: 0 12px 48px rgba(22,80,212,.7); }
.vc-video__element { width: 100%; height: 100%; object-fit: cover; }
.vc-video__placeholder {
  border-radius: 20px; aspect-ratio: 16/9; background: var(--vc-dark);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--vc-shadow-lg);
}

/* ==========================================================================
   TESTIMONIALS — "O que dizem nossos pacientes"
   ========================================================================== */
.vc-testimonials { padding: 88px 0; background: #fff; }
.vc-testimonials__slider { position: relative; overflow: hidden; }
.vc-testimonials__track { display: flex; gap: 20px; transition: transform .4s ease; }
.vc-testimonial {
  flex: 0 0 calc(33.33% - 14px);
  background: var(--vc-bg); border-radius: var(--vc-radius-lg);
  border: 1.5px solid var(--vc-border); padding: 28px;
  transition: all var(--vc-transition);
}
.vc-testimonial:hover { box-shadow: var(--vc-shadow-lg); transform: translateY(-4px); border-color: rgba(22,80,212,.18); }
.vc-testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.vc-testimonials__btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--vc-border); color: var(--vc-text);
  display: flex; align-items: center; justify-content: center; transition: all var(--vc-transition);
}
.vc-testimonials__btn:hover { background: var(--vc-primary); color: #fff; border-color: var(--vc-primary); }
.vc-testimonials__dots { display: flex; gap: 8px; }
.vc-testimonials__dot-btn { width: 8px; height: 8px; border-radius: 50%; background: var(--vc-border); transition: all var(--vc-transition); cursor: pointer; }
.vc-testimonials__dot-btn.is-active { background: var(--vc-primary); width: 24px; border-radius: 4px; }
.vc-testimonial__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.vc-testimonial__quote { font-size: 44px; color: var(--vc-primary); opacity: .2; font-family: Georgia,serif; line-height: 1; }
.vc-testimonial__text { font-size: 14px; color: var(--vc-text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.vc-testimonial__footer { display: flex; align-items: center; gap: 12px; }
.vc-testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vc-primary), var(--vc-dark-3));
  color: #fff; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vc-testimonial__name { display: block; font-weight: 700; color: var(--vc-text); font-size: 14px; }
.vc-testimonial__city { display: block; font-size: 12px; color: var(--vc-text-muted); }
.vitacore-stars { display: flex; gap: 2px; }
.vitacore-star { font-size: 14px; color: #ddd; }
.vitacore-star.is-filled { color: #F59E0B; }

/* ==========================================================================
   CTA — "Agende sua Avaliação Hoje"
   ========================================================================== */
.vc-cta { padding: 80px 0; background: var(--vc-bg); }
.vc-cta__card {
  position: relative; overflow: hidden;
  background: var(--vc-primary);
  border-radius: 16px; padding: 64px 48px;
  box-shadow: 0 24px 64px rgba(22,80,212,.28);
  color: #fff; text-align: center;
}
.vc-cta__bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(0,180,216,.12) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.vc-cta__content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.vc-cta__badge {
  display: inline-block; background: rgba(255,255,255,.18); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 4px; margin-bottom: 20px;
}
.vc-cta__title { font-size: clamp(24px, 4vw, 40px); font-weight: 900; line-height: 1.2; margin-bottom: 14px; }
.vc-cta__desc { font-size: 16px; color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }
.vc-cta__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.vc-cta__note { font-size: 13px; color: rgba(255,255,255,.65); min-height: 20px; margin-top: 8px; text-align: center; }

/* ==========================================================================
   TEAM — doctors
   ========================================================================== */
.vc-team { padding: 88px 0; background: var(--vc-bg); }
.vc-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vc-team-card {
  background: #fff; border-radius: var(--vc-radius-lg);
  border: 1.5px solid var(--vc-border); overflow: hidden;
  transition: all var(--vc-transition); text-align: center;
}
.vc-team-card:hover { transform: translateY(-6px); box-shadow: var(--vc-shadow-lg); border-color: rgba(22,80,212,.18); }
.vc-team-card__image-wrap { position: relative; height: 220px; overflow: hidden; }
.vc-team-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s ease; }
.vc-team-card:hover .vc-team-card__image-wrap img { transform: scale(1.05); }
.vc-team-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(22,80,212,.07) 0%, rgba(6,13,31,.07) 100%);
  display: flex; align-items: center; justify-content: center;
}
.vc-team-card__placeholder span { font-size: 68px; color: rgba(22,80,212,.18); font-weight: 300; }
.vc-team-card__overlay {
  position: absolute; inset: 0; background: rgba(6,13,31,.75);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px;
  opacity: 0; transition: opacity var(--vc-transition);
}
.vc-team-card:hover .vc-team-card__overlay { opacity: 1; }
.vc-team-card__socials { display: flex; gap: 10px; }
.vc-team-card__social {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: all var(--vc-transition);
}
.vc-team-card__social:hover { background: var(--vc-secondary); transform: scale(1.1); }
.vc-team-card__info { padding: 18px 16px 22px; }
.vc-team-card__name { font-size: 15px; font-weight: 800; color: var(--vc-text); margin-bottom: 4px; }
.vc-team-card__role { font-size: 12px; color: var(--vc-primary); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.vc-team-card__crm { display: inline-block; font-size: 11px; color: var(--vc-text-muted); background: rgba(22,80,212,.07); border-radius: 4px; padding: 3px 10px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.vc-faq { padding: 88px 0; background: #fff; }
.vc-faq__wrap { max-width: 760px; margin: 0 auto; }
.vc-faq__list { display: flex; flex-direction: column; gap: 10px; }
.vc-faq__item { border: 1.5px solid var(--vc-border); border-radius: var(--vc-radius); overflow: hidden; background: var(--vc-bg); transition: border-color var(--vc-transition); }
.vc-faq__item:has(.vc-faq__question[aria-expanded="true"]) { border-color: var(--vc-primary); }
.vc-faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: transparent; text-align: left;
  font-size: 15px; font-weight: 700; color: var(--vc-text); transition: all var(--vc-transition);
}
.vc-faq__question:hover { color: var(--vc-primary); }
.vc-faq__question[aria-expanded="true"] { color: var(--vc-primary); }
.vc-faq__icon { flex-shrink: 0; transition: transform var(--vc-transition); color: var(--vc-text-muted); }
.vc-faq__question[aria-expanded="true"] .vc-faq__icon { transform: rotate(180deg); color: var(--vc-primary); }
.vc-faq__answer { padding: 0 22px 18px; font-size: 14px; color: var(--vc-text-muted); line-height: 1.75; }
.vc-faq__answer[hidden] { display: none; }
.vc-faq__wa { text-align: center; margin-top: 36px; }

/* ==========================================================================
   CONTACT — dark "Venha nos Visitar"
   ========================================================================== */
.vc-contact { padding: 88px 0; background: var(--vc-dark); }
.vc-contact .vc-section-title { color: #fff; }
.vc-contact .vc-section-desc { color: rgba(255,255,255,.65); }
.vc-contact .vc-eyebrow { color: var(--vc-secondary); background: rgba(0,180,216,.12); }
.vc-contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.vc-contact__list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.vc-contact__item { display: flex; align-items: flex-start; gap: 14px; }
.vc-contact__icon-wrap {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(22,80,212,.3); color: var(--vc-secondary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vc-contact__label { display: block; font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; margin-bottom: 3px; }
.vc-contact__value { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.85); transition: color var(--vc-transition); }
a.vc-contact__value:hover { color: var(--vc-secondary); }
.vc-contact__map { border-radius: var(--vc-radius); overflow: hidden; }
.vc-contact__form-wrap { background: rgba(255,255,255,.05); border-radius: var(--vc-radius-lg); border: 1px solid rgba(255,255,255,.1); padding: 36px; }
.vc-contact__form-wrap h3 { color: #fff; }
.vc-contact__form-wrap p { color: rgba(255,255,255,.55); }
.vc-contact__form-wrap .vc-input { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: #fff; }
.vc-contact__form-wrap .vc-input::placeholder { color: rgba(255,255,255,.35); }
.vc-contact__form-wrap .vc-input:focus { border-color: var(--vc-secondary); box-shadow: 0 0 0 3px rgba(0,180,216,.15); }
.vc-contact__form-wrap .vc-form-group label { color: rgba(255,255,255,.75); }
.vc-contact__form { display: flex; flex-direction: column; gap: 18px; }
.vc-contact__status { font-size: 14px; min-height: 24px; padding: 0 4px; }
.vc-contact__status.is-success { color: #25D366; }
.vc-contact__status.is-error { color: #ff6b6b; }

/* ==========================================================================
   CONVENIOS
   ========================================================================== */
.vc-convenios { padding: 72px 0; background: var(--vc-bg); }
.vc-convenios__grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.vc-convenio-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 18px 16px; background: #fff;
  border: 1.5px solid var(--vc-border); border-radius: var(--vc-radius);
  min-width: 130px; max-width: 180px; flex: 1 1 130px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.vc-convenio-card:hover { box-shadow: var(--vc-shadow); border-color: rgba(22,80,212,.2); transform: translateY(-2px); }
.vc-convenio-card__logo-wrap { display: flex; align-items: center; justify-content: center; height: 52px; }
.vc-convenio-card__logo { max-height: 52px; max-width: 140px; width: auto; object-fit: contain; }
.vc-convenio-card__icon { font-size: 28px; line-height: 1; }
.vc-convenio-card__name { font-size: 12px; font-weight: 700; color: var(--vc-text); text-align: center; line-height: 1.4; opacity: .75; }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.vc-whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: all var(--vc-transition);
  animation: float-wa 3s ease-in-out infinite;
}
.vc-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.6); animation: none; }
@keyframes float-wa { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.vc-whatsapp-float__tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--vc-dark); color: #fff;
  font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 6px;
  opacity: 0; pointer-events: none; transition: opacity var(--vc-transition);
}
.vc-whatsapp-float__tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--vc-dark);
}
.vc-whatsapp-float:hover .vc-whatsapp-float__tooltip { opacity: 1; }

/* ==========================================================================
   FOOTER — dark
   ========================================================================== */
.vc-footer { background: var(--vc-dark); color: rgba(255,255,255,.6); padding-top: 64px; }
.vc-footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.vc-footer__logo-link { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.vc-footer__logo-name { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -.03em; display: block; }
.vc-footer__logo-sub { font-size: 10px; color: rgba(255,255,255,.4); display: block; letter-spacing: .06em; text-transform: uppercase; }
.vc-footer__desc { font-size: 13px; line-height: 1.7; max-width: 300px; margin-bottom: 18px; }
.vc-footer__contact-quick { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.vc-footer__contact-link { display: flex; align-items: center; gap: 8px; font-size: 13px; transition: color var(--vc-transition); }
.vc-footer__contact-link:hover { color: #fff; }
.vc-footer__socials { display: flex; gap: 8px; }
.vc-footer__social {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center; transition: all var(--vc-transition);
}
.vc-footer__social:hover { background: var(--vc-secondary); color: #fff; transform: translateY(-2px); }
.vc-footer__col-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.vc-footer ul { display: flex; flex-direction: column; gap: 9px; }
.vc-footer__link { font-size: 13px; transition: color var(--vc-transition); }
.vc-footer__link:hover { color: #fff; }
.vc-footer__wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; background: rgba(37,211,102,.12); color: #25D366;
  font-size: 12px; font-weight: 700; padding: 9px 16px; border-radius: 50px;
  transition: all var(--vc-transition);
}
.vc-footer__wa-btn:hover { background: rgba(37,211,102,.22); }
.vc-footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 12px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .vc-team__grid { grid-template-columns: repeat(2, 1fr); }
  .vc-about__inner { grid-template-columns: 1fr; }
  .vc-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vc-benefits__inner { grid-template-columns: 1fr; }
  /* Services: 2 cards por vez em tablet */
  .vc-service-card { flex: 0 0 calc(50% - 10px); min-width: 0; }
}

@media (max-width: 768px) {
  /* Header */
  .vc-header__nav, .vc-header__actions { display: none; }
  .vc-header__toggle { display: flex; }
  .vc-header__top { display: none; }

  /* Hero */
  .vchs__inner { padding: 80px 24px 60px; }
  .vchs__title { font-size: clamp(30px, 8vw, 50px); }
  .vchs__stats { flex-direction: column; width: 100%; border-radius: 8px; }
  .vchs__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 14px 20px; }
  .vchs__stat:last-child { border-bottom: none; }

  /* Services */
  .vc-services__header { flex-direction: column; align-items: flex-start; }
  .vc-service-card { flex: 0 0 calc(50% - 10px); min-width: 0; }

  /* About — reduz padding dos cards escuros */
  .vc-about__inner { grid-template-columns: 1fr; gap: 16px; }
  .vc-about__left  { padding: 32px 24px; }
  .vc-about__right { padding: 32px 24px; }
  .vc-about__counters { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vc-about__counter-num { font-size: 26px; }

  /* Stats */
  .vc-stats__grid { flex-direction: column; }
  .vc-stats__item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  .vc-stats__item:last-child { border-bottom: none; }

  /* Team */
  .vc-team__grid { grid-template-columns: 1fr 1fr; }

  /* Misc */
  .vc-faq__wrap { max-width: 100%; }
  .vc-contact__inner { grid-template-columns: 1fr; }
  .vc-testimonials__track { flex-direction: column; }
  .vc-testimonial { flex: 0 0 100%; }
  .vc-cta__card { padding: 40px 24px; }
  .vc-cta__actions { flex-direction: column; }
  .vc-form-row { grid-template-columns: 1fr; }
  .vc-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Layout base */
  .vc-container { padding: 0 16px; }
  .vc-section-title { font-size: clamp(22px, 6vw, 36px); }

  /* Hero */
  .vchs__inner { padding: 70px 16px 50px; }
  .vchs__content { max-width: 100%; }
  .vchs__stats { width: 100%; }
  .vchs__stat { padding: 10px 16px; }
  .vchs__title { font-size: clamp(26px, 8vw, 44px); }
  .vchs__desc { font-size: 15px; }
  .vchs__actions { flex-direction: column; }
  .vchs__btn { width: 100%; justify-content: center; }

  /* Services — 1 card por vez em mobile */
  .vc-service-card { flex: 0 0 100%; min-width: 0; }

  /* About — padding ainda menor */
  .vc-about__left  { padding: 24px 16px; }
  .vc-about__right { padding: 24px 16px; }
  .vc-about__counters { gap: 10px; }
  .vc-about__counter { padding: 14px 12px; }
  .vc-about__counter-num { font-size: 22px; }
  .vc-about__title { font-size: clamp(20px, 5vw, 28px); }

  /* CTA */
  .vc-cta__card { padding: 32px 16px; }

  /* Team */
  .vc-team__grid { grid-template-columns: 1fr; }

  /* Stats */
  .vc-stats__item { padding: 10px 16px; }
}

/* Telas muito estreitas — ≤360px */
@media (max-width: 360px) {
  .vc-container { padding: 6px 12px; }
  .vc-header__logo-name { font-size: 17px; }
  .vc-header__logo-sub { display: none; }
  .vchs__badge { font-size: 10px; padding: 5px 10px; }
  .vchs__btn { font-size: 13px; padding: 11px 18px; }
  .vc-about__left  { padding: 20px 14px; }
  .vc-about__right { padding: 20px 14px; }
  .vc-about__counters { grid-template-columns: 1fr 1fr; gap: 8px; }
  .vc-about__counter-num { font-size: 20px; }
}

/* ==========================================================================
   VitaCore — Novas Seções (Gallery, Process, Logos)
   ========================================================================== */

/* ---- Galeria ---- */
.vc-gallery {
  padding: 80px 0;
  background: var(--vc-bg, #F5F8FF);
}
.vc-gallery .vc-section-title { text-align:center; margin-bottom:40px; }
.vc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cols, 3), 1fr);
  gap: var(--gallery-gap, 16px);
}
.vc-gallery__item {
  position: relative; overflow: hidden;
  border-radius: var(--vc-radius, 12px);
  background: #f0f4f8;
}
.vc-gallery__img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.vc-gallery__item:hover .vc-gallery__img { transform: scale(1.04); }
.vc-gallery__overlay {
  position: absolute; inset: 0;
  background: rgba(22,80,212,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.vc-gallery__item:hover .vc-gallery__overlay { opacity: 1; }
.vc-gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55);
  color: #fff; font-size: 13px; padding: 8px 12px;
}

/* Lightbox */
.vc-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
}
.vc-lightbox[hidden] { display: none; }
.vc-lightbox__inner { max-width: 90vw; max-height: 90vh; text-align: center; }
.vc-lightbox__inner img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.vc-lightbox__caption { color: #ccc; font-size: 13px; margin-top: 12px; }
.vc-lightbox__close,
.vc-lightbox__prev,
.vc-lightbox__next {
  position: absolute; top: 50%; background: rgba(255,255,255,.15);
  color: #fff; border: none; border-radius: 50%;
  width: 44px; height: 44px; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.vc-lightbox__close { top: 16px; right: 16px; transform: none; }
.vc-lightbox__prev  { left:  16px; transform: translateY(-50%); }
.vc-lightbox__next  { right: 16px; transform: translateY(-50%); }
.vc-lightbox__close:hover,
.vc-lightbox__prev:hover,
.vc-lightbox__next:hover { background: rgba(255,255,255,.3); }

@media (max-width: 768px) {
  .vc-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vc-gallery__grid { grid-template-columns: 1fr; }
}

/* ---- Processo ---- */
.vc-process {
  padding: 80px 0;
  background: var(--vc-white, #fff);
}
.vc-process__header { text-align: center; margin-bottom: 56px; }
.vc-process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0 24px;
  position: relative;
}
.vc-process__step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative;
}
.vc-process__connector { position: absolute; top: 32px; left: 50%; width: 100%; }
.vc-process__line {
  display: block; height: 2px;
  background: linear-gradient(90deg, var(--vc-primary, #1B6CB0), rgba(27,108,176,.1));
}
.vc-process__circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--vc-primary, #1B6CB0);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px;
  box-shadow: 0 4px 16px rgba(27,108,176,.25);
  position: relative; z-index: 1; margin-bottom: 20px;
}
.vc-process__num { font-size: 20px; font-weight: 800; }
.vc-process__icon { font-size: 24px; }
.vc-process__title {
  font-size: 16px; font-weight: 700;
  color: var(--vc-dark, #0D1B2A);
  margin-bottom: 8px;
}
.vc-process__desc { font-size: 14px; color: var(--vc-text-muted, #5A6A8A); line-height: 1.6; }

@media (max-width: 640px) {
  .vc-process__grid { grid-template-columns: 1fr; gap: 40px 0; }
  .vc-process__connector { display: none; }
}

/* ---- Logos / Convênios ---- */
.vc-logos {
  padding: 60px 0;
  background: var(--vc-bg, #F5F8FF);
  border-top: 1px solid var(--vc-border, rgba(22,80,212,.10));
  border-bottom: 1px solid var(--vc-border, rgba(22,80,212,.10));
}
.vc-logos__header { text-align: center; margin-bottom: 36px; }
.vc-logos__grid {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 24px 40px;
  padding: 0;
}
.vc-logos__item {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
  transition: transform .2s;
}
.vc-logos__item:hover { transform: scale(1.06); }
.vc-logos__img {
  height: 52px; width: auto; max-width: 140px;
  object-fit: contain; opacity: .75;
  filter: grayscale(50%);
  transition: opacity .2s, filter .2s;
}
.vc-logos__item:hover .vc-logos__img { opacity: 1; filter: none; }
.vc-logos__text {
  font-size: 15px; font-weight: 600;
  color: var(--vc-text-muted, #5A6A8A);
}
.vc-logos__desc { font-size: 11px; color: var(--vc-text-muted, #5A6A8A); }

/* ---- Admin: Color row ---- */
.vc-color-row { display:flex; align-items:center; gap:8px; }
.vc-color-row input[type=color] { width:36px; height:36px; padding:2px; border-radius:6px; border:1px solid #dde4ed; cursor:pointer; }
