/*
 * landing.css — Estilos específicos para páginas landing (welcome, nutriologo, legal).
 * Se carga junto con preline.css; NO reemplaza el bundle codebase del app autenticado.
 * Incluye utilidades compat con Bootstrap/Codebase usadas en blades legacy + estilos de sección.
 */

/* ==========================================================================
   Bootstrap compat — variables, layout, grid, utilidades usadas en landing blades
   ========================================================================== */

:root {
  --bs-primary: #2a2068;
  --bs-primary-rgb: 42, 32, 104;
  --bs-success: #22C55E;
  --bs-success-rgb: 34, 197, 94;
  --bs-warning: #d97706;
  --bs-warning-rgb: 217, 119, 6;
  --bs-body-color: #3e444a;
  --bs-body-bg: #ffffff;
  --bs-border-color: #e4e7ed;
  --bs-border-radius: 0.375rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: #221a54;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* --- Layout --- */
#page-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
}

#main-container {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  max-width: 100%;
}

.content {
  width: 100%;
  margin: 0 auto;
  padding: 0.575rem 0.875rem 1px;
  overflow-x: visible;
}

.content.content-full {
  padding-bottom: 0.875rem;
}

.content.content-boxed {
  max-width: 1200px;
}

@media (min-width: 768px) {
  .content {
    padding: 0.75rem 1.75rem 1px;
  }
  .content.content-full {
    padding-bottom: 1.75rem;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

/* --- Grid --- */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.g-3 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
.g-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }

@media (min-width: 992px) {
  .g-lg-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
  .g-lg-5 { --bs-gutter-x: 3rem; --bs-gutter-y: 3rem; }
}

.col-12 { flex: 0 0 auto; width: 100%; }
.col-6 { flex: 0 0 auto; width: 50%; }

@media (min-width: 576px) {
  .col-sm-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 768px) {
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
}

/* --- Display & flex --- */
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-inline-block { display: inline-block !important; }
.d-none { display: none !important; }

@media (min-width: 576px) {
  .d-sm-block { display: block !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-inline-flex { display: inline-flex !important; }
}

.flex-column { flex-direction: column !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

@media (min-width: 768px) {
  .flex-md-row { flex-direction: row !important; }
  .flex-md-nowrap { flex-wrap: nowrap !important; }
}

@media (min-width: 992px) {
  .flex-lg-row { flex-direction: row !important; }
}

.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }

@media (min-width: 992px) {
  .align-items-lg-center { align-items: center !important; }
}

.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-end { justify-content: flex-end !important; }

@media (min-width: 768px) {
  .justify-content-md-start { justify-content: flex-start !important; }
  .justify-content-md-end { justify-content: flex-end !important; }
}

@media (min-width: 992px) {
  .justify-content-lg-start { justify-content: flex-start !important; }
  .justify-content-lg-end { justify-content: flex-end !important; }
}

.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }

@media (min-width: 992px) {
  .gap-lg-2 { gap: 0.5rem !important; }
  .gap-lg-4 { gap: 1.5rem !important; }
}

/* --- Spacing --- */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-auto { margin-top: auto !important; }

@media (min-width: 768px) {
  .mb-md-0 { margin-bottom: 0 !important; }
}

@media (min-width: 992px) {
  .mb-lg-0 { margin-bottom: 0 !important; }
  .mb-lg-5 { margin-bottom: 3rem !important; }
  .mt-lg-0 { margin-top: 0 !important; }
}

.mx-2 { margin-right: 0.5rem !important; margin-left: 0.5rem !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }

@media (min-width: 992px) {
  .mx-lg-0 { margin-right: 0 !important; margin-left: 0 !important; }
}

.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-auto { margin-left: auto !important; }

.p-0 { padding: 0 !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }

.px-1 { padding-right: 0.25rem !important; padding-left: 0.25rem !important; }
.px-2 { padding-right: 0.5rem !important; padding-left: 0.5rem !important; }

.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

@media (min-width: 992px) {
  .py-lg-6 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
  .py-lg-7 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
  .p-lg-5 { padding: 3rem !important; }
}

.pt-0 { padding-top: 0 !important; }
.pt-3 { padding-top: 1rem !important; }
.pb-0 { padding-bottom: 0 !important; }
.pe-0 { padding-right: 0 !important; }

/* --- Text & typography --- */
.text-primary { color: var(--bs-primary) !important; }
.text-success { color: var(--bs-success) !important; }
.text-muted { color: #6c757d !important; }
.text-dark { color: #343a40 !important; }
.text-warning { color: var(--bs-warning) !important; }
.text-body { color: var(--bs-body-color) !important; }
.text-dual { color: #6b7280 !important; }
.text-white { color: #fff !important; }
.text-secondary { color: #6c757d !important; }

.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-center { text-align: center !important; }

@media (min-width: 768px) {
  .text-md-start { text-align: left !important; }
  .text-md-end { text-align: right !important; }
}

@media (min-width: 992px) {
  .text-lg-start { text-align: left !important; }
}

.text-uppercase { text-transform: uppercase !important; }
.text-decoration-none { text-decoration: none !important; }
.text-decoration-underline { text-decoration: underline !important; }

.fs-xs { font-size: 0.75rem !important; }
.fs-sm { font-size: 0.875rem !important; }
.fs-md { font-size: 1rem !important; }
.fs-lg { font-size: 1.25rem !important; }

.fw-medium { font-weight: 500 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }

.h2 { font-size: calc(1.325rem + 0.9vw); }
.h5 { font-size: 1.25rem; }
.h6 { font-size: 1rem; }

@media (min-width: 1200px) {
  .h2 { font-size: 2rem; }
}

.small, small { font-size: 0.875em; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: var(--bs-border-radius);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background-color: #221a54;
  border-color: #221a54;
}

.btn-success {
  color: #fff;
  background-color: var(--bs-success);
  border-color: var(--bs-success);
}

.btn-success:hover,
.btn-success:focus {
  color: #fff;
  background-color: #16a34a;
  border-color: #16a34a;
}

.btn-soft-primary,
a.btn-soft-primary {
  border-radius: 0.75rem;
  transition: color 0.25s ease, background-color 0.25s ease;
  color: #6c757d;
  background-color: transparent;
  border: none;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.btn-soft-primary:hover,
.btn-soft-primary.active,
.btn-soft-primary:focus,
a.btn-soft-primary:hover,
a.btn-soft-primary.active,
a.btn-soft-primary:focus {
  color: var(--bs-primary);
  background-color: rgba(var(--bs-primary-rgb), 0.12);
}

.btn-lg,
a.btn-lg {
  padding: 0.75rem 1.25rem;
  border-radius: 0.875rem;
  font-size: 1.125rem;
}

.btn-link {
  font-weight: 400;
  color: var(--bs-link-color);
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:hover {
  color: var(--bs-link-hover-color);
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
  cursor: pointer;
}

.btn-close:hover {
  opacity: 0.75;
}

/* --- Badge & backgrounds --- */
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
}

.bg-primary { background-color: var(--bs-primary) !important; color: #fff !important; }
.bg-success { background-color: var(--bs-success) !important; color: #fff !important; }
.bg-light { background-color: #f8f9fa !important; color: #212529 !important; }
.bg-warning { background-color: var(--bs-warning) !important; color: #fff !important; }
.bg-white { background-color: #fff !important; }
.bg-dark { background-color: #343a40 !important; color: #fff !important; }

/* --- Block cards --- */
.block {
  margin-bottom: 1.75rem;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(220, 225, 232, 0.5);
}

.block-rounded,
.block.block-rounded {
  border-radius: 0.875rem 1rem;
}

.block-content {
  width: 100%;
  margin: 0 auto;
  padding: 1.625rem 1.625rem 1px;
  overflow-x: visible;
}

.block-content-full,
.block-content.block-content-full {
  padding-bottom: 1.625rem;
}

.legal-doc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--bs-body-color);
}

.legal-doc h2,
.legal-doc h3 {
  color: #1A2B49;
}

.legal-doc a {
  color: var(--bs-primary);
}

.legal-doc ul {
  padding-left: 1.25rem;
}

/* --- Navbar (visual only) --- */
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-item { list-style: none; }

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--bs-primary);
  text-decoration: none;
  transition: color 0.15s ease-in-out;
}

.nav-link:hover {
  color: #221a54;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2842, 32, 104, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse:not(.show) {
  display: none;
}

.collapse.show {
  display: block;
}

@media (min-width: 992px) {
  .collapse.navbar-collapse {
    display: flex !important;
  }
}

/* --- Accordion (visual, old look) --- */
.accordion {
  --bs-accordion-color: #3e444a;
  --bs-accordion-bg: #fff;
  --bs-accordion-border-color: #e4e7ed;
  --bs-accordion-border-radius: 0.75rem;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #1A2B49;
  --bs-accordion-btn-bg: #fff;
  --bs-accordion-active-color: var(--bs-primary);
  --bs-accordion-active-bg: rgba(42, 32, 104, 0.06);
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: 1px solid var(--bs-accordion-border-color);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  cursor: pointer;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 -1px 0 var(--bs-accordion-border-color);
}

.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232a2068'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(42, 32, 104, 0.2);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-collapse.collapse:not(.show) {
  display: none;
}

.accordion-collapse.collapse.show {
  display: block;
}

/* --- Modal base (Preline overlay compat) --- */
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-bg: #fff;
  --bs-modal-border-radius: 0.875rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.show,
.modal.fade.show {
  display: block;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem 1rem;
  gap: 0.5rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade { opacity: 0; }
.modal-backdrop.show { opacity: 0.5; }

/* --- Alert --- */
.alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: var(--bs-border-radius);
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

/* --- Misc utilities --- */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-16x9 { --bs-aspect-ratio: 56.25%; }

.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.rounded-2 { border-radius: 0.375rem !important; }
.rounded-3 { border-radius: 0.5rem !important; }
.rounded-4 { border-radius: 0.75rem !important; }
.rounded-circle { border-radius: 50% !important; }

.border { border: 1px solid var(--bs-border-color) !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--bs-border-color) !important; }
.border-bottom { border-bottom: 1px solid var(--bs-border-color) !important; }
.border-warning { border-color: var(--bs-warning) !important; }

.w-100 { width: 100% !important; }
.w-lg-auto { width: 100% !important; }
.h-100 { height: 100% !important; }

@media (min-width: 992px) {
  .w-lg-auto { width: auto !important; }
}

.position-relative { position: relative !important; }

/* --- Landing footer & WhatsApp float --- */
.tctk-footer {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.tctk-footer .btn.btn-soft-primary {
  border-radius: 999px;
}

.tctk-whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tctk-whatsapp-float:hover {
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.tctk-whatsapp-float svg {
  flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .tctk-whatsapp-float:not(:hover) {
    animation: tctkWhatsappBob 2.8s ease-in-out infinite;
  }
}

@keyframes tctkWhatsappBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ==========================================================================
   Welcome page section styles
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.20;
    text-wrap: balance;
}

.badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 0.13em;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    #main-container .text-success {
        color: transparent !important;
        background: linear-gradient(90deg, #8CC63F, #22C55E, #8CC63F);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        text-shadow: 0 8px 28px rgba(34, 197, 94, 0.18);
    }
}

@keyframes tctkShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: no-preference) {
    #main-container .text-success {
        animation: tctkShine 3.8s ease-in-out infinite;
    }
}

#funciona {
    font-size: 1.05rem;
    line-height: 1.6;
}

#funciona .funciona-headline {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.15;
}

#funciona .funciona-intro {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    color: #5a6478;
}

#funciona .funciona-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2.5rem;
}

#funciona .funciona-step {
    flex: 1;
    max-width: 11.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

#funciona .funciona-step__circle {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #3D3B8E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    box-shadow: 0 4px 16px rgba(26, 43, 73, 0.08);
    margin-bottom: 0.85rem;
}

#funciona .funciona-step__text {
    color: #5a6478;
    margin: 0;
    padding: 0 0.35rem;
}

