/* ============================================================
   KIP 360° — LP recriada (escopo .kip360). Fiel ao CRA original.
   ============================================================ */
.kip360 {
  --navy: #0F0E38; --navy-dk: #060622; --purple: #464581; --purple-dk: #3A3970;
  --gold: #C7BD44; --gold-dk: #A89932; --white: #FFFFFF; --bg: #F7F7F7;
  --border: #E8E9ED; --text-muted: #666680;
  --font-heading: 'Montserrat', sans-serif; --font-body: 'Nunito', sans-serif;
  --shadow-sm: 0 2px 8px rgba(15,14,56,.08); --shadow-md: 0 4px 20px rgba(15,14,56,.14); --shadow-lg: 0 8px 40px rgba(15,14,56,.22);
  --radius-btn: 8px; --radius-card: 12px; --radius-pill: 100px;
  --section-padding: 100px 0; --container-max: 1200px;
  font-family: var(--font-body); color: var(--navy); line-height: 1.65;
}
.kip360 *, .kip360 *::before, .kip360 *::after { margin: 0; padding: 0; box-sizing: border-box; }
.kip360 h1, .kip360 h2, .kip360 h3, .kip360 h4 { font-family: var(--font-heading); line-height: 1.2; }
.kip360 p { font-family: var(--font-body); font-weight: 400; font-size: 16px; line-height: 1.65; }
.kip360 a { text-decoration: none; color: inherit; transition: color .3s ease; }
.kip360 img { max-width: 100%; height: auto; display: block; }
.kip360 .text-lg { font-size: 18px; line-height: 1.7; }
.kip360 .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; width: 100%; }
.kip360 .section { padding: var(--section-padding); }

