/* ==========================================================================
   VitaCore — Dermatologia Theme — main.css
   Design: warm cream, terracotta, organic aesthetic
   ========================================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  /* Colors — overridable from WP panel via html-head.php inline style */
  --vc-primary:      #8B5E52;
  --vc-primary-d:    #6B3F35;
  --vc-secondary:    #C4956A;
  --vc-rose:         #CC8878;
  --vc-rose-light:   #E8C5BB;
  --vc-bg:           #F5EFE6;
  --vc-bg-warm:      #EDE5D8;
  --vc-bg-white:     #FDFAF6;
  --vc-dark:         #2A1A10;
  --vc-dark-2:       #3D2416;
  --vc-text:         #2D1E14;
  --vc-text-muted:   #7A6458;
  --vc-text-light:   #A89080;
  --vc-border:       #DDD0C4;
  --vc-border-light: #EDE5D8;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing & shape */
  --vc-radius:    10px;
  --vc-radius-lg: 18px;
  --vc-radius-xl: 28px;
  --vc-transition: .25s ease;

  /* Shadows */
  --vc-shadow:    0 4px 24px rgba(45,30,20,.07);
  --vc-shadow-lg: 0 12px 48px rgba(45,30,20,.12);
  --vc-shadow-xl: 0 24px 80px rgba(45,30,20,.18);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--vc-bg);
  color: var(--vc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--vc-transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.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; }

.vc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Eyebrow label */
.vc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vc-primary);
  margin-bottom: 16px;
}
.vc-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--vc-primary);
}

/* Section header */
.vc-section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.vc-section-header .vc-eyebrow { display: block; text-align: center; }
.vc-section-header .vc-eyebrow::before { display: none; }

.vc-section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--vc-text);
  margin-bottom: 16px;
}
.vc-section-desc {
  font-size: 16px;
  color: var(--vc-text-muted);
  line-height: 1.75;
}

/* Buttons */
.vc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--vc-transition);
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.vc-btn--primary {
  background: var(--vc-primary);
  color: #fff;
  border-color: var(--vc-primary);
}
.vc-btn--primary:hover { background: var(--vc-primary-d); border-color: var(--vc-primary-d); transform: translateY(-2px); box-shadow: var(--vc-shadow); }
.vc-btn--secondary {
  background: var(--vc-secondary);
  color: #fff;
  border-color: var(--vc-secondary);
}
.vc-btn--secondary:hover { background: var(--vc-primary); border-color: var(--vc-primary); transform: translateY(-2px); }
.vc-btn--outline {
  background: transparent;
  color: var(--vc-primary);
  border-color: var(--vc-primary);
}
.vc-btn--outline:hover { background: var(--vc-primary); color: #fff; transform: translateY(-2px); }
.vc-btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.vc-btn--ghost:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }
.vc-btn--white {
  background: #fff;
  color: var(--vc-primary);
  border-color: #fff;
  font-weight: 700;
}
.vc-btn--white:hover { background: var(--vc-bg); border-color: var(--vc-bg); transform: translateY(-2px); }
.vc-btn--rose {
  background: var(--vc-rose);
  color: #fff;
  border-color: var(--vc-rose);
}
.vc-btn--rose:hover { background: #B86B5A; border-color: #B86B5A; transform: translateY(-2px); }

/* Form elements */
.vc-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--vc-border);
  border-radius: var(--vc-radius);
  font-size: 15px;
  color: var(--vc-text);
  background: #fff;
  transition: border-color var(--vc-transition);
  outline: none;
  font-family: var(--font-sans);
}
.vc-input:focus { border-color: var(--vc-primary); box-shadow: 0 0 0 3px rgba(139,94,82,.12); }
.vc-input::placeholder { color: var(--vc-text-light); }
.vc-textarea { resize: vertical; min-height: 120px; }
.vc-form-group { display: flex; flex-direction: column; gap: 6px; }
.vc-form-group label { font-size: 13px; font-weight: 600; color: var(--vc-text); }
.vc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .vc-form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.vc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,250,246,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--vc-border-light);
  transition: all var(--vc-transition);
}
.vc-header.is-scrolled { box-shadow: var(--vc-shadow); }