#funciona .funciona-step__text strong {
    color: #1A2B49;
    font-weight: 700;
}

#funciona .funciona-step__connector {
    flex: 1;
    min-width: 0.75rem;
    max-width: 2.5rem;
    height: 2px;
    background: #e2e5eb;
    align-self: flex-start;
    margin-top: 2.75rem;
}

#funciona .funciona-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #f8faff;
    border: 1px solid #e4e8f0;
    border-radius: 1rem;
    padding: 1.35rem 1.5rem;
}

#funciona .funciona-cta__icon {
    position: relative;
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: #ebe8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D3B8E;
    font-size: 1.5rem;
}

#funciona .funciona-cta__icon-badge {
    position: absolute;
    right: -0.1rem;
    bottom: -0.1rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #22C55E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    border: 2px solid #f8faff;
}

#funciona .funciona-cta__body {
    flex: 1;
    min-width: 0;
}

#funciona .funciona-cta__title {
    color: #1A2B49;
    font-weight: 700;
    margin: 0 0 0.2rem;
}

#funciona .funciona-cta__desc {
    color: #5a6478;
    margin: 0;
}

#funciona .funciona-cta__btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 600;
    border-radius: 0.65rem;
    padding: 0.75rem 1.25rem;
}

@media (max-width: 991.98px) {
    #funciona .funciona-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    #funciona .funciona-step {
        max-width: 20rem;
        margin-bottom: 1.5rem;
    }

    #funciona .funciona-step__connector {
        display: none;
    }

    #funciona .funciona-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    #funciona .funciona-cta__btn {
        width: 100%;
    }
}

