:root {
      --dark:       #2B3531;
      --dark2:      #1E2925;
      --green:      #3D5048;
      --green-mid:  #4A5E55;
      --sage:       #7A8C7E;
      --sage-light: #B2BDB5;
      --cream:      #F7F5F0;
      --white:      #FFFFFF;
      --text:       #2B3531;
      --text-muted: #6B7A72;
      --border:     #E2E0DB;
      --gold:       #C8A96E;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Manrope', sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    body.modal-open { overflow: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* ── NAV ── */
    .nav-wrapper {
      position: fixed;
      top: 20px;
      left: 0; right: 0;
      z-index: 100;
      padding: 0 40px;
      pointer-events: none;
    }
    nav {
      background: var(--white);
      padding: 0 36px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 16px;
      box-shadow: 0 4px 28px rgba(0,0,0,.10);
      pointer-events: all;
      max-width: 1300px;
      margin: 0 auto;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0;
      color: var(--dark);
      transition: opacity .2s ease, transform .2s ease;
    }
    .nav-logo:hover {
      opacity: .88;
      transform: translateY(-1px);
    }
    .nav-logo-icon {
      width: 220px;
      height: 28px;
      display: flex;
      align-items: center;
    }
    .nav-logo-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .nav-logo-text {
      font-family: 'Manrope', serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: .01em;
      color: var(--dark);
    }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 14px;
      font-size: 14px;
      font-weight: 400;
      color: var(--dark);
      letter-spacing: .02em;
      transition: color .2s ease, transform .2s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 6px;
      height: 2px;
      background: var(--green-mid);
      border-radius: 999px;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .2s ease;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--dark2);
      transform: translateY(-1px);
    }
    .nav-links a:hover::after,
    .nav-links a:focus-visible::after { transform: scaleX(1); }
    .nav-social {
      display: flex;
      gap: 14px;
      align-items: center;
    }
    .nav-social a {
      color: var(--dark);
      font-size: 17px;
      display: grid;
      place-items: center;
      transition: opacity .2s ease, transform .2s ease;
    }
    .nav-social a img {
      width: 18px;
      height: 18px;
      display: block;
    }
    .nav-social a:hover {
      opacity: .78;
      transform: translateY(-1px);
    }
    .nav-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: none;
      border-radius: 12px;
      background: #EEF3EF;
      color: var(--dark);
      cursor: pointer;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    .nav-toggle:hover {
      background: #E4ECE6;
      transform: translateY(-1px);
    }
    .nav-toggle span {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .25s ease, opacity .2s ease;
      transform-origin: center;
    }

    /* ── HERO ── */
    .hero {
      background: var(--dark);
      width: 100%;
      max-width: 1920px;
      height: min(100vh, 900px);
      overflow: hidden;
      position: relative;
      padding-top: 112px;
      margin: 0 auto;
    }
    .hero-inner {
      width: min(100%, 1300px);
      min-height: calc(min(100vh, 900px) - 112px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      position: relative;
      z-index: 1;
    }
    .hero::before { content: none; }
    .hero-symbol-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      opacity: .9;
      will-change: transform;
      transform: translate3d(0, var(--hero-symbol-offset, -55px), 0) scale(1.2);
    }
    .hero-left {
      padding: 80px 40px 80px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 1;
    }
    .hero-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(36px, 3.5vw, 52px);
      font-weight: 600;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .hero-sub {
      font-size: 14px;
      color: rgba(255,255,255,.55);
      letter-spacing: .02em;
      margin-bottom: 44px;
    }
    .btn-hero {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #89A784;
      color: #F3F6F3;
      min-width: 0;
      height: 52px;
      padding: 0 28px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .01em;
      text-transform: none;
      border: none;
      cursor: pointer;
      border-radius: 10px;
      transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
      width: fit-content;
    }
    .btn-hero:hover {
      background: #9AB796;
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(0,0,0,.24);
    }
    .btn-hero-ghost {
      background: #0C4C4C;
      border: none;
      color: var(--white);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .btn-hero-ghost:hover {
      background: #146061;
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 14px 26px rgba(0,0,0,.24);
    }
    .hero-btns { display: flex; gap: 12px; align-items: center; }

    /* Lado direito: imagem com bordas arredondadas flutuando */
    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px 64px 48px 32px;
      position: relative;
      z-index: 1;
    }
    .hero-img-wrap {
      position: relative;
      width: 100%;
      max-width: 500px;
      transform-style: preserve-3d;
      --hero-tilt-x: 0deg;
      --hero-tilt-y: 0deg;
      --hero-shift-x: 0px;
      --hero-shift-y: 0px;
      --hero-glow-x: 50%;
      --hero-glow-y: 50%;
      transition: transform .2s ease;
      will-change: transform;
    }
    .hero-img-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 10px;
      background: radial-gradient(circle at var(--hero-glow-x) var(--hero-glow-y), rgba(255,255,255,.22) 0%, rgba(255,255,255,.09) 18%, rgba(255,255,255,0) 58%);
      opacity: 0;
      transition: opacity .18s ease;
      pointer-events: none;
      z-index: 2;
    }
    .hero-img-wrap.is-tracking {
      transform: perspective(1200px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
    }
    .hero-img-wrap.is-tracking::before {
      opacity: .95;
    }
    .hero-right-img {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1.06;
      object-fit: cover;
      object-position: center top;
      border-radius: 10px;
      display: block;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .hero-img-wrap:hover .hero-right-img {
      transform: scale(1.025);
      box-shadow: 0 18px 42px rgba(0,0,0,.22);
    }
    .hero-img-wrap.is-tracking .hero-right-img {
      transform: translateZ(0) scale(1.035);
      box-shadow: 0 18px 42px rgba(0,0,0,.22);
    }
    .hero-name-tag {
      position: absolute;
      bottom: -20px;
      left: -24px;
      background: var(--white);
      padding: 18px 28px;
      border-radius: 10px;
      box-shadow: 0 8px 32px rgba(0,0,0,.18);
      transform: translate3d(0, 0, 20px);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .hero-img-wrap.is-tracking .hero-name-tag {
      transform: translate3d(calc(var(--hero-shift-x) * -.25), calc(var(--hero-shift-y) * -.25), 26px);
      box-shadow: 0 12px 34px rgba(0,0,0,.22);
    }
    .hero-name-tag-name {
      font-family: 'Manrope', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
    }
    .hero-name-tag-role {
      font-size: 10px;
      color: var(--text-muted);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-top: 3px;
    }

    /* ── SERVICES ── */
    .services {
      padding: 80px 0 60px;
      background: var(--white);
    }
    .services-title {
      text-align: center;
      font-family: 'Manrope', serif;
      font-size: 40px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .services-title strong { font-style: italic; font-weight: 600; }
    .section-tag {
      text-align: center;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 36px;
    }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }
    .service-card {
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: box-shadow .3s, transform .3s;
      cursor: pointer;
    }
    .service-card:hover {
      box-shadow: 0 8px 32px rgba(43,53,49,.1);
      transform: translateY(-4px);
    }
    .service-card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform .4s;
    }
    .service-card:hover .service-card-img { transform: scale(1.04); }
    .service-card-img-wrap { overflow: hidden; }
    .service-card-body { padding: 20px 20px 24px; }
    .service-card-title {
      font-family: 'Manrope', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .service-card-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .btn-card {
      display: inline-block;
      border: 1px solid var(--dark);
      padding: 8px 18px;
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--dark);
      font-weight: 500;
      border-radius: 10px;
      transition: all .2s;
    }
    .btn-card:hover { background: var(--dark); color: var(--white); }

    /* ── SOBRE ── */
    .sobre {
      padding: 80px 0;
      background: var(--cream);
    }
    .sobre-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .sobre-tag {
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 20px;
    }
    .sobre-title {
      font-family: 'Manrope', serif;
      font-size: 38px;
      font-weight: 400;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .sobre-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .sobre-badges {
      --sobre-badge-font-size: clamp(16px, 1.45vw, 22px);
      --sobre-badge-line-height: 1.2;
      --sobre-badge-gap: 6px;
      display: flex;
      align-items: flex-start;
      gap: 22px;
      margin-bottom: 44px;
    }
    .sobre-badges-text {
      display: flex;
      flex-direction: column;
      gap: var(--sobre-badge-gap);
      padding-top: 0;
    }
    .sobre-badge {
      display: block;
      font-size: var(--sobre-badge-font-size);
      font-weight: 700;
      letter-spacing: .01em;
      text-transform: uppercase;
      color: var(--dark);
      line-height: var(--sobre-badge-line-height);
    }
    .sobre-badge-icon {
      --sobre-icon-bg: #114D4D;
      --sobre-icon-fg: #E3DED6;
      width: calc((var(--sobre-badge-font-size) * var(--sobre-badge-line-height) * 3) + (var(--sobre-badge-gap) * 2));
      height: calc((var(--sobre-badge-font-size) * var(--sobre-badge-line-height) * 3) + (var(--sobre-badge-gap) * 2));
      border-radius: 12px;
      background: var(--sobre-icon-bg);
      color: var(--sobre-icon-fg);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .28s ease, color .28s ease;
    }
    .sobre-badge-icon img {
      display: none;
    }
    .sobre-badge-icon::before {
      content: '';
      width: 60%;
      height: 60%;
      display: block;
      background: currentColor;
      -webkit-mask-image: url('hairlogo.svg');
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      -webkit-mask-size: contain;
      mask-image: url('hairlogo.svg');
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: contain;
    }
    .sobre-badges:hover .sobre-badge-icon {
      background: var(--sobre-icon-fg);
      color: var(--sobre-icon-bg);
    }
    .sobre-right {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
    }
    .sobre-img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center top;
      border-radius: 10px;
      transition: transform .55s ease;
      will-change: transform;
    }
    .sobre-right:hover .sobre-img {
      transform: scale(1.08);
    }

    /* ── FOTO STRIP ── */
    .foto-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      height: 260px;
      overflow: hidden;
    }
    .foto-strip-item { overflow: hidden; }
    .foto-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s;
    }
    .foto-strip-item:hover img { transform: scale(1.06); }

    /* ── START LASH ── */
    .start-lash {
      background: linear-gradient(to bottom, transparent 0 50%, #EEEEEE 50% 100%);
      padding: 60px 0 34px;
    }
    .start-lash .container {
      max-width: 1250px;
      background: #4A5652;
      border-radius: 20px;
      padding: 50px 56px;
      overflow: hidden;
    }
    .start-lash-inner {
      display: grid;
      grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
      gap: 44px;
      align-items: center;
    }
    .start-lash-photos {
      display: grid;
      grid-template-columns: minmax(0, 1.42fr) minmax(0, .82fr);
      gap: 14px;
    }
    .start-lash-photo-card {
      border-radius: 10px;
      overflow: hidden;
    }
    .start-lash-photos img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .45s ease;
    }
    .start-lash-photo-card:hover img {
      transform: scale(1.06);
    }
    .start-lash-photo-large {
      grid-row: 1 / span 2;
      height: 490px;
    }
    .start-lash-photo-small {
      height: 234px;
    }
    .start-lash-content {
      max-width: 560px;
    }
    .start-lash-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(48px, 4vw, 62px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.04;
      letter-spacing: -.03em;
      margin-bottom: 26px;
    }
    .start-lash-text {
      font-size: 18px;
      color: rgba(255,255,255,.78);
      line-height: 1.72;
      margin-bottom: 28px;
    }
    .start-lash-text strong {
      color: var(--white);
      font-weight: 700;
    }
    .start-lash-highlight {
      font-size: 21px;
      line-height: 1.55;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 36px;
    }
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #95AD84;
      color: var(--white);
      min-height: 60px;
      padding: 0 34px;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    }
    .btn-whatsapp:hover {
      background: #A1B98F;
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(0,0,0,.16);
    }
    .btn-whatsapp svg { width: 24px; height: 24px; fill: currentColor; }

    .whatsapp-float-btn {
      position: fixed;
      right: clamp(16px, 2.2vw, 28px);
      bottom: clamp(16px, 2.2vw, 28px);
      width: clamp(54px, 4.2vw, 64px);
      height: clamp(54px, 4.2vw, 64px);
      isolation: isolate;
      border-radius: 999px;
      background: linear-gradient(145deg, #25D366 0%, #18B654 100%);
      color: var(--white);
      display: grid;
      place-items: center;
      box-shadow: 0 14px 26px rgba(37,211,102,.48);
      transition: transform .24s ease, filter .24s ease, box-shadow .24s ease;
      animation: whatsappBlink 1.35s ease-in-out infinite;
      z-index: 180;
    }
    .whatsapp-float-btn::after {
      content: '';
      position: absolute;
      inset: -7px;
      border-radius: inherit;
      border: 2px solid rgba(37,211,102,.48);
      animation: whatsappPulseRing 1.35s ease-out infinite;
      pointer-events: none;
      z-index: -1;
    }
    .whatsapp-float-btn:hover {
      transform: translateY(-2px) scale(1.03);
      filter: brightness(1.08);
      box-shadow: 0 20px 34px rgba(37,211,102,.58);
    }
    .whatsapp-float-btn svg {
      width: clamp(24px, 1.9vw, 30px);
      height: clamp(24px, 1.9vw, 30px);
      fill: currentColor;
    }
    @keyframes whatsappBlink {
      0%, 100% {
        filter: brightness(1);
        box-shadow: 0 14px 26px rgba(37,211,102,.48);
      }
      50% {
        filter: brightness(1.18);
        box-shadow: 0 20px 36px rgba(37,211,102,.7);
      }
    }
    @keyframes whatsappPulseRing {
      0% {
        opacity: .7;
        transform: scale(.92);
      }
      70% {
        opacity: 0;
        transform: scale(1.24);
      }
      100% {
        opacity: 0;
        transform: scale(1.24);
      }
    }

    /* ── BENEFÍCIOS ── */
    .beneficios {
      padding: 56px 0 96px;
      background: #EEEEEE;
    }
    .beneficios-title {
      text-align: center;
      font-family: 'Manrope', serif;
      font-size: 38px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 48px;
    }
    .beneficios-title strong { font-style: italic; font-weight: 600; }
    .beneficios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .beneficio-card {
      border: 1px solid var(--border);
      padding: 32px 28px;
      border-radius: 10px;
      background: var(--white);
      transition: transform .55s cubic-bezier(.22,1,.36,1), box-shadow .55s cubic-bezier(.22,1,.36,1), border-color .45s ease, background .45s ease;
    }
    .beneficio-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(43,53,49,.10);
      border-color: rgba(61,80,72,.35);
      background: linear-gradient(180deg, #FFFFFF 0%, #F8F7F3 100%);
    }
    .beneficio-icon {
      width: 56px; height: 56px;
      background: transparent;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: transform .55s cubic-bezier(.22,1,.36,1), background .45s ease;
    }
    .beneficio-icon-glyph {
      width: 30px;
      height: 30px;
      background: #153C3C;
      display: block;
      transition: background .45s ease;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-position: center;
      -webkit-mask-size: contain;
      mask-size: contain;
    }
    .beneficio-icon-modulo {
      width: 34px;
      height: 34px;
      -webkit-mask-image: url('modulo.svg');
      mask-image: url('modulo.svg');
    }
    .beneficio-icon-apostila {
      -webkit-mask-image: url('apostila.svg');
      mask-image: url('apostila.svg');
    }
    .beneficio-icon-certificado {
      -webkit-mask-image: url('certificado.svg');
      mask-image: url('certificado.svg');
    }
    .beneficio-card:hover .beneficio-icon {
      transform: translateY(-1px) scale(1.03);
      background: #153C3C;
    }
    .beneficio-card:hover .beneficio-icon-glyph {
      background: #FFFFFF;
    }
    .beneficio-title {
      font-family: 'Manrope', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .beneficio-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .beneficios-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border);
      cursor: pointer;
    }
    .dot.active { background: var(--dark); }

    /* ── DEPOIMENTOS ── */
    .depoimentos {
      padding: 96px 0 92px;
      background: #153C3C;
      color: #F4F5F3;
    }
    .depoimentos .container {
      max-width: 1320px;
    }
    .depo-title {
      text-align: center;
      font-family: 'Manrope', sans-serif;
      font-size: clamp(34px, 3.6vw, 46px);
      font-weight: 500;
      color: #ECF0EC;
      line-height: 1.1;
      margin-bottom: 66px;
    }
    .depo-title strong {
      font-style: normal;
      color: #C6AE79;
      font-weight: 700;
    }
    .depo-swiper {
      position: relative;
      padding-bottom: 0;
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
    }
    .depo-swiper .swiper-slide {
      padding: 0 10px;
    }
    .depo-inner {
      display: grid;
      grid-template-columns: minmax(0, 450px) minmax(0, 1fr);
      gap: 64px;
      align-items: stretch;
    }
    .depo-photo-wrap {
      overflow: hidden;
      border-radius: 16px;
    }
    .depo-photo {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center;
      border-radius: 16px;
      transition: transform .5s ease;
      will-change: transform;
    }
    .depo-photo-wrap:hover .depo-photo {
      transform: scale(1.08);
    }
    .depo-content {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      width: 100%;
      max-width: 760px;
      justify-self: start;
      padding-bottom: 84px;
    }
    .depo-text {
      font-size: 22px;
      font-size: clamp(16px, 1.12vw, 24px);
      line-height: 1.62;
      color: rgba(244,245,243,.92);
      font-style: normal;
      padding-bottom: 24px;
      margin-bottom: 24px;
      border-bottom: 2px solid rgba(194,219,208,.25);
    }
    .depo-stars {
      display: flex;
      gap: 6px;
      margin-bottom: 12px;
    }
    .star { color: #F7C53A; font-size: 20px; line-height: 1; }
    .depo-author {
      font-size: 32px;
      font-size: clamp(24px, 1.35vw, 34px);
      font-weight: 700;
      color: #F4F5F3;
      letter-spacing: 0;
      line-height: 1.12;
    }
    .depo-nav-btns {
      position: absolute;
      right: 6px;
      bottom: 2px;
      display: flex;
      gap: 14px;
      z-index: 5;
    }
    .depo-btn {
      width: 52px;
      height: 52px;
      border: none;
      background: #114D4D;
      color: #FFFFFF;
      font-size: 0;
      line-height: 1;
      cursor: pointer;
      display: grid;
      place-items: center;
      border-radius: 50%;
      transition: background .25s ease, color .25s ease;
      font-family: 'Manrope', sans-serif;
      border: 1px solid #114D4D;
    }
    .depo-btn-icon {
      width: 20px;
      height: 20px;
      display: block;
      background-color: currentColor;
      -webkit-mask-image: url('arrow.svg');
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      -webkit-mask-size: contain;
      mask-image: url('arrow.svg');
      mask-repeat: no-repeat;
      mask-position: center;
      mask-size: contain;
    }
    .depo-prev .depo-btn-icon { transform: rotate(180deg); }
    .depo-btn:hover {
      background: #F2F4F1;
      color: #114D4D;
    }

    /* ── FOOTER ── */
    footer {
      background: linear-gradient(98deg, #0E2930 0%, #0F2830 44%, #0F2C2C 100%);
      color: #EDF2F1;
      padding: 74px 0 22px;
      border-top: 1px solid rgba(255,255,255,.14);
    }
    footer .container {
      max-width: 1320px;
      padding: 0 36px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: minmax(220px, 300px) minmax(240px, 300px) minmax(300px, 360px) minmax(130px, 180px);
      gap: clamp(24px, 3vw, 56px);
      align-items: start;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(229,236,233,.26);
      margin-bottom: 28px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 286px;
      padding-top: 22px;
    }
    .footer-contact {
      padding-top: 22px;
    }
    .footer-location,
    .footer-nav {
      padding-top: 18px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0;
    }
    .footer-logo-link {
      display: inline-flex;
      transition: opacity .2s ease, transform .2s ease;
    }
    .footer-logo-link:hover {
      opacity: .9;
      transform: translateY(-1px);
    }
    .footer-logo img {
      display: block;
      width: min(100%, 242px);
      height: auto;
      filter: none;
    }
    .footer-logo-icon {
      width: 40px; height: 40px;
      border: 1.5px solid var(--sage-light);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: 'Manrope', serif;
      font-size: 16px;
    }
    .footer-logo-text {
      font-family: 'Manrope', serif;
      font-size: 20px;
      font-weight: 400;
    }
    .footer-address {
      font-size: 16px;
      font-size: clamp(14px, 1vw, 17px);
      color: rgba(237,242,241,.9);
      line-height: 1.58;
      margin-bottom: 22px;
      letter-spacing: 0;
      font-weight: 400;
    }
    .footer-phone {
      font-size: 16px;
      font-size: clamp(14px, 1vw, 17px);
      color: rgba(237,242,241,.9);
      line-height: 1.4;
    }
    .footer-map {
      width: min(100%, 312px);
      height: 212px;
      background: var(--green-mid);
      border-radius: 12px;
      overflow: hidden;
      position: relative;
    }
    .footer-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }
    .footer-heading {
      font-size: 17px;
      font-size: clamp(15px, 1.05vw, 18px);
      letter-spacing: 0;
      text-transform: none;
      color: #F1F5F3;
      margin-bottom: 18px;
      font-weight: 700;
    }
    .footer-menu {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-menu a {
      font-size: 16px;
      font-size: clamp(14px, 1.02vw, 17px);
      color: rgba(237,242,241,.92);
      line-height: 1.2;
      display: inline-flex;
      align-items: center;
      transition: color .25s ease, transform .25s ease;
    }
    .footer-menu a::before {
      content: '';
      width: 0;
      height: 1px;
      margin-right: 0;
      background: currentColor;
      opacity: .8;
      transition: width .25s ease, margin-right .25s ease;
    }
    .footer-menu a:hover,
    .footer-menu a:focus-visible {
      color: #FFFFFF;
      transform: translateX(5px);
    }
    .footer-menu a:hover::before,
    .footer-menu a:focus-visible::before {
      width: 14px;
      margin-right: 8px;
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 62px;
    }
    .footer-bottom .d-flex {
      display: flex;
      color: rgba(237,242,241,.9);
      text-decoration: none;
      line-height: 1.3;
      transition: color .2s ease;
    }
    .footer-bottom .d-flex:hover {
      color: #FFFFFF;
    }
    .footer-bottom .flex-column { flex-direction: column; }
    .footer-bottom .align-items-center { align-items: center; }
    .footer-bottom .gap-0-50 { gap: .5rem; }
    .footer-bottom .order-1 { order: 1; }
    .footer-bottom .small { font-size: clamp(12px, .8vw, 14px); }
    .footer-bottom .mt-2 { margin-top: .5rem; }
    .footer-bottom .d-flex img {
      width: 50px;
      height: auto;
      display: block;
    }
    @media (min-width: 992px) {
      .footer-bottom .flex-lg-row { flex-direction: row; }
      .footer-bottom .order-lg-2 { order: 2; }
      .footer-bottom .mt-lg-0 { margin-top: 0; }
    }
    .footer-copy {
      font-size: 14px;
      font-size: clamp(12px, .8vw, 14px);
      color: rgba(237,242,241,.9);
      line-height: 1.3;
    }
    .footer-social-icons {
      display: flex;
      gap: 8px;
      margin-top: 0;
    }
    .footer-social-icon {
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 7px;
      display: grid;
      place-items: center;
      font-size: 14px;
      color: #12272E;
      background: #F1F4F2;
      transition: filter .2s ease, transform .2s ease;
    }
    .footer-social-icon img {
      width: 20px;
      height: 20px;
      display: block;
    }
    .footer-social-icon:nth-child(2) {
      background: #C6AE79;
      color: #10272E;
    }
    .footer-social-icon:hover {
      filter: brightness(1.06);
      transform: translateY(-1px);
    }

    .video-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
      z-index: 200;
    }
    .video-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .video-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(12,21,22,.78);
      backdrop-filter: blur(6px);
    }
    .video-modal-dialog {
      position: relative;
      width: min(100%, 960px);
      background: #101919;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      padding: 24px;
      box-shadow: 0 24px 60px rgba(0,0,0,.35);
      z-index: 1;
    }
    .video-modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 10px;
      background: rgba(255,255,255,.08);
      color: var(--white);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
    }
    .video-modal-close:hover {
      background: rgba(255,255,255,.14);
      transform: translateY(-1px);
    }
    .video-modal-title {
      color: rgba(255,255,255,.72);
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .video-modal-frame-wrap {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      border-radius: 14px;
      overflow: hidden;
      background: #000;
    }
    .video-modal-frame-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .gallery-modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
      z-index: 210;
    }
    .gallery-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .gallery-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8,15,17,.82);
      backdrop-filter: blur(4px);
    }
    .gallery-modal-dialog {
      position: relative;
      width: min(100%, 1120px);
      z-index: 1;
    }
    .gallery-modal-image {
      display: block;
      width: 100%;
      max-height: 86vh;
      object-fit: contain;
      border-radius: 14px;
      box-shadow: 0 28px 68px rgba(0,0,0,.45);
      background: #0D1315;
    }
    .gallery-modal-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 10px;
      background: rgba(10,16,18,.68);
      color: #FFFFFF;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
      z-index: 2;
    }
    .gallery-modal-close:hover {
      background: rgba(10,16,18,.82);
      transform: translateY(-1px);
    }

    /* ── SCROLL REVEAL ── */
    [data-fade] {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .6s ease, transform .6s ease;
    }
    [data-fade].in { opacity: 1; transform: none; }
    [data-fade-delay="1"] { transition-delay: .1s; }
    [data-fade-delay="2"] { transition-delay: .2s; }
    [data-fade-delay="3"] { transition-delay: .3s; }

    @media (max-width: 900px) {
      nav {
        position: relative;
        padding: 0 18px;
      }
      .nav-social {
        display: none;
      }
      .nav-toggle {
        display: inline-flex;
      }
      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        margin: 0;
        padding: 12px;
        border-radius: 14px;
        border: 1px solid rgba(61,80,72,.18);
        background: rgba(255,255,255,.98);
        box-shadow: 0 16px 30px rgba(14,23,21,.18);
        display: flex;
        flex-direction: column;
        gap: 6px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px) scale(.98);
        transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
      }
      .nav-links a {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        padding: 0 14px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: .01em;
      }
      .nav-links a::after {
        display: none;
      }
      .nav-links a:hover,
      .nav-links a:focus-visible {
        background: #F2F6F3;
        color: var(--dark);
        transform: none;
      }
      .nav-wrapper.is-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition-delay: 0s;
      }
      .nav-wrapper.is-open .nav-toggle {
        background: #E0E9E3;
        box-shadow: inset 0 0 0 1px rgba(61,80,72,.15);
      }
      .nav-wrapper.is-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .nav-wrapper.is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
      }
      .nav-wrapper.is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
      .nav-logo-icon {
        width: 170px;
        height: 24px;
      }
      .depoimentos {
        padding: 78px 0 70px;
      }
      .depo-title {
        font-size: clamp(34px, 7vw, 46px);
        margin-bottom: 44px;
      }
      .depo-swiper .swiper-slide {
        padding: 0 8px;
      }
      .depo-content {
        padding-bottom: 72px;
      }
      .depo-text {
        font-size: 15px;
        padding-bottom: 20px;
        margin-bottom: 18px;
      }
      .depo-author {
        font-size: 28px;
      }
      .depo-nav-btns {
        right: 0;
        bottom: 0;
      }
      .depo-btn {
        width: 48px;
        height: 48px;
      }
      .depo-btn-icon {
        width: 18px;
        height: 18px;
      }
      .start-lash { padding: 52px 0 26px; }
      .beneficios { padding: 52px 0 74px; }
      .start-lash .container {
        padding: 34px 24px;
        border-radius: 16px;
      }
      .start-lash-photos {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
        gap: 12px;
      }
      .start-lash-photo-large {
        height: 380px;
      }
      .start-lash-photo-small {
        height: 182px;
      }
      .start-lash-content {
        max-width: none;
      }
      .start-lash-title {
        font-size: clamp(40px, 7vw, 52px);
        margin-bottom: 18px;
      }
      .start-lash-text {
        font-size: 16px;
        margin-bottom: 20px;
      }
      .start-lash-highlight {
        font-size: 18px;
        margin-bottom: 28px;
      }
      .btn-whatsapp {
        min-height: 54px;
        padding: 0 26px;
        font-size: 15px;
      }
      .hero-btns { gap: 12px; }
      .btn-hero {
        min-width: 0;
        height: 48px;
        padding: 0 22px;
        font-size: 14px;
        border-radius: 10px;
      }
      .btn-hero-ghost {
        width: 48px;
        height: 48px;
        font-size: 17px;
      }
      .hero {
        height: auto;
      }
      .hero-inner {
        width: 100%;
        min-height: auto;
        grid-template-columns: 1fr;
      }
      .hero-right {
        height: auto;
        padding: 8px 24px 34px;
      }
      .hero-img-wrap {
        max-width: 420px;
      }
      .hero-left { padding: 60px 24px; }
      .sobre-inner, .start-lash-inner, .depo-inner { grid-template-columns: 1fr; }
      .sobre-img { height: 300px; }
      .sobre-badges {
        --sobre-badge-font-size: clamp(15px, 2.5vw, 19px);
        --sobre-badge-gap: 5px;
        gap: 16px;
      }
      .depo-photo { height: 420px; }
      .services-grid, .beneficios-grid { grid-template-columns: 1fr 1fr; }
      .foto-strip { grid-template-columns: 1fr 1fr; height: 200px; }
      footer .container {
        padding: 0 20px;
      }
      .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(18px, 3.6vw, 28px);
      }
      .footer-brand,
      .footer-contact,
      .footer-location,
      .footer-nav {
        min-height: 0;
        padding-top: 0;
      }
      .footer-contact {
        align-self: center;
      }
      .footer-address,
      .footer-phone {
        font-size: 15px;
      }
      .footer-map {
        width: 100%;
        height: 196px;
      }
      .footer-bottom {
        gap: 14px;
        align-items: flex-start;
        flex-direction: column;
      }
      .container { padding: 0 24px; }
    }

    @media (max-width: 760px) {
      footer {
        padding: 62px 0 20px;
      }
      footer .container {
        padding: 0 18px;
      }
      .footer-top {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 30px;
        margin-bottom: 20px;
      }
      .footer-brand {
        gap: 18px;
      }
      .footer-map {
        max-width: none;
        height: 186px;
      }
      .footer-bottom {
        min-height: 0;
      }
    }

    @media (max-width: 560px) {
      .hero-btns {
        width: auto;
        gap: 10px;
      }
      .depoimentos {
        padding: 62px 0 56px;
      }
      .depo-title {
        font-size: 34px;
        margin-bottom: 34px;
      }
      .depo-swiper .swiper-slide {
        padding: 0 6px;
      }
      .depo-content {
        padding-bottom: 62px;
      }
      .depo-photo {
        height: 332px;
        border-radius: 12px;
      }
      .sobre-badges {
        --sobre-badge-font-size: clamp(13px, 3.8vw, 16px);
        --sobre-badge-gap: 4px;
        gap: 10px;
      }
      .sobre-badges-text {
        gap: var(--sobre-badge-gap);
        padding-top: 0;
      }
      .sobre-badge-icon {
        border-radius: 10px;
      }
      .sobre-badge {
        letter-spacing: .02em;
      }
      .depo-photo-wrap {
        border-radius: 12px;
      }
      .depo-text {
        font-size: 14px;
        line-height: 1.7;
      }
      .depo-author {
        font-size: 24px;
      }
      .depo-nav-btns {
        gap: 10px;
      }
      .depo-btn {
        width: 46px;
        height: 46px;
      }
      .depo-btn-icon {
        width: 17px;
        height: 17px;
      }
      .start-lash { padding: 44px 0 18px; }
      .beneficios { padding: 46px 0 60px; }
      .start-lash .container {
        padding: 22px 18px;
        border-radius: 14px;
      }
      .start-lash-photos {
        grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
        gap: 10px;
      }
      .start-lash-photo-large {
        height: 260px;
      }
      .start-lash-photo-small {
        height: 124px;
      }
      .start-lash-title {
        font-size: 34px;
        margin-bottom: 16px;
      }
      .start-lash-text {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 18px;
      }
      .start-lash-highlight {
        font-size: 17px;
        line-height: 1.45;
        margin-bottom: 24px;
      }
      .btn-whatsapp {
        min-height: 48px;
        padding: 0 20px;
        gap: 10px;
        font-size: 14px;
      }
      .btn-whatsapp svg {
        width: 20px;
        height: 20px;
      }
      .btn-hero {
        min-width: 0;
        width: auto;
        height: 46px;
        padding: 0 18px;
        font-size: 13px;
      }
      .btn-hero-ghost {
        width: 46px;
        height: 46px;
        font-size: 16px;
        flex-shrink: 0;
      }
      .video-modal {
        padding: 16px;
      }
      .video-modal-dialog {
        padding: 18px;
        border-radius: 14px;
      }
      .video-modal-close {
        top: 10px;
        right: 10px;
      }
      .gallery-modal {
        padding: 14px;
      }
      .gallery-modal-image {
        border-radius: 12px;
        max-height: 82vh;
      }
      .gallery-modal-close {
        width: 38px;
        height: 38px;
        font-size: 24px;
      }
      .galeria { padding-bottom: 28px; }
      .services-grid, .beneficios-grid { grid-template-columns: 1fr; }
      .foto-strip { grid-template-columns: 1fr; height: auto; }
      footer .container {
        padding: 0 16px;
      }
      .footer-top {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-bottom: 24px;
        margin-bottom: 16px;
      }
      .footer-brand {
        padding-top: 0;
      }
      .footer-logo img {
        width: min(100%, 210px);
      }
      .footer-address {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 14px;
      }
      .footer-phone {
        font-size: 14px;
        line-height: 1.35;
      }
      .footer-heading {
        margin-bottom: 10px;
      }
      .footer-map {
        height: 170px;
        border-radius: 10px;
      }
      .footer-menu {
        gap: 9px;
      }
      .footer-menu a {
        font-size: 14px;
      }
      .footer-copy,
      .footer-bottom .small {
        font-size: 12px;
        line-height: 1.4;
      }
      .footer-bottom {
        gap: 10px;
      }
    }

    /* ── GALERIA CARROSSEL ── */
    .galeria {
      overflow: hidden;
      padding-bottom: 40px;
    }
    .galeria-swiper { height: 320px; }
    .galeria-swiper .swiper-slide {
      border-radius: 10px;
      overflow: hidden;
    }
    .galeria-swiper .swiper-slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      cursor: zoom-in;
    }
    .galeria-swiper .swiper-button-prev,
    .galeria-swiper .swiper-button-next {
      color: var(--white);
      background: rgba(30,41,37,.55);
      width: 44px; height: 44px;
      border-radius: 10px;
      backdrop-filter: blur(4px);
    }
    .galeria-swiper .swiper-button-prev::after,
    .galeria-swiper .swiper-button-next::after { font-size: 16px; font-weight: 700; }

    /* ── DEPOIMENTOS SWIPER ── */