/* Top bar */
.vc-header__top {
  background: var(--vc-dark);
  padding: 8px 0;
}
.vc-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vc-header__top-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.vc-header__top-info svg { color: var(--vc-secondary); flex-shrink: 0; }
.vc-header__top-social { display: flex; gap: 12px; }
.vc-header__top-social-link {
  color: rgba(255,255,255,.6);
  transition: color var(--vc-transition);
}
.vc-header__top-social-link:hover { color: var(--vc-secondary); }

/* Main nav */
.vc-header__main { padding: 0; }
.vc-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}

/* Logo */
.vc-header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.vc-header__logo-img { max-height: 44px; width: auto; }
.vc-header__logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--vc-primary);
  display: flex; align-items: center; justify-content: center;
}
.vc-header__logo-text { display: flex; flex-direction: column; }
.vc-header__logo-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--vc-text);
  line-height: 1.1;
}
.vc-header__logo-sub {
  font-size: 10px;
  color: var(--vc-text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav */
.vc-header__nav { display: flex; gap: 4px; }
.vc-header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--vc-text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--vc-transition);
  white-space: nowrap;
}
.vc-header__nav-link:hover { color: var(--vc-primary); background: rgba(139,94,82,.06); }

/* Actions */
.vc-header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.vc-header__wa-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--vc-text-muted); padding: 8px 16px;
  border-radius: 50px; border: 1.5px solid var(--vc-border);
  transition: all var(--vc-transition);
}
.vc-header__wa-btn:hover { border-color: var(--vc-primary); color: var(--vc-primary); background: rgba(139,94,82,.04); }

/* Hamburger */
.vc-header__toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 8px; cursor: pointer; transition: background var(--vc-transition);
}
.vc-header__toggle:hover { background: var(--vc-bg-warm); }
.vc-header__toggle span { width: 22px; height: 2px; background: var(--vc-text); border-radius: 2px; transition: all var(--vc-transition); }
.vc-header__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vc-header__toggle.is-active span:nth-child(2) { opacity: 0; }
.vc-header__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.vc-mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--vc-bg-white);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--vc-transition);
}
.vc-mobile-menu.is-open { opacity: 1; pointer-events: all; }
.vc-mobile-menu__link {
  display: block; padding: 14px 24px; font-size: 22px;
  font-family: var(--font-serif); color: var(--vc-text);
  font-weight: 500; text-align: center;
  transition: color var(--vc-transition);
}
.vc-mobile-menu__link:hover { color: var(--vc-primary); }

@media (max-width: 900px) {
  .vc-header__nav { display: none; }
  .vc-header__actions .vc-header__wa-btn { display: none; }
  .vc-header__actions .vc-btn--primary { display: none; }
  .vc-header__toggle { display: flex; }
}
@media (max-width: 600px) {
  .vc-header__top { display: none; }
  .vc-header__main-inner { height: 60px; }
}

/* ==========================================================================
   HERO SLIDER (vchs classes — kept as-is for JS compatibility)
   ========================================================================== */
.vchs {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
}
.vchs__track {
  display: flex;
  min-height: 92vh;
}
.vchs__slide {
  flex: 0 0 100%;
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--vc-dark);
  transform: translateX(0);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.vchs__overlay {
  position: absolute; inset: 0;
  background: rgba(42,26,16,.55);
  z-index: 1;
}
.vchs__inner {
  position: relative; z-index: 2;
  width: 100%;
  padding: 100px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.vchs__content { max-width: 680px; }

.vchs__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.vchs__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--vc-secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }

.vchs__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.vchs__highlight {
  color: var(--vc-secondary);
  font-style: italic;
}
.vchs__desc {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}
.vchs__actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.vchs__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all .2s ease;
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap; line-height: 1;
}
.vchs__btn--primary {
  background: var(--vc-primary); color: #fff; border-color: var(--vc-primary);
}
.vchs__btn--primary:hover { background: var(--vc-primary-d); border-color: var(--vc-primary-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(139,94,82,.3); }
.vchs__btn--ghost {
  background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: blur(8px);
}
.vchs__btn--ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

/* Stats in hero */
.vchs__stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 14px;
  padding: 20px 28px; margin-top: 40px; width: fit-content;
}
.vchs__stat { text-align: center; padding: 0 24px; }
.vchs__stat:first-child { padding-left: 0; }
.vchs__stat:last-child { padding-right: 0; }
.vchs__stat-num { display: block; font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: #fff; line-height: 1.1; }
.vchs__stat-label { display: block; font-size: 11px; color: rgba(255,255,255,.6); margin-top: 4px; white-space: nowrap; letter-spacing: .04em; }
.vchs__stat-sep { display: block; width: 1px; height: 36px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* Slider nav */
.vchs__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s ease;
}
.vchs__nav:hover { background: rgba(255,255,255,.25); }
.vchs__nav--prev { left: 24px; }
.vchs__nav--next { right: 24px; }
.vchs__dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 8px; align-items: center;
}
.vchs__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; border: none; padding: 0; flex-shrink: 0;
  transition: all .25s ease;
}
.vchs__dot.is-active { background: #fff; width: 28px; border-radius: 4px; }
.vchs__progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,.1); z-index: 20; overflow: hidden;
}
.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%} }

@media (max-width: 768px) {
  .vchs,.vchs__track,.vchs__slide { min-height: 85vh; }
  .vchs__inner { padding: 80px 20px 60px; }
  .vchs__nav { display: none; }
  .vchs__dots { bottom: 20px; }
}
@media (max-width: 480px) {
  .vchs__btn { padding: 12px 22px; font-size: 14px; }
  .vchs__stats { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .vchs__stat { padding: 0 12px; }
  .vchs__stat-sep { display: none; }
}

/* ==========================================================================
   BENEFITS STRIP
   ========================================================================== */
.vc-benefits {
  background: var(--vc-bg-white);
  padding: 32px 0;
  border-bottom: 1px solid var(--vc-border-light);
}
.vc-benefits__inner {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: stretch; justify-content: center;
}
.vc-benefits__item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding: 28px 32px;
  background: #fff; border-radius: var(--vc-radius-lg);
  border: 1px solid var(--vc-border-light);
  box-shadow: var(--vc-shadow);
  flex: 1 1 200px; min-width: 180px; max-width: 260px;
  transition: all var(--vc-transition);
}
.vc-benefits__item:hover { transform: translateY(-4px); box-shadow: var(--vc-shadow-lg); border-color: var(--vc-rose-light); }
.vc-benefits__icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(139,94,82,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.vc-benefits__text { font-size: 14px; font-weight: 600; color: var(--vc-text); line-height: 1.4; }
.vc-benefits__icon { font-size: 22px; }

@media (max-width: 600px) {
  .vc-benefits__inner { gap: 12px; }
  .vc-benefits__item { padding: 20px 20px; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.vc-about { padding: 96px 0; background: var(--vc-bg); }
.vc-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vc-about__visual { position: relative; display: flex; justify-content: center; }
.vc-about__image-frame {
  position: relative; width: 380px; height: 440px; border-radius: var(--vc-radius-xl);
  overflow: hidden; box-shadow: var(--vc-shadow-xl);
}
.vc-about__image-bg {
  position: absolute; inset: 24px -24px -24px 24px;
  background: var(--vc-rose-light); border-radius: var(--vc-radius-xl); z-index: 0;
}
.vc-about__photo {
  position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--vc-radius-xl); display: block;
}
.vc-about__image-card {
  position: relative; z-index: 1; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--vc-primary) 0%, var(--vc-dark) 100%);
  border-radius: var(--vc-radius-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--vc-shadow-xl);
}
.vc-about__floating-badge {
  position: absolute; bottom: 28px; right: -32px; z-index: 3;
  background: #fff; border-radius: var(--vc-radius-lg);
  padding: 16px 22px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--vc-shadow-lg);
}
.vc-about__floating-badge strong { display: block; font-weight: 700; font-size: 14px; color: var(--vc-text); }
.vc-about__floating-badge span { font-size: 12px; color: var(--vc-text-muted); }
.vc-about__content { display: flex; flex-direction: column; }
.vc-about__desc { font-size: 16px; color: var(--vc-text-muted); line-height: 1.8; margin-bottom: 16px; }
.vc-about__features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.vc-about__feature { display: flex; align-items: flex-start; gap: 14px; }
.vc-about__feature-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(139,94,82,.12); color: var(--vc-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.vc-about__feature strong { display: block; font-weight: 700; color: var(--vc-text); margin-bottom: 2px; font-size: 15px; }
.vc-about__feature span { font-size: 14px; color: var(--vc-text-muted); }

@media (max-width: 900px) {
  .vc-about__inner { grid-template-columns: 1fr; gap: 48px; }
  .vc-about__visual { order: -1; justify-content: center; }
  .vc-about__image-frame { width: 100%; max-width: 400px; height: 360px; }
  .vc-about__floating-badge { right: 0; bottom: -16px; }
}

/* ==========================================================================
   SERVICES / TRATAMENTOS
   ========================================================================== */
.vc-services { padding: 96px 0; background: var(--vc-bg-white); }
.vc-services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.vc-service-card {
  position: relative; overflow: hidden; border-radius: var(--vc-radius-lg);
  background: var(--vc-bg); border: 1px solid var(--vc-border-light);
  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: transparent; }
.vc-service-card__image {
  position: relative; height: 220px; overflow: hidden; border-radius: var(--vc-radius-lg) var(--vc-radius-lg) 0 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.08); }