#hero {
    scroll-margin-top: 5rem;
}

#hero .hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.15;
}

#hero .hero-subtext {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a6478;
    max-width: 520px;
}

#hero .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

#hero .hero-cta-row .btn {
    border-radius: 0.65rem;
    font-weight: 600;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

#hero .hero-cta-secondary {
    background: #f0f2f6;
    border: none;
    color: #3D3B8E;
}

#hero .hero-cta-secondary:hover {
    background: #e4e8ef;
    color: #3D3B8E;
}

#hero .hero-cta-install {
    background: #fff;
    border: 2px solid #2a2068;
    color: #2a2068;
}

#hero .hero-cta-install:hover {
    background: #f0eefa;
    color: #2a2068;
    border-color: #2a2068;
}

.pwa-ios-steps {
    counter-reset: pwa-step;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pwa-ios-steps li {
    counter-increment: pwa-step;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: #5a6478;
}

.pwa-ios-steps li::before {
    content: counter(pwa-step);
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: #2a2068;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pwa-ios-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.35rem;
    background: #eef1ff;
    color: #2a2068;
    vertical-align: middle;
}

#hero .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

#hero .hero-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
}

#hero .hero-highlight__icon {
    font-size: 1.85rem;
    color: #3D3B8E;
    line-height: 1;
}

#hero .hero-highlight__label {
    color: #1A2B49;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.35;
    margin: 0;
}

#hero .hero-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 1.5rem 1rem;
}

#hero .hero-illustration__arc {
    position: absolute;
    width: min(92%, 440px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 3px solid rgba(140, 198, 63, 0.35);
    background: radial-gradient(circle at 30% 70%, rgba(140, 198, 63, 0.08) 0%, transparent 55%);
    z-index: 0;
}

#hero .hero-illustration__sparkle {
    position: absolute;
    font-size: 1.1rem;
    z-index: 2;
    line-height: 1;
    pointer-events: none;
}

#hero .hero-illustration__sparkle--1 {
    top: 18%;
    right: 14%;
    color: #8CC63F;
}

#hero .hero-illustration__sparkle--2 {
    bottom: 22%;
    left: 10%;
    color: #3D3B8E;
    font-size: 0.95rem;
}

#hero .hero-illustration__sparkle--3 {
    top: 42%;
    left: 6%;
    color: #8CC63F;
    font-size: 0.85rem;
}

#hero .hero-illustration__img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 430px;
    min-width: 260px;
    height: auto;
}

@media (max-width: 991.98px) {
    #hero .hero-highlights {
        display: block;
        max-width: 34rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        line-height: 1.55;
    }

    #hero .hero-highlight {
        display: inline;
    }

    #hero .hero-highlight__icon {
        display: inline-block;
        font-size: 1rem;
        vertical-align: -0.12em;
        margin-right: 0.2rem;
    }

    #hero .hero-highlight__label {
        display: inline;
    }

    #hero .hero-highlight + .hero-highlight::before {
        content: ' · ';
        color: #94a3b8;
        font-weight: 400;
        margin: 0 0.1rem;
    }

    #hero .hero-cta-row {
        justify-content: center;
    }

    #hero .hero-illustration {
        min-height: 300px;
        margin-top: 1rem;
    }
}

#pacientes {
    scroll-margin-top: 5rem;
}

#pacientes .pacientes-headline {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.15;
}

#pacientes .pacientes-subtext {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a6478;
    max-width: 520px;
}

#pacientes .pacientes-cta-stack {
    max-width: 340px;
}