/* Botões */
.kip360 .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 24px; border: none; cursor: pointer; border-radius: var(--radius-btn); padding: 10px 16px; transition: all .3s ease; text-decoration: none; }
.kip360 .btn-primary { background-color: var(--white); color: #0B0B2E; }
.kip360 .btn-primary:hover { background-color: #f0f0f0; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.kip360 .btn-purple { background-color: var(--purple); color: var(--white); }
.kip360 .btn-purple:hover { background-color: var(--purple-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.kip360 .btn-outline-pill { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); border-radius: var(--radius-pill); }
.kip360 .btn-outline-pill:hover { background-color: var(--navy); color: var(--white); transform: translateY(-2px); }

/* fade-in */
.kip360 .fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease-out, transform .7s ease-out; will-change: opacity, transform; animation: k360FadeFallback .8s ease-out 1.5s forwards; }
.kip360 .fade-in.visible { opacity: 1; transform: translateY(0); animation: none; }
@keyframes k360FadeFallback { to { opacity: 1; transform: translateY(0); } }

/* ===== HERO ===== */
.kip360 .hero { background: linear-gradient(180deg, #05051E 0%, #111141 100%); color: var(--white); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 72px 0 0; }
.kip360 .hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; align-items: end; position: relative; z-index: 1; min-height: calc(100vh - 72px); }
.kip360 .hero__content { display: flex; flex-direction: column; padding-bottom: 100px; position: relative; z-index: 2; }
.kip360 .hero__eyebrow { font-family: var(--font-heading); font-weight: 600; font-size: 12px; line-height: 92%; letter-spacing: 1.92px; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.kip360 .hero__title { font-family: var(--font-heading); font-weight: 700; font-size: 64px; line-height: 92%; letter-spacing: -3.2px; color: #fff; }
.kip360 .hero__subtitle { font-family: var(--font-body); font-size: 20px; line-height: 106%; color: #fff; max-width: 510px; margin-top: 20px; }
.kip360 .hero__subtitle strong { color: #fff; font-weight: 700; }
.kip360 .hero__cta { align-self: flex-start; margin-top: 20px; }
.kip360 .hero__visual { position: relative; display: flex; align-items: flex-end; justify-content: center; align-self: end; line-height: 0; }
.kip360 .hero__blob-img { position: absolute; right: 20px; bottom: 0; width: 55%; height: 85%; object-fit: fill; z-index: 0; pointer-events: none; }
.kip360 .hero__image { width: 160%; max-width: 160%; height: auto; max-height: calc(100vh - 40px); display: block; position: relative; object-fit: contain; object-position: bottom center; z-index: 1; }
.kip360 .hero__float-icon { position: absolute; z-index: 2; pointer-events: none; filter: drop-shadow(0 4px 12px rgba(0,0,0,.25)); }
.kip360 .hero__float-icon--1 { width: 53px; height: 53px; top: 18%; left: 5%; animation: k360FloatUp 4s ease-in-out infinite; }
.kip360 .hero__float-icon--2 { width: 40px; height: 40px; top: 2%; left: 42%; animation: k360FloatUp 5s ease-in-out 1s infinite; }
.kip360 .hero__float-icon--3 { width: 85px; height: 85px; top: 22%; right: -8%; animation: k360FloatUp 6s ease-in-out .5s infinite; }
@keyframes k360FloatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.kip360 .hero__badge { position: absolute; bottom: 24px; right: 0; background: linear-gradient(90deg, #85733B 0%, #D6CD46 100%); border-radius: var(--radius-btn); padding: 10px; display: flex; align-items: center; gap: 5px; z-index: 3; box-shadow: var(--shadow-lg); }
.kip360 .hero__badge-info { display: flex; flex-direction: column; gap: 5px; }
.kip360 .hero__badge-info strong { font-family: var(--font-heading); font-weight: 700; font-size: 20px; line-height: 104%; text-transform: uppercase; color: #fff; }
.kip360 .hero__badge-info span { font-family: var(--font-heading); font-weight: 500; font-size: 12px; line-height: 104%; text-transform: uppercase; color: #fff; }

/* ===== WHATIS ===== */
.kip360 .whatis { background: var(--bg); }
.kip360 .whatis__header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.kip360 .whatis__header h2 { margin-bottom: 20px; color: #343434; font-family: var(--font-heading); font-size: 48px; font-weight: 600; }
.kip360 .whatis__header p { color: #343434; font-size: 15px; line-height: 1.65; }
.kip360 .whatis__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.kip360 .whatis__card { padding: 20px 24px; text-align: center; }
.kip360 .whatis__card-icon { width: 60px; height: 60px; border-radius: 12px; background: #454582; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: #fff; font-size: 24px; }
.kip360 .whatis__card h4 { color: var(--navy); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.kip360 .whatis__card p { color: #343434; font-size: 14px; line-height: 1.6; max-width: 320px; margin: 0 auto; }

/* ===== DEDEMO ===== */
.kip360 .dedemo { padding: 80px 0; }
.kip360 .dedemo__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.kip360 .dedemo__image-wrapper { position: relative; }
.kip360 .dedemo__image { width: 100%; height: 100%; border-radius: var(--radius-card); object-fit: cover; }
.kip360 .dedemo__badge { position: absolute; bottom: 16px; left: 16px; background: var(--gold); color: var(--white); font-family: var(--font-heading); padding: 10px 16px; border-radius: var(--radius-btn); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px; line-height: 1.2; }
.kip360 .dedemo__badge-number { font-size: 28px; font-weight: 900; }
.kip360 .dedemo__badge-text { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; line-height: 1.35; }
.kip360 .dedemo__content { padding-top: 20px; }
.kip360 .dedemo__content h2 { color: #343434; font-size: 48px; font-weight: 400; line-height: 1.1; margin-bottom: 28px; }
.kip360 .dedemo__content p { color: #343434; font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.kip360 .dedemo__quote { margin: 28px 0; position: relative; }
.kip360 .dedemo__quote-icon { color: var(--purple); font-size: 42px; position: absolute; top: 0; right: 0; }
.kip360 .dedemo__quote p { color: #343434; font-size: 14px; line-height: 1.7; margin-bottom: 16px; padding-right: 50px; }
.kip360 .dedemo__quote-attribution { display: flex; align-items: center; gap: 12px; }
.kip360 .dedemo__quote-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.kip360 .dedemo__quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
.kip360 .dedemo__quote-author { display: flex; flex-direction: column; gap: 2px; }
.kip360 .dedemo__quote-name { font-family: var(--font-body); font-weight: 500; font-size: 18px; color: #000; }
.kip360 .dedemo__quote-role { font-family: var(--font-body); font-weight: 400; font-size: 16px; color: #454582; }

/* ===== ECOSYSTEM ===== */
.kip360 .ecosystem { background: var(--white); overflow: hidden; }
.kip360 .ecosystem__header { text-align: center; margin: 0 auto 50px; }
.kip360 .ecosystem__header h2 { color: #343434; font-size: 48px; font-weight: 600; line-height: 1.1; }
.kip360 .ecosystem__diagram { display: flex; justify-content: center; padding: 20px 0; }
.kip360 .ecosystem__circle { position: relative; margin: 0 auto; }
.kip360 .ecosystem__arrow { position: absolute; width: 40px; height: 40px; pointer-events: none; z-index: 2; opacity: .8; }
.kip360 .ecosystem__center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 280px; z-index: 2; }
.kip360 .ecosystem__center p { font-size: 15px; color: #343434; line-height: 1.6; margin-bottom: 20px; }
.kip360 .ecosystem__center-btn { font-size: 15px; padding: 12px 28px; background: var(--purple); color: var(--white); border-color: var(--purple); border-radius: var(--radius-btn); }
.kip360 .ecosystem__center-btn:hover { background: var(--navy); color: var(--white); }
.kip360 .ecosystem__step { position: absolute; border-radius: 50%; background: var(--purple); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; z-index: 3; transition: transform .3s ease, box-shadow .3s ease; }
.kip360 .ecosystem__step:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(70,69,129,.45); }
.kip360 .ecosystem__step-num { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-heading); font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.15); z-index: 4; }
.kip360 .ecosystem__step-icon { color: rgba(255,255,255,.75); font-size: 26px; display: flex; margin-top: 10px; }
.kip360 .ecosystem__step-label { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; text-align: center; white-space: pre-line; }
.kip360 .ecosystem__mobile-list { display: none; }
.kip360 .ecosystem__mobile-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); position: relative; }
.kip360 .ecosystem__mobile-item:last-of-type { border-bottom: none; }
.kip360 .ecosystem__mobile-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative; }
.kip360 .ecosystem__mobile-num { position: absolute; top: -6px; right: -6px; width: 24px; height: 24px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-heading); font-weight: 700; font-size: 11px; display: inline-flex; align-items: center; justify-content: center; }
.kip360 .ecosystem__mobile-icon { color: var(--white); font-size: 20px; display: flex; }
.kip360 .ecosystem__mobile-label { font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--navy); }
.kip360 .ecosystem__mobile-btn { margin-top: 32px; width: 100%; }

/* ===== RESULTS ===== */
.kip360 .results { padding: 60px 0; background-color: var(--white); }
.kip360 .results__title { text-align: center; color: #343434; font-size: 48px; font-weight: 600; line-height: 104%; margin-bottom: 48px; }
.kip360 .results__row { display: flex; align-items: flex-start; gap: 40px; }
.kip360 .results__item { display: flex; align-items: flex-start; gap: 12px; flex: 1; }
.kip360 .results__icon { color: var(--purple); flex-shrink: 0; line-height: 0; margin-top: 4px; font-size: 48px; }
.kip360 .results__text { font-family: var(--font-body); font-size: 18px; line-height: 1.65; color: var(--navy); }
.kip360 .results__text strong { color: var(--white); font-weight: 700; background-color: var(--purple); padding: 2px 8px; border-radius: 4px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* ===== CTA ===== */
.kip360 .cta-section { background: var(--white); overflow: visible; padding-bottom: 0; }
.kip360 .cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.kip360 .cta__content { padding: 60px 0; display: flex; flex-direction: column; justify-content: center; }
.kip360 .cta__content h2 { color: #343434; margin-bottom: 20px; font-size: 48px; font-weight: 700; line-height: 1.08; }
.kip360 .cta__subtitle { color: #343434; font-size: 18px; line-height: 1.6; margin-bottom: 36px; max-width: 460px; }
.kip360 .cta__button { font-size: 18px; padding: 16px 36px; display: inline-flex; width: fit-content; align-items: center; gap: 12px; background: var(--purple); color: var(--white); border: 2px solid var(--purple); border-radius: var(--radius-btn); font-family: var(--font-heading); font-weight: 600; }
.kip360 .cta__button:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.kip360 .cta__button svg, .kip360 .cta__button i { font-size: 22px; color: var(--white); }
.kip360 .cta__image-wrap { position: relative; align-self: end; display: flex; align-items: flex-end; justify-content: center; overflow: visible; }
.kip360 .cta__image { width: 150%; max-width: none; height: auto; object-fit: contain; display: block; margin-bottom: -4px; }

/* ===== MAP ===== */
.kip360 .map-section { position: relative; }
.kip360 .map-section iframe { width: 100%; height: 364px; border: none; display: block; }
.kip360 .map__link { position: absolute; top: 12px; right: 12px; z-index: 2; color: #343434; font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; background: rgba(255,255,255,.85); padding: 4px 8px; border-radius: 4px; }
.kip360 .map__link:hover { color: var(--purple); }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1200px) {
  .kip360 .hero__title { font-size: 52px; letter-spacing: -2.6px; }
  .kip360 .hero__image { width: 125%; max-width: 125%; }
}
@media (max-width: 1100px) {
  .kip360 .ecosystem__circle { transform: scale(.75); transform-origin: center; }
  .kip360 .ecosystem__header h2 { font-size: 38px; }
}
@media (max-width: 1024px) {
  .kip360 { --section-padding: 80px 0; }
  .kip360 .hero__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .kip360 .hero__title { font-size: 44px; letter-spacing: -2.2px; }
  .kip360 .whatis__header h2, .kip360 .dedemo__content h2, .kip360 .cta__content h2, .kip360 .results__title { font-size: 38px; }
  .kip360 .whatis__cards { gap: 24px; }
  .kip360 .dedemo__grid { gap: 40px; }
}
@media (max-width: 768px) {
  .kip360 { --section-padding: 60px 0; }
  .kip360 .hero { padding: 120px 0 32px; }
  .kip360 .hero__grid { grid-template-columns: 1fr; align-items: center; min-height: auto; text-align: center; }
  .kip360 .hero__content { align-items: center; padding-bottom: 32px; }
  .kip360 .hero__title { font-size: 38px; letter-spacing: -1.9px; }
  .kip360 .hero__title br { display: none; }
  .kip360 .hero__subtitle { max-width: 100%; }
  .kip360 .hero__cta { align-self: center; }
  .kip360 .hero__visual { flex-direction: column; align-items: center; max-width: 360px; margin: 0 auto; }
  .kip360 .hero__image { width: 100%; max-width: 100%; max-height: 400px; }
  .kip360 .hero__blob-img { display: none; }
  .kip360 .hero__badge { position: relative; bottom: auto; right: auto; margin: -18px auto 24px; justify-content: center; padding: 8px 14px; }
  .kip360 .whatis__header h2, .kip360 .dedemo__content h2, .kip360 .ecosystem__header h2, .kip360 .results__title, .kip360 .cta__content h2 { font-size: 30px; }
  .kip360 .whatis__cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .kip360 .whatis__card p { max-width: 100%; }
  .kip360 .dedemo { padding: 48px 0; }
  .kip360 .dedemo__grid { grid-template-columns: 1fr; text-align: center; }
  .kip360 .dedemo__image-wrapper { max-width: 400px; margin: 0 auto; }
  .kip360 .dedemo__image { height: auto; aspect-ratio: 4/5; }
  .kip360 .dedemo__quote { text-align: left; }
  .kip360 .dedemo__quote-icon { position: static; margin-bottom: 8px; }
  .kip360 .dedemo__quote p { padding-right: 0; }
  .kip360 .ecosystem__diagram { display: none; }
  .kip360 .ecosystem__mobile-list { display: block; max-width: 480px; margin: 0 auto; }
  .kip360 .ecosystem__mobile-item::before { content: ''; position: absolute; left: 27px; top: 70px; height: calc(100% - 56px); width: 2px; background: var(--gold); opacity: .25; }
  .kip360 .ecosystem__mobile-item:last-of-type::before { display: none; }
  .kip360 .results { padding: 40px 0; }
  .kip360 .results__title br, .kip360 .cta__content h2 br, .kip360 .cta__subtitle br { display: none; }
  .kip360 .results__row { flex-direction: column; gap: 28px; }
  .kip360 .cta__grid { grid-template-columns: 1fr; text-align: center; }
  .kip360 .cta__content { padding: 40px 0 20px; }
  .kip360 .cta__button { width: 100%; justify-content: center; }
  .kip360 .cta__image { width: 100%; }
  .kip360 .map-section iframe { height: 250px; }
}

/* ============================================================
   STEPS — 8 painéis da metodologia
   ============================================================ */
.kip360 .steps { position: relative; }
.kip360 .steps__sticky { position: relative; }
.kip360 .steps-sidebar { position: fixed; left: 32px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; z-index: 50; }
.kip360 .steps-sidebar__item { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--purple); color: var(--purple); font-size: 18px; background: var(--white); cursor: pointer; transition: all .4s cubic-bezier(.25,.46,.45,.94); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.kip360 .steps-sidebar__item:hover { background: rgba(70,69,129,.08); transform: scale(1.1); }
.kip360 .steps-sidebar__item--active { background: var(--purple); color: var(--white); box-shadow: 0 4px 16px rgba(70,69,129,.35); transform: scale(1.1); }
.kip360 .steps__panel { min-height: 100vh; display: flex; align-items: center; padding: 40px 0; }
.kip360 .steps__panel--bg { background-color: var(--bg); }
.kip360 .steps__panel-content { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px 0 100px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center; }
.kip360 .steps__panel-text { display: flex; flex-direction: column; }
.kip360 .steps__panel-card { display: flex; flex-direction: column; align-items: flex-start; }
.kip360 .step-section__number { display: inline-flex; width: 40px; height: 40px; border-radius: 0 8px 8px 8px; background: var(--purple); color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 20px; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 10px; }
.kip360 .step-section__title { font-family: var(--font-heading); font-weight: 700; font-size: 40px; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.kip360 .step-section__description { font-family: var(--font-body); font-size: 18px; line-height: 1.65; color: #3A3A3A; margin-bottom: 10px; max-width: 560px; }
.kip360 .step-section__cta { margin-top: 20px; margin-bottom: 32px; }
.kip360 .step-section__cta i { font-size: 14px; }
.kip360 .inline-tabs__nav { display: flex; gap: 28px; }
.kip360 .inline-tabs__btn { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; cursor: default; font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--purple); padding: 0; }
.kip360 .inline-tabs__btn i { font-size: 18px; }
.kip360 .steps .btn-purple { font-size: 16px; padding: 14px 28px; border-radius: var(--radius-btn); width: fit-content; align-self: flex-start; }

/* Product card */
.kip360 .product-card { position: relative; background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dk) 100%); border-radius: 0 16px 16px 16px; margin-top: 16px; overflow: visible; width: 100%; }
.kip360 .product-card__seal { position: absolute; top: -55px; right: -55px; width: 180px; height: 180px; object-fit: contain; z-index: 4; filter: drop-shadow(0 4px 12px rgba(199,189,68,.4)); }
.kip360 .product-card__seal--overlay { top: 24px; left: 24px; right: auto; width: 110px; height: 110px; }
.kip360 .product-card__inner { display: flex; flex-direction: column; position: relative; }
.kip360 .product-card__image-wrap { position: relative; width: 100%; padding: 40px 20px 20px; display: flex; justify-content: center; }
.kip360 .product-card__image { width: 100%; height: 360px; object-fit: contain; }
.kip360 .product-card__body { padding: 20px 28px 28px; }
.kip360 .product-card__heading { font-family: var(--font-heading); font-weight: 700; font-size: 32px; line-height: 104%; color: var(--white); margin-bottom: 8px; }
.kip360 .product-card__description { font-family: var(--font-body); font-weight: 700; font-size: 16px; line-height: 104%; color: rgba(255,255,255,.9); margin-bottom: 12px; }
.kip360 .product-card__badges { position: absolute; top: 20px; left: 20px; display: flex; flex-direction: column; gap: 8px; z-index: 3; }
.kip360 .product-card__badge { display: inline-block; padding: 6px 14px; font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--navy); background: var(--gold); border-radius: var(--radius-btn); width: fit-content; }
.kip360 .product-card__dosage { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.2); }
.kip360 .product-card__dosage.is-three { grid-template-columns: 1fr 1fr 1fr; }
.kip360 .product-card__dosage-item { display: flex; flex-direction: column; gap: 4px; }
.kip360 .product-card__dosage-label { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--white); display: flex; align-items: center; gap: 6px; }
.kip360 .product-card__dosage-icon { display: flex; font-size: 16px; color: rgba(255,255,255,.7); }
.kip360 .product-card__dosage-icon svg { width: 16px; height: 16px; }
.kip360 .product-card__dosage-value { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.5; }
.kip360 .product-card__arrow { position: absolute; right: -52px; top: 45%; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.12); background: var(--white); color: var(--navy); font-size: 14px; cursor: pointer; transition: all .3s ease; box-shadow: var(--shadow-sm); z-index: 3; }
.kip360 .product-card__arrow:hover { background: var(--purple); color: var(--white); border-color: var(--purple); }
.kip360 .product-card__arrow--prev { right: auto; left: -52px; transform: rotate(180deg); }
.kip360 .product-card__dots { display: flex; justify-content: center; gap: 8px; padding: 16px 0 4px; }
.kip360 .product-card__dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(0,0,0,.15); transition: all .3s ease; cursor: pointer; }
.kip360 .product-card__dot--active { background: var(--purple); }

/* slider */
.kip360 .product-slider-wrap, .kip360 .photo-slider { width: 100%; }
.kip360 [data-kip-slider] .kip-slide { display: none; }
.kip360 [data-kip-slider] .kip-slide.is-active { display: block; }

/* Photo card */
.kip360 .photo-card { border-radius: 16px; overflow: hidden; margin-top: 8px; box-shadow: var(--shadow-md); }
.kip360 .photo-card__image { width: 100%; height: 440px; object-fit: cover; display: block; }
.kip360 .photo-slider { display: flex; flex-direction: column; align-items: center; }

/* Analysis card (chats) */
.kip360 .analysis-card__image-wrap { position: relative; padding: 28px 0 0 !important; overflow: visible; min-height: 320px; }
.kip360 .analysis-card__image-wrap .product-card__image { position: relative; z-index: 1; width: 65%; height: auto; object-fit: contain; margin: 0 auto; }
.kip360 .chat-svg { position: absolute; z-index: 2; animation: k360ChatFloat 5s ease-in-out infinite; }
.kip360 .chat-svg--top-right { width: 38%; top: 10%; right: 10%; animation-delay: 0s; }
.kip360 .chat-svg--bottom-left { width: 36%; bottom: 20%; left: 8%; animation-delay: 1.6s; }
.kip360 .chat-svg--bottom-right { width: 32%; bottom: 15%; right: 10%; animation-delay: 3.2s; }
@keyframes k360ChatFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

@media (max-width: 1024px) {
  .kip360 .steps-sidebar { left: 16px; gap: 8px; }
  .kip360 .steps-sidebar__item { width: 38px; height: 38px; font-size: 14px; }
  .kip360 .steps__panel-content { padding-left: 80px; gap: 32px; }
  .kip360 .step-section__title { font-size: 32px; }
  .kip360 .product-card__heading { font-size: 20px; }
}
@media (max-width: 768px) {
  .kip360 .steps__panel { min-height: auto; padding: 48px 0; }
  .kip360 .steps-sidebar { display: none; }
  .kip360 .steps__panel-content { padding: 0 24px; grid-template-columns: 1fr; gap: 24px; }
  .kip360 .step-section__title { font-size: 28px; }
  .kip360 .product-card__seal { width: 100px; height: 100px; top: -25px; right: -25px; }
  .kip360 .product-card__seal--overlay { top: 8px; left: 8px; width: 70px; height: 70px; }
  .kip360 .product-card__arrow { right: 8px; top: auto; bottom: 50%; width: 36px; height: 36px; }
  .kip360 .product-card__arrow--prev { right: auto; left: 8px; transform: rotate(180deg); }
  .kip360 .product-card__dosage, .kip360 .product-card__dosage.is-three { grid-template-columns: 1fr; gap: 12px; }
  .kip360 .product-card__heading { font-size: 20px; }
  .kip360 .photo-card__image { height: 220px; }
  .kip360 .steps .btn-purple { width: 100%; justify-content: center; }
}

/* ============================================================
   NAVBAR + FOOTER exclusivos da página KIP 360°
   ============================================================ */
.kip360 { position: relative; }
.kip360 .topbar { position: absolute; top: 0; left: 0; width: 100%; z-index: 1001; background: #05051E; padding: 8px 0; }
.kip360 .topbar__link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.8); font-family: var(--font-body); font-size: 13px; font-weight: 500; }
.kip360 .topbar__link:hover { color: var(--white); }
.kip360 .topbar__link i { font-size: 12px; }
.kip360 .navbar { position: absolute; top: 36px; left: 0; width: 100%; z-index: 1000; background-color: transparent; }
.kip360 .navbar--scrolled { position: fixed; top: 0; background-color: #454582; box-shadow: var(--shadow-lg); animation: k360SlideDown .35s ease; }
@keyframes k360SlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.kip360 .navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.kip360 .navbar__logo { flex-shrink: 0; display: flex; align-items: center; }
.kip360 .navbar__logo img { height: 26px; width: auto; }
.kip360 .navbar__links { display: flex; align-items: center; gap: 36px; margin: 0 auto; }
.kip360 .navbar__links li a { font-family: var(--font-heading); font-weight: 500; font-size: 18px; color: #fff; position: relative; }
.kip360 .navbar__links li a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s ease; }
.kip360 .navbar__links li a:hover::after { width: 100%; }
.kip360 .navbar__cta { flex-shrink: 0; font-size: 16px; padding: 10px 22px; border-radius: var(--radius-pill); }
.kip360 .navbar__cta i { font-size: 18px; }
.kip360 .navbar__hamburger { display: none; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; padding: 4px; line-height: 1; }
.kip360 .navbar__mobile { position: fixed; top: 72px; left: 0; width: 100%; height: calc(100vh - 72px); background-color: #454582; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; transform: translateX(100%); transition: transform .35s ease; z-index: 999; }
.kip360 .navbar__mobile--open { transform: translateX(0); }
.kip360 .navbar__mobile-links { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.kip360 .navbar__mobile-links li a { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: var(--white); letter-spacing: .5px; }
.kip360 .navbar__mobile-links li a:hover { color: var(--gold); }
.kip360 .navbar__mobile-cta { margin-top: 16px; font-size: 16px; background: transparent; border: 2px solid var(--white); color: var(--white); }

.kip360 .footer { background: #454582; padding: 48px 0 0; color: var(--white); }
.kip360 .footer__top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 32px; }
.kip360 .footer__left { display: flex; flex-direction: column; }
.kip360 .footer__logo { width: 320px; margin-bottom: 10px; display: block; }
.kip360 .footer__desc { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.5; margin-bottom: 32px; max-width: 360px; }
.kip360 .footer__nav { display: flex; align-items: center; gap: 14px; }
.kip360 .footer__nav a { color: var(--white); font-size: 18px; font-weight: 600; }
.kip360 .footer__nav a:hover { color: var(--gold); }
.kip360 .footer__dot { color: rgba(255,255,255,.6); font-size: 10px; line-height: 1; }
.kip360 .footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.kip360 .footer__icons { display: flex; gap: 10px; }
.kip360 .footer__icons a { width: 48px; height: 48px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: #454582; font-size: 20px; transition: all .3s ease; }
.kip360 .footer__icons a:hover { background: var(--gold); color: var(--navy); }
.kip360 .footer__cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 28px; border: 2px solid var(--white); border-radius: var(--radius-btn); background: var(--white); color: #454582; font-family: var(--font-heading); font-weight: 600; font-size: 18px; }
.kip360 .footer__cta:hover { background: rgba(255,255,255,.9); color: #454582; }
.kip360 .footer__cta i { font-size: 20px; }
.kip360 .footer__bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.2); margin-top: 8px; }
.kip360 .footer__bottom p { font-size: 13px; color: rgba(255,255,255,.5); }
.kip360 .footer__bottom strong { color: rgba(255,255,255,.8); font-weight: 700; }
.kip360 .footer__bottom a { font-size: 13px; color: rgba(255,255,255,.5); }
.kip360 .footer__bottom a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .kip360 .navbar__links, .kip360 .navbar__cta { display: none; }
  .kip360 .navbar__hamburger { display: flex; align-items: center; }
  .kip360 .footer__top { flex-direction: column; align-items: center; text-align: center; gap: 32px; }
  .kip360 .footer__left, .kip360 .footer__right { align-items: center; }
  .kip360 .footer__logo { width: 200px; }
  .kip360 .footer__desc { max-width: 100%; }
  .kip360 .footer__nav { justify-content: center; }
  .kip360 .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Sidebar dos steps: oculta até a seção Steps entrar em vista */
.kip360 .steps-sidebar { opacity: 0; visibility: hidden; transition: opacity .3s ease; }
.kip360 .steps-sidebar.is-visible { opacity: 1; visibility: visible; }

/* Auditoria: garante esconder o CTA/links de desktop no mobile do Kip 360
   (a classe .btn-primary global colide e reexibe o botão). */
@media (max-width: 768px) {
  .kip360 .navbar .navbar__cta,
  .kip360 .navbar .navbar__links { display: none !important; }
}