.vc-service-card__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(42,26,16,.65) 100%);
}
.vc-service-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.vc-service-card__icon-wrap {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(139,94,82,.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.vc-service-card__title { font-family: var(--font-serif); font-size: 19px; font-weight: 500; color: var(--vc-text); margin-bottom: 10px; }
.vc-service-card__desc { font-size: 14px; color: var(--vc-text-muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.vc-service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--vc-primary);
  letter-spacing: .04em; text-transform: uppercase;
  transition: gap var(--vc-transition);
}
.vc-service-card__link:hover { gap: 10px; }

@media (max-width: 900px) { .vc-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vc-services__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   STATS
   ========================================================================== */
.vc-stats {
  background: var(--vc-dark); padding: 72px 0;
  position: relative; overflow: hidden;
}
.vc-stats::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.vc-stats__header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.vc-stats__eyebrow { color: var(--vc-secondary); background: rgba(196,149,106,.1); border: 1px solid rgba(196,149,106,.2); }
.vc-stats__eyebrow::before { background: var(--vc-secondary); }
.vc-stats__title { color: #fff; }
.vc-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; z-index: 1;
}
.vc-stats__item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 32px 24px; color: #fff;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--vc-transition);
}
.vc-stats__item:last-child { border-right: none; }
.vc-stats__item:hover { background: rgba(255,255,255,.04); }
.vc-stats__icon { font-size: 28px; margin-bottom: 12px; opacity: .7; }
.vc-stats__num {
  font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 500; line-height: 1.1; margin-bottom: 10px; color: var(--vc-secondary);
}
.vc-stats__label { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; letter-spacing: .04em; }

@media (max-width: 768px) {
  .vc-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .vc-stats__item:nth-child(2) { border-right: none; }
  .vc-stats__item:nth-child(1),.vc-stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 480px) { .vc-stats__grid { grid-template-columns: 1fr; } .vc-stats__item { border-right: none!important; border-bottom: 1px solid rgba(255,255,255,.08)!important; } .vc-stats__item:last-child { border-bottom: none!important; } }

/* ==========================================================================
   VIDEO / EXPERIENCE
   ========================================================================== */
.vc-video {
  padding: 96px 0;
  background: var(--vc-dark-2);
  position: relative;
  overflow: hidden;
}
.vc-video::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,149,106,.08) 0%, transparent 70%);
}
.vc-video__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.vc-video__content .vc-eyebrow { color: var(--vc-secondary); }
.vc-video__content .vc-eyebrow::before { background: var(--vc-secondary); }
.vc-video__content .vc-section-title { color: #fff; }
.vc-video__desc { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.8; margin: 20px 0 28px; }
.vc-video__features { display: flex; flex-direction: column; gap: 12px; }
.vc-video__features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.8); font-weight: 400; }
.vc-video__player-wrap { position: relative; }
.vc-video__embed-wrap {
  position: relative; border-radius: var(--vc-radius-lg); overflow: hidden;
  aspect-ratio: 16/9; background: var(--vc-dark);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
}
.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: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--vc-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transition: all var(--vc-transition); padding-left: 4px;
}
.vc-video__play-btn:hover { transform: scale(1.1); background: #fff; }
.vc-video__element { width: 100%; height: 100%; object-fit: cover; }
.vc-video__placeholder {
  border-radius: var(--vc-radius-lg); aspect-ratio: 16/9;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.vc-video__placeholder-inner { text-align: center; }

/* Center-badge variant for "experience" layout */
.vc-video--centered { text-align: center; }
.vc-video--centered .vc-video__inner { grid-template-columns: 1fr; text-align: center; max-width: 700px; margin: 0 auto; }
.vc-video--centered .vc-video__content { align-items: center; }
.vc-video--centered .vc-section-header { margin-bottom: 40px; }
.vc-video__experience-badge {
  width: 140px; height: 140px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 40px;
  position: relative;
}
.vc-video__experience-badge::before {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}
.vc-video__experience-badge::after {
  content: ''; position: absolute; inset: -24px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}

@media (max-width: 900px) {
  .vc-video__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.vc-testimonials { padding: 96px 0; background: var(--vc-bg); }
.vc-testimonials__slider { position: relative; overflow: hidden; }
.vc-testimonials__track { display: flex; gap: 24px; transition: transform .4s ease; }
.vc-testimonial {
  flex: 0 0 calc(33.33% - 16px);
  background: #fff; border-radius: var(--vc-radius-lg);
  border: 1px solid var(--vc-border-light);
  padding: 36px; transition: all var(--vc-transition);
}
.vc-testimonial:hover { box-shadow: var(--vc-shadow-lg); transform: translateY(-4px); border-color: var(--vc-rose-light); }
.vc-testimonial__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.vc-testimonial__stars { display: flex; gap: 3px; }
.vc-testimonial__star-filled { color: #F59E0B; font-size: 16px; }
.vc-testimonial__star-empty { color: var(--vc-border); font-size: 16px; }
.vc-testimonial__quote { font-family: var(--font-serif); font-size: 56px; line-height: 1; color: var(--vc-rose-light); margin-top: -12px; }
.vc-testimonial__text { font-size: 15px; color: var(--vc-text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.vc-testimonial__footer { display: flex; align-items: center; gap: 14px; }
.vc-testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--vc-primary), var(--vc-secondary));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
  font-family: var(--font-serif);
}
.vc-testimonial__name { font-weight: 700; color: var(--vc-text); font-size: 15px; display: block; }
.vc-testimonial__city { font-size: 13px; color: var(--vc-text-muted); }
.vc-testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 48px; }
.vc-testimonials__btn {
  width: 46px; height: 46px; 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 { border-color: var(--vc-primary); color: var(--vc-primary); background: rgba(139,94,82,.05); }
.vc-testimonials__dots { display: flex; gap: 8px; align-items: center; }
.vc-testimonials__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--vc-border);
  transition: all var(--vc-transition); border: none; cursor: pointer; padding: 0;
}
.vc-testimonials__dot.is-active { background: var(--vc-primary); width: 24px; border-radius: 4px; }

@media (max-width: 900px) { .vc-testimonial { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 600px) { .vc-testimonial { flex: 0 0 100%; } }

/* ==========================================================================
   CTA
   ========================================================================== */
.vc-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--vc-rose) 0%, #B86B5A 100%);
  position: relative; overflow: hidden;
}
.vc-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.07) 0%, transparent 60%);
}
.vc-cta__card { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.vc-cta__badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.3); border-radius: 50px; padding: 7px 18px; margin-bottom: 24px;
}
.vc-cta__title {
  font-family: var(--font-serif); font-size: clamp(30px, 4vw, 50px);
  font-weight: 500; color: #fff; margin-bottom: 18px; line-height: 1.2;
  font-style: italic;
}
.vc-cta__desc { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.7; margin-bottom: 40px; }
.vc-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.vc-cta__form {
  display: flex; gap: 12px; width: 100%; max-width: 520px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 6px 6px 6px 24px; backdrop-filter: blur(8px);
}
.vc-cta__input {
  flex: 1; background: transparent; border: none; outline: none;
  font-size: 15px; color: #fff; font-family: var(--font-sans);
}
.vc-cta__input::placeholder { color: rgba(255,255,255,.6); }
.vc-cta__divider { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.5); font-size: 13px; width: 100%; max-width: 520px; }
.vc-cta__divider::before, .vc-cta__divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.2); }
.vc-cta__note { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 16px; min-height: 20px; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.vc-team { padding: 96px 0; background: var(--vc-bg-white); }
.vc-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.vc-team-card {
  background: var(--vc-bg); border-radius: var(--vc-radius-lg);
  border: 1px solid var(--vc-border-light); overflow: hidden;
  transition: all var(--vc-transition);
}
.vc-team-card:hover { transform: translateY(-6px); box-shadow: var(--vc-shadow-lg); }
.vc-team-card__image-wrap { position: relative; height: 280px; 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(139,94,82,.1) 0%, rgba(196,149,106,.1) 100%);
  display: flex; align-items: center; justify-content: center;
}
.vc-team-card__placeholder span { font-size: 72px; color: rgba(139,94,82,.2); font-weight: 300; font-family: var(--font-serif); }
.vc-team-card__overlay {
  position: absolute; inset: 0; background: rgba(42,26,16,.75);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px;
  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: 40px; height: 40px; 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-primary); transform: scale(1.1); }