#pacientes .pacientes-cta-stack .btn {
    width: 100%;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    border-radius: 0.65rem;
    font-weight: 600;
}

#pacientes .pacientes-cta-secondary {
    background: #f0f2f6;
    border: none;
    color: #3D3B8E;
}

#pacientes .pacientes-cta-secondary:hover {
    background: #e4e8ef;
    color: #3D3B8E;
}

#pacientes .pacientes-features-panel {
    background: #f5f6fa;
    border-radius: 0.85rem;
    padding: 1.75rem 1.25rem 1.35rem;
}

#pacientes .pacientes-features {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 1.35rem;
}

#pacientes .pacientes-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.85rem;
    min-width: 0;
}

#pacientes .pacientes-feature-divider {
    width: 1px;
    height: 4.5rem;
    background: #dde1e8;
    flex-shrink: 0;
}

#pacientes .pacientes-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    flex-shrink: 0;
    margin-bottom: 0.85rem;
}

#pacientes .pacientes-feature-icon--lavender { background: #ebe8f4; }
#pacientes .pacientes-feature-icon--blue { background: #e6edf5; }
#pacientes .pacientes-feature-icon--peach { background: #f3ebe6; }

#pacientes .pacientes-feature-title {
    color: #1A2B49;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

#pacientes .pacientes-feature-desc {
    color: #6b7280;
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 0;
    max-width: 11rem;
}

#pacientes .pacientes-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
}

#pacientes .pacientes-trust-shield {
    color: #22C55E;
    font-size: 1.15rem;
    flex-shrink: 0;
}

#pacientes .pacientes-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

#pacientes .pacientes-visual__circle {
    position: absolute;
    width: min(88%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: #3D3B8E;
    z-index: 0;
}

#pacientes .pacientes-visual__rings {
    position: absolute;
    width: min(95%, 420px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.22);
    z-index: 0;
}

#pacientes .pacientes-visual__rings::before {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 2px solid rgba(34, 197, 94, 0.14);
}

#pacientes .pacientes-visual__dots {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 6rem;
    background-image: radial-gradient(circle, #d1d5db 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.55;
    z-index: 0;
}

.welcome-phone-mock {
    --phone-width: 212px;
    width: var(--phone-width);
    max-width: calc(100% - 1.5rem);
    margin-left: auto;
    margin-right: auto;
    border-radius: 2.5rem;
    background: linear-gradient(160deg, #222 0%, #0a0a0a 100%);
    padding: 0.38rem;
    box-shadow:
        0 28px 64px rgba(26, 43, 73, 0.28),
        0 10px 28px rgba(61, 59, 142, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.welcome-phone-mock__screen {
    border-radius: 2.1rem;
    background: #f5f6fa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    aspect-ratio: 9 / 19.5;
    position: relative;
    isolation: isolate;
}

.welcome-phone-mock__island {
    position: absolute;
    top: 0.42rem;
    left: 50%;
    transform: translateX(-50%);
    width: 34%;
    height: 1.05rem;
    background: #0a0a0a;
    border-radius: 999px;
    z-index: 20;
    pointer-events: none;
}

#pacientes .pacientes-phone {
    position: relative;
    z-index: 1;
    transform: rotate(-4deg);
}

#pacientes .pacientes-phone__screen {
    font-size: 0.52rem;
}

#pacientes .pacientes-phone__scroll {
    flex: 1;
    overflow: hidden;
    padding: 1.65rem 0.4rem 0.2rem;
}

#pacientes .ph-welcome {
    position: relative;
    border-radius: 0.85rem;
    background: var(--bs-primary, #2a2068);
    color: #fff;
    padding: 0.55rem 2.4rem 0.55rem 0.55rem;
    margin-bottom: 0.4rem;
    box-shadow: 0 2px 8px rgba(42, 32, 104, 0.22);
    background-image:
        radial-gradient(circle at 12% 28%, rgba(255, 255, 255, 0.14) 0, transparent 42%),
        radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.1) 0, transparent 38%);
}

#pacientes .ph-welcome__name {
    font-weight: 700;
    font-size: 0.72rem;
    margin: 0 0 0.1rem;
    line-height: 1.2;
}

#pacientes .ph-welcome__phrase {
    margin: 0;
    font-size: 0.52rem;
    opacity: 0.92;
    line-height: 1.35;
}

#pacientes .ph-welcome__avatar {
    position: absolute;
    top: 50%;
    right: 0.4rem;
    transform: translateY(-50%);
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#pacientes .ph-block {
    background: #fff;
    border-radius: 0.65rem;
    padding: 0.45rem;
    margin-bottom: 0.35rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#pacientes .ph-block--wind {
    border-color: rgba(42, 32, 104, 0.12);
    box-shadow: 0 2px 8px rgba(26, 43, 73, 0.05);
}

#pacientes .ph-appointment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
}

#pacientes .ph-label {
    color: #6b7280;
    font-size: 0.5rem;
    display: block;
    margin-bottom: 0.1rem;
}

#pacientes .ph-appointment__time {
    font-weight: 800;
    font-size: 0.95rem;
    color: #1A2B49;
    line-height: 1;
    margin-bottom: 0.1rem;
}

#pacientes .ph-appointment__date {
    color: #9ca3af;
    font-size: 0.48rem;
    text-transform: uppercase;
}

#pacientes .ph-appointment__avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1.5px solid var(--bs-primary, #2a2068);
    object-fit: cover;
    flex-shrink: 0;
}

#pacientes .ph-progress {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.2rem 0 0.35rem;
    margin-bottom: 0.15rem;
}

#pacientes .ph-progress__ring {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

#pacientes .ph-progress__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

#pacientes .ph-progress__ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.48rem;
    color: #1A2B49;
}

#pacientes .ph-section-title {
    font-weight: 700;
    color: #1A2B49;
    font-size: 0.62rem;
    margin-bottom: 0.08rem;
}

#pacientes .ph-muted {
    color: #9ca3af;
    font-size: 0.48rem;
    margin: 0;
}

#pacientes .ph-wallet {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
}

#pacientes .ph-wallet__amount {
    font-weight: 800;
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.1;
}

#pacientes .ph-wallet__amount--success { color: #22C55E; }
#pacientes .ph-wallet__amount--danger { color: #ef4444; }

#pacientes .ph-btn-soft {
    background: rgba(42, 32, 104, 0.1);
    color: var(--bs-primary, #2a2068);
    border: none;
    border-radius: 0.35rem;
    padding: 0.15rem 0.35rem;
    font-size: 0.46rem;
    font-weight: 600;
    white-space: nowrap;
}

#pacientes .ph-metric__value {
    font-weight: 800;
    font-size: 0.72rem;
    color: #1A2B49;
    margin: 0;
    line-height: 1.1;
}

#pacientes .ph-metrics-row {
    display: flex;
    gap: 0.35rem;
}

#pacientes .ph-metrics-row .ph-block {
    flex: 1;
    margin-bottom: 0;
}

.welcome-phone-mock__nav {
    display: flex;
    align-items: flex-end;
    gap: 0.1rem;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.3rem 0.2rem 0.45rem;
    flex-shrink: 0;
}

.welcome-phone-mock__nav-item {
    flex: 1;
    text-align: center;
    color: #6c757d;
    font-size: 0.44rem;
    font-weight: 500;
    padding: 0.2rem 0.1rem;
    border-radius: 0.45rem;
    min-width: 0;
}

.welcome-phone-mock__nav-item.active {
    color: var(--bs-primary, #2a2068);
    background: rgba(42, 32, 104, 0.1);
}

.welcome-phone-mock__nav-item i {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.08rem;
}

.welcome-phone-mock__nav-logo {
    flex: 0 0 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 1.6rem;
    overflow: visible;
}

.welcome-phone-mock__nav-logo span {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem;
    transform: translateY(-0.35rem);
}

.welcome-phone-mock__nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    #pacientes .pacientes-features-panel {
        padding: 1.35rem 0.75rem 1.1rem;
    }

    #pacientes .pacientes-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.1rem;
    }

    #pacientes .pacientes-feature-divider {
        display: none;
    }

    #pacientes .pacientes-feature {
        padding: 0;
    }

    #pacientes .pacientes-feature-desc {
        max-width: 16rem;
    }

    #pacientes .pacientes-trust {
        font-size: 0.8rem;
        flex-wrap: wrap;
        padding: 0 0.25rem;
    }
}

@media (max-width: 991.98px) {
    #pacientes .pacientes-visual {
        min-height: 500px;
        margin-top: 1.5rem;
    }

    #pacientes .pacientes-phone {
        transform: none;
    }

    #pacientes .pacientes-cta-stack {
        max-width: 100%;
    }

    #pacientes .pacientes-visual__dots {
        display: none;
    }
}

#ultimo-paso {
    scroll-margin-top: 5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

#ultimo-paso .up-headline {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.15;
}

#ultimo-paso .up-subtext {
    color: #5a6478;
    max-width: 520px;
}

#ultimo-paso .up-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

#ultimo-paso .up-feature__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.65rem;
    background: #ebe8f4;
    color: #3D3B8E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

#ultimo-paso .up-feature__text {
    color: #5a6478;
    margin: 0;
    padding-top: 0.15rem;
}

#ultimo-paso .up-feature__text strong {
    color: #1A2B49;
    font-weight: 700;
}

#ultimo-paso .up-cta-btn {
    border-radius: 0.65rem;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
}

#ultimo-paso .up-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
    margin-top: 1.25rem;
}

#ultimo-paso .up-social__avatars {
    display: flex;
    align-items: center;
}

#ultimo-paso .up-social__avatars img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -0.45rem;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#ultimo-paso .up-social__avatars img:first-child {
    margin-left: 0;
}

#ultimo-paso .up-social__stars {
    color: #22C55E;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

#ultimo-paso .up-social__label {
    color: #6b7280;
    font-size: 0.88rem;
    margin: 0;
}

#ultimo-paso .up-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 3rem;
}

#ultimo-paso .up-visual__glow {
    position: absolute;
    width: min(90%, 400px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.2) 0%, rgba(140, 198, 63, 0.05) 55%, transparent 70%);
    z-index: 0;
}

#ultimo-paso .up-visual__dots {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 6rem;
    background-image: radial-gradient(circle, #d1d5db 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.55;
    z-index: 0;
}

#ultimo-paso .up-visual__sparkle {
    position: absolute;
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

#ultimo-paso .up-visual__sparkle--1 { top: 16%; right: 18%; color: #8CC63F; }
#ultimo-paso .up-visual__sparkle--2 { bottom: 28%; left: 8%; color: #3D3B8E; font-size: 0.85rem; }

#ultimo-paso .up-phone {
    position: relative;
    z-index: 1;
    transform: rotate(-3deg);
}

#ultimo-paso .up-phone__screen {
    font-size: 0.52rem;
}

#ultimo-paso .up-phone__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.75rem 0.35rem 0.5rem;
    overflow: hidden;
}

#ultimo-paso .up-phone__screen .basculito-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: 0.1rem;
    width: 100%;
    margin-bottom: 0.55rem;
    overflow: visible;
}

#ultimo-paso .up-phone__screen .basculito-row__item {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
    transition: filter 0.2s ease, opacity 0.2s ease, flex-grow 0.35s ease;
}

#ultimo-paso .up-phone__screen .basculito-row__item--current {
    z-index: 2;
    flex-grow: 1.45;
}