.vc-team-card__info { padding: 20px 24px; background: #fff; }
.vc-team-card__name { font-family: var(--font-serif); font-size: 17px; font-weight: 500; color: var(--vc-text); margin-bottom: 4px; }
.vc-team-card__role { font-size: 13px; color: var(--vc-primary); font-weight: 600; margin-bottom: 8px; }
.vc-team-card__crm { display: inline-block; font-size: 11px; color: var(--vc-text-muted); background: var(--vc-bg); border-radius: 6px; padding: 3px 10px; }

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

/* ==========================================================================
   FAQ
   ========================================================================== */
.vc-faq { padding: 96px 0; background: var(--vc-bg); }
.vc-faq__wrap { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
.vc-faq__sub { font-size: 15px; color: var(--vc-text-muted); line-height: 1.7; margin-top: 16px; }
.vc-faq__list { display: flex; flex-direction: column; gap: 12px; }
.vc-faq__item {
  background: #fff; border-radius: var(--vc-radius-lg);
  border: 1px solid var(--vc-border-light); overflow: hidden;
  transition: border-color var(--vc-transition);
}
.vc-faq__item.is-open { border-color: var(--vc-primary); }
.vc-faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--vc-text); cursor: pointer;
  transition: color 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 24px 20px; }
.vc-faq__answer p { font-size: 14px; color: var(--vc-text-muted); line-height: 1.75; }