#ultimo-paso .up-phone__screen .basculito-row__item--current .basculito-row__img {
    transform: scale(1.22);
    transform-origin: bottom center;
    max-height: 2.85rem;
}

#ultimo-paso .up-phone__screen .basculito-row__item--current .basculito-row__glow {
    transform: translateX(-50%) scale(1.12);
    opacity: calc(var(--basculito-glow-opacity, 0.65) * 1.15);
}

#ultimo-paso .up-phone__screen .basculito-row__aura {
    position: absolute;
    left: 50%;
    bottom: -5%;
    transform: translateX(-50%);
    width: 110%;
    height: 95%;
    pointer-events: none;
    z-index: 2;
    border-radius: 50%;
    background: radial-gradient(
        ellipse 85% 80% at 50% 72%,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 236, 153, 0.5) 18%,
        rgba(255, 200, 60, 0.35) 38%,
        rgba(255, 160, 40, 0.12) 55%,
        transparent 68%
    );
    filter: blur(var(--saiyan-blur, 6px));
    opacity: var(--saiyan-aura-op, 0.72);
    animation: up-basculito-saiyan-pulse var(--saiyan-pulse-dur, 1.35s) ease-in-out infinite;
}

#ultimo-paso .up-phone__screen .basculito-row__aura--outer {
    z-index: 1;
    width: 130%;
    height: 115%;
    bottom: -12%;
    background: radial-gradient(
        ellipse 90% 85% at 50% 75%,
        rgba(255, 248, 220, 0.35) 0%,
        rgba(255, 193, 7, 0.18) 40%,
        transparent 62%
    );
    filter: blur(var(--saiyan-outer-blur, 9px));
    opacity: var(--saiyan-outer-op, 0.5);
    animation: up-basculito-saiyan-pulse-outer var(--saiyan-pulse-dur-outer, 1.8s) ease-in-out infinite;
    animation-delay: -0.4s;
}

#ultimo-paso .up-phone__screen .basculito-row__item--current.basculito-row__item--level-6 {
    --saiyan-blur: 8px;
    --saiyan-outer-blur: 11px;
    --saiyan-aura-op: 0.98;
    --saiyan-outer-op: 0.72;
    --saiyan-pulse-dur: 0.72s;
    --saiyan-pulse-dur-outer: 0.95s;
    --spark-size: 0.38rem;
    --spark-glow: 5px;
    --spark-twinkle: 0.62s;
}

#ultimo-paso .up-phone__screen .basculito-row__sparks {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: -35%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

#ultimo-paso .up-phone__screen .basculito-row__spark-orbit {
    position: absolute;
    left: 50%;
    bottom: 8%;
    width: 0;
    height: 38px;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(var(--spark-rot, 0deg));
    animation: up-basculito-spark-float 1.75s ease-in-out infinite;
    animation-delay: var(--spark-delay, 0s);
}

#ultimo-paso .up-phone__screen .basculito-row__spark {
    position: absolute;
    left: 0;
    bottom: 100%;
    transform: translateX(-50%);
    font-size: var(--spark-size, 0.32rem);
    line-height: 1;
    color: #fffef5;
    filter: drop-shadow(0 0 var(--spark-glow, 4px) rgba(255, 215, 80, 0.95))
        drop-shadow(0 0 calc(var(--spark-glow, 4px) * 0.6) rgba(255, 255, 255, 0.9));
    animation: up-basculito-spark-twinkle var(--spark-twinkle, 1.05s) ease-in-out infinite;
    animation-delay: inherit;
}

#ultimo-paso .up-phone__screen .basculito-row__item--inactive {
    filter: grayscale(1);
    opacity: 0.42;
}

#ultimo-paso .up-phone__screen .basculito-row__item--inactive .basculito-row__glow {
    background: radial-gradient(
        ellipse 100% 100% at 50% 75%,
        rgba(120, 125, 135, 0.2) 0%,
        rgba(120, 125, 135, 0.06) 50%,
        transparent 70%
    );
    opacity: calc(var(--basculito-glow-opacity, 0.65) * 0.35);
}

#ultimo-paso .up-phone__screen .basculito-row__glow {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: var(--basculito-glow-w, 70%);
    height: var(--basculito-glow-h, 55%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(
        ellipse 100% 100% at 50% 75%,
        var(--basculito-glow-inner, rgba(101, 163, 13, 0.55)) 0%,
        var(--basculito-glow-mid, rgba(101, 163, 13, 0.22)) 45%,
        transparent 72%
    );
    filter: blur(var(--basculito-glow-blur, 5px));
    opacity: var(--basculito-glow-opacity, 0.65);
}

#ultimo-paso .up-phone__screen .basculito-row__item--level-1 { --basculito-glow-w: 58%; --basculito-glow-h: 42%; --basculito-glow-blur: 3px; --basculito-glow-opacity: 0.38; }
#ultimo-paso .up-phone__screen .basculito-row__item--level-1 .basculito-row__glow { --basculito-glow-inner: rgba(101, 163, 13, 0.35); --basculito-glow-mid: rgba(101, 163, 13, 0.12); }
#ultimo-paso .up-phone__screen .basculito-row__item--level-2 { --basculito-glow-w: 64%; --basculito-glow-h: 46%; --basculito-glow-blur: 4px; --basculito-glow-opacity: 0.48; }
#ultimo-paso .up-phone__screen .basculito-row__item--level-2 .basculito-row__glow { --basculito-glow-inner: rgba(101, 163, 13, 0.42); --basculito-glow-mid: rgba(101, 163, 13, 0.16); }
#ultimo-paso .up-phone__screen .basculito-row__item--level-3 { --basculito-glow-w: 72%; --basculito-glow-h: 52%; --basculito-glow-blur: 4px; --basculito-glow-opacity: 0.58; }
#ultimo-paso .up-phone__screen .basculito-row__item--level-3 .basculito-row__glow { --basculito-glow-inner: rgba(101, 163, 13, 0.5); --basculito-glow-mid: rgba(101, 163, 13, 0.2); }
#ultimo-paso .up-phone__screen .basculito-row__item--level-4 { --basculito-glow-w: 80%; --basculito-glow-h: 58%; --basculito-glow-blur: 5px; --basculito-glow-opacity: 0.68; }
#ultimo-paso .up-phone__screen .basculito-row__item--level-4 .basculito-row__glow { --basculito-glow-inner: rgba(101, 163, 13, 0.58); --basculito-glow-mid: rgba(101, 163, 13, 0.24); }
#ultimo-paso .up-phone__screen .basculito-row__item--level-5 { --basculito-glow-w: 92%; --basculito-glow-h: 66%; --basculito-glow-blur: 6px; --basculito-glow-opacity: 0.82; }
#ultimo-paso .up-phone__screen .basculito-row__item--level-5 .basculito-row__glow { --basculito-glow-inner: rgba(101, 163, 13, 0.72); --basculito-glow-mid: rgba(101, 163, 13, 0.3); }
#ultimo-paso .up-phone__screen .basculito-row__item--level-6 { --basculito-glow-w: 98%; --basculito-glow-h: 72%; --basculito-glow-blur: 7px; --basculito-glow-opacity: 0.9; }
#ultimo-paso .up-phone__screen .basculito-row__item--level-6 .basculito-row__glow {
    --basculito-glow-inner: rgba(101, 163, 13, 0.78);
    --basculito-glow-mid: rgba(101, 163, 13, 0.34);
}

#ultimo-paso .up-phone__screen .basculito-row__img {
    position: relative;
    z-index: 4;
    display: block;
    width: 100%;
    height: auto;
    max-height: 1.85rem;
    object-fit: contain;
    object-position: bottom center;
}

#ultimo-paso .up-phone__screen .up-track-streak-count {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bs-primary, #2a2068);
    margin-bottom: 0.4rem;
}

#ultimo-paso .up-phone__screen .up-track-streak-check {
    font-size: 1.65rem;
    color: #22C55E;
    line-height: 1;
}

#ultimo-paso .up-phone__screen .up-track-streak-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #1A2B49;
    margin-bottom: 0.2rem;
}

#ultimo-paso .up-phone__screen .up-track-streak-sub {
    font-size: 0.58rem;
    color: #6c757d;
    line-height: 1.35;
    padding: 0 0.25rem;
}

@keyframes up-basculito-saiyan-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(0.9);
        opacity: calc(var(--saiyan-aura-op, 0.72) * 0.85);
    }
    50% {
        transform: translateX(-50%) scale(1.08);
        opacity: var(--saiyan-aura-op, 0.72);
    }
}

@keyframes up-basculito-saiyan-pulse-outer {
    0%, 100% {
        transform: translateX(-50%) scale(0.94);
        opacity: calc(var(--saiyan-outer-op, 0.5) * 0.75);
    }
    50% {
        transform: translateX(-50%) scale(1.12);
        opacity: var(--saiyan-outer-op, 0.5);
    }
}

@keyframes up-basculito-spark-float {
    0%, 100% {
        transform: translateX(-50%) rotate(var(--spark-rot, 0deg)) translateY(0);
    }
    50% {
        transform: translateX(-50%) rotate(calc(var(--spark-rot, 0deg) + 12deg)) translateY(-6px);
    }
}

@keyframes up-basculito-spark-twinkle {
    0%, 100% { opacity: 0.35; transform: translateX(-50%) scale(0.75); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

#ultimo-paso .up-trustbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1.25rem;
    background: #f5f6fa;
    border-radius: 0.85rem;
    padding: 1rem 1.25rem;
    margin-top: 2.5rem;
    color: #5a6478;
    font-size: 0.88rem;
}

#ultimo-paso .up-trustbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
}

#ultimo-paso .up-trustbar__item i {
    color: #3D3B8E;
    font-size: 1rem;
}

#ultimo-paso .up-trustbar__item i.text-success {
    color: #22C55E;
}

#ultimo-paso .up-trustbar__dot {
    color: #d1d5db;
}

@media (max-width: 991.98px) {
    #ultimo-paso .up-visual {
        min-height: 400px;
        margin-top: 1.5rem;
    }

    #ultimo-paso .up-phone {
        transform: none;
    }

    #ultimo-paso .up-visual__dots {
        display: none;
    }

}

#exito {
    font-size: 1.05rem;
    line-height: 1.6;
}

#exito .exito-headline {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.15;
}

#exito .exito-intro {
    color: #5a6478;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

#exito .exito-section-title {
    color: #1A2B49;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

#exito .exito-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem 2.75rem;
    max-width: 980px;
    margin: 0 auto 2.5rem;
}

#exito .exito-video-card {
    flex: 1 1 280px;
    max-width: 460px;
}

@media (prefers-reduced-motion: no-preference) {
    #exito .exito-video-card--tilt-left {
        transform: rotate(-2deg);
    }

    #exito .exito-video-card--tilt-right {
        transform: rotate(2deg);
    }
}

#exito .exito-video-card.is-playing,
#exito .exito-video-card--direct {
    transform: none !important;
}

#exito .exito-video-card--direct .exito-video-card__iframe {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

#exito .exito-video-card__media {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 43, 73, 0.14), 0 4px 14px rgba(42, 32, 104, 0.08);
    background: #1a1a2e;
}

#exito .exito-video-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#exito .exito-video-card__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

#exito .exito-video-card.is-playing .exito-video-card__thumb {
    display: none;
}