@media (max-width: 900px) { .vc-faq__wrap { grid-template-columns: 1fr; gap: 40px; } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.vc-contact { padding: 96px 0; background: var(--vc-bg-white); }
.vc-contact__inner { display: grid; grid-template-columns: 400px 1fr; gap: 64px; align-items: start; }
.vc-contact__list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.vc-contact__item { display: flex; align-items: flex-start; gap: 16px; }
.vc-contact__icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(139,94,82,.08); color: var(--vc-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vc-contact__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--vc-text-muted); margin-bottom: 2px; }
.vc-contact__value { font-size: 15px; color: var(--vc-text); font-weight: 500; }
a.vc-contact__value:hover { color: var(--vc-primary); }
.vc-contact__map { margin-top: 16px; border-radius: var(--vc-radius-lg); overflow: hidden; box-shadow: var(--vc-shadow); }
.vc-contact__form-wrap {
  background: #fff; border-radius: var(--vc-radius-xl);
  border: 1px solid var(--vc-border-light); padding: 40px;
  box-shadow: var(--vc-shadow);
}
.vc-contact__status {
  margin-bottom: 16px; padding: 12px 16px; border-radius: var(--vc-radius);
  font-size: 14px; font-weight: 500;
}
.vc-contact__status.is-success { background: rgba(74,161,74,.08); color: #2e7d32; border: 1px solid rgba(74,161,74,.2); }
.vc-contact__status.is-error   { background: rgba(211,47,47,.08); color: #c62828; border: 1px solid rgba(211,47,47,.2); }
.vc-contact__form { display: flex; flex-direction: column; gap: 20px; }

@media (max-width: 900px) { .vc-contact__inner { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .vc-contact__form-wrap { padding: 24px; } }

/* ==========================================================================
   CONVENIOS
   ========================================================================== */
.vc-convenios { padding: 72px 0; background: var(--vc-bg-warm); }
.vc-convenios__grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }
.vc-convenios__item {
  background: #fff; border-radius: var(--vc-radius-lg); padding: 20px 28px;
  border: 1px solid var(--vc-border-light); font-weight: 600; color: var(--vc-text-muted);
  font-size: 14px; transition: all var(--vc-transition); text-align: center;
}
.vc-convenios__item:hover { border-color: var(--vc-primary); color: var(--vc-primary); box-shadow: var(--vc-shadow); }
.vc-convenios__logo img { max-height: 48px; width: auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.vc-footer {
  background: var(--vc-dark); padding: 72px 0 0; color: rgba(255,255,255,.7);
}
.vc-footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vc-footer__brand {}
.vc-footer__logo-link { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.vc-footer__logo-img { max-height: 40px; width: auto; }
.vc-footer__logo-mark {
  width: 36px; height: 36px; border-radius: 10px; background: var(--vc-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vc-footer__logo-name { font-family: var(--font-serif); font-size: 18px; font-weight: 500; color: #fff; line-height: 1.1; display: block; }
.vc-footer__logo-sub { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .08em; text-transform: uppercase; display: block; }
.vc-footer__desc { font-size: 14px; line-height: 1.75; margin-bottom: 24px; max-width: 300px; }
.vc-footer__contact-quick { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.vc-footer__contact-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--vc-transition);
}
.vc-footer__contact-link svg { flex-shrink: 0; color: var(--vc-secondary); }
.vc-footer__contact-link:hover { color: rgba(255,255,255,.9); }
.vc-footer__socials { display: flex; gap: 10px; }
.vc-footer__social {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); 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-primary); color: #fff; transform: translateY(-2px); }
.vc-footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 20px; }
.vc-footer__link { display: block; font-size: 14px; color: rgba(255,255,255,.55); padding: 6px 0; transition: color var(--vc-transition); }
.vc-footer__link:hover { color: rgba(255,255,255,.9); }
.vc-footer ul { display: flex; flex-direction: column; gap: 2px; }
.vc-footer__wa-btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 13px; font-weight: 600; color: #fff; padding: 10px 20px;
  background: #25D366; border-radius: 50px; transition: all var(--vc-transition);
}
.vc-footer__wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.vc-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.3);
}
.vc-footer__bottom span { display: block; }

@media (max-width: 1024px) { .vc-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px)  { .vc-footer__grid { grid-template-columns: 1fr; } .vc-footer__bottom { flex-direction: column; text-align: center; } }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.vc-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
  transition: all var(--vc-transition);
  animation: wa-bounce 3s ease-in-out 2s infinite;
}
.vc-whatsapp-float:hover { background: #1ebe5d; transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,.5); }
.vc-whatsapp-float__tooltip {
  position: absolute; right: calc(100% + 12px);
  background: var(--vc-dark); color: #fff;
  font-size: 13px; font-weight: 600; white-space: nowrap; padding: 8px 16px;
  border-radius: 8px; pointer-events: none;
  opacity: 0; transition: opacity var(--vc-transition); font-family: var(--font-sans);
}
.vc-whatsapp-float:hover .vc-whatsapp-float__tooltip { opacity: 1; }
@keyframes wa-bounce { 0%,60%,100%{transform:scale(1)} 80%{transform:scale(1.06)} }

/* ==========================================================================
   ANIMATIONS (entrance)
   ========================================================================== */
.vc-fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.vc-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
  .vc-section-header { margin-bottom: 40px; }
  .vc-about { padding: 64px 0; }
  .vc-services { padding: 64px 0; }
  .vc-stats  { padding: 56px 0; }
  .vc-testimonials { padding: 64px 0; }
  .vc-cta { padding: 64px 0; }
  .vc-team { padding: 64px 0; }
  .vc-faq  { padding: 64px 0; }
  .vc-contact { padding: 64px 0; }
}