#exito .exito-video-card.is-playing .exito-video-card__iframe {
    opacity: 1;
    pointer-events: auto;
}

#exito .exito-video-card.is-playing .exito-video-card__chrome {
    display: none;
}

#exito .exito-video-card__chrome {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#exito .exito-video-card__chrome > * {
    pointer-events: auto;
}

#exito .exito-video-card__meta {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

#exito .exito-video-card__avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #3D3B8E;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#exito .exito-video-card__meta-title {
    font-weight: 700;
    font-size: inherit;
    line-height: 1.2;
    margin: 0;
}

#exito .exito-video-card__meta-result {
    font-size: inherit;
    opacity: 0.92;
    margin: 0;
}

#exito .exito-video-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #3D3B8E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    padding-left: 0.2rem;
    z-index: 2;
}

#exito .exito-video-card__link-icon {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    z-index: 2;
}

#exito .exito-video-card__youtube {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.55rem;
    border-radius: 0.35rem;
    text-decoration: none;
    z-index: 2;
}

#exito .exito-video-card__youtube:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
}

#exito .exito-video-card__placeholder {
    min-height: 100%;
    background: linear-gradient(145deg, #f5f5f8 0%, #eef0f5 100%);
    border: 2px dashed rgba(61, 59, 142, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: #6b7280;
    text-align: center;
}

#exito .exito-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #f8faff;
    border: 1px solid #e4e8f0;
    border-radius: 1rem;
    padding: 1.35rem 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

#exito .exito-cta__icon {
    position: relative;
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: #ebe8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D3B8E;
    font-size: 1.5rem;
}

#exito .exito-cta__icon-badge {
    position: absolute;
    right: -0.1rem;
    bottom: -0.1rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #22C55E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    border: 2px solid #f8faff;
}

#exito .exito-cta__body {
    flex: 1;
    min-width: 0;
}

#exito .exito-cta__title {
    color: #1A2B49;
    font-weight: 700;
    margin: 0 0 0.2rem;
}

#exito .exito-cta__desc {
    color: #5a6478;
    margin: 0;
}

#exito .exito-cta__btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-weight: 600;
    border-radius: 0.65rem;
    padding: 0.75rem 1.25rem;
}

@media (max-width: 991.98px) {
    #exito .exito-video-card--tilt-left,
    #exito .exito-video-card--tilt-right {
        transform: none;
    }

    #exito .exito-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    #exito .exito-cta__btn {
        width: 100%;
    }
}

.tctk-whatsapp-float {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tctk-whatsapp-float:hover {
    color: #fff;
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.tctk-whatsapp-float svg {
    flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .tctk-whatsapp-float:not(:hover) {
        animation: tctkWhatsappBob 2.8s ease-in-out infinite;
    }
}

@keyframes tctkWhatsappBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}


/* ==========================================================================
   Nutriólogo page section styles
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.20;
    text-wrap: balance;
}

.badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 0.13em;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    #main-container .text-success {
        color: transparent !important;
        background: linear-gradient(90deg, #8CC63F, #22C55E, #8CC63F);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        text-shadow: 0 8px 28px rgba(34, 197, 94, 0.18);
    }
}

@keyframes tctkShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: no-preference) {
    #main-container .text-success {
        animation: tctkShine 3.8s ease-in-out infinite;
    }
}

.nutri-step-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #f5f5f8;
    border: 2.5px solid var(--bs-primary, #2a2068);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.3rem;
    margin-bottom: 28px;
    margin-top: 18px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.nutri-step-item {
    position: relative;
    z-index: 2;
    width: 210px;
    min-width: 160px;
}

.nutri-mobile-separator {
    height: 32px;
}

@media (max-width: 991.98px) {
    .nutri-steps-flex {
        flex-direction: column !important;
        gap: 0 !important;
        align-items: stretch !important;
        position: static !important;
    }

    .nutri-step-item {
        width: 100% !important;
        min-width: unset !important;
        max-width: 370px;
        margin: 0 auto 36px auto !important;
    }

    .nutri-step-circle {
        width: 92px !important;
        height: 92px !important;
        font-size: 2.3rem !important;
        margin-top: 0 !important;
        margin-bottom: 21px !important;
    }

    .nutri-mobile-separator {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .nutri-mobile-separator {
        display: none !important;
    }
}

.hero-app-placeholder {
    width: 100%;
    max-width: 520px;
    min-height: 340px;
    border-radius: 1.2rem;
    background: #f0f2f5;
    border: 2px dashed #c8ccd4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1rem;
}

#hero .testimonio-embed-slot {
    border: 2px dashed rgba(61, 59, 142, 0.22);
    border-radius: 1rem;
    min-height: 200px;
    background: linear-gradient(145deg, #f5f5f8 0%, #eef0f5 100%);
}

#hero .testimonio-video-shell {
    max-width: 100%;
}

#hero .testimonio-video-frame {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 43, 73, 0.12), 0 4px 14px rgba(42, 32, 104, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
    #hero .testimonio-tilt-2 {
        transform: rotate(-2deg);
        transform-origin: center center;
    }
}

.benefit-card {
    border-radius: 1.25rem;
    border: 1px solid #e9ecef;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
    box-shadow: 0 8px 32px rgba(42, 32, 104, 0.10);
    transform: translateY(-2px);
}

.tctk-whatsapp-float {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tctk-whatsapp-float:hover {
    color: #fff;
    transform: scale(1.07);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.tctk-whatsapp-float svg {
    flex-shrink: 0;
}

@media (prefers-reduced-motion: no-preference) {
    .tctk-whatsapp-float:not(:hover) {
        animation: tctkWhatsappBob 2.8s ease-in-out infinite;
    }
}

@keyframes tctkWhatsappBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
