:root {
  --v360-deep: #020807;
  --v360-ink: #061111;
  --v360-navy: #0a1730;
  --v360-teal: #07342f;
  --v360-surface: #0a201f;
  --v360-surface-2: #0b2926;
  --v360-green: #0bdd28;
  --v360-white: #ffffff;
  --v360-mist: #a7d3aa;
  --v360-light: #d4ead8;
  --v360-copy: #a7d3aa;
  --v360-line: rgba(181, 218, 210, 0.17);
  --v360-font: "Montserrat", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --v360-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --v360-step--1: clamp(0.88rem, 0.84rem + 0.18vw, 0.98rem);
  --v360-step-0: clamp(1rem, 0.96rem + 0.22vw, 1.12rem);
  --v360-step-1: clamp(1.24rem, 1.1rem + 0.65vw, 1.6rem);
  --v360-step-2: clamp(1.65rem, 1.3rem + 1.45vw, 2.45rem);
  --v360-step-3: clamp(2.35rem, 1.65rem + 3vw, 4.7rem);
  --v360-space-xs: clamp(0.55rem, 0.46rem + 0.35vw, 0.8rem);
  --v360-space-s: clamp(0.9rem, 0.7rem + 0.7vw, 1.35rem);
  --v360-space-m: clamp(1.4rem, 1rem + 1.2vw, 2.2rem);
  --v360-space-l: clamp(2.2rem, 1.5rem + 2.8vw, 4.4rem);
  --v360-space-xl: clamp(3.7rem, 2.3rem + 5.5vw, 7.5rem);
  --v360-radius: 18px;
  --v360-radius-small: 10px;
  --v360-content: min(1180px, calc(100vw - 40px));
  --v360-reading: min(760px, calc(100vw - 40px));
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(11, 221, 40, 0.1), transparent 24rem),
    var(--v360-deep);
  color: var(--v360-white);
  font-family: var(--v360-font);
  font-size: var(--v360-step-0);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--v360-font);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--v360-green) !important;
  outline-offset: 4px;
}

::selection {
  background: var(--v360-green);
  color: var(--v360-deep);
}

.v360-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(11, 221, 40, 0.055), transparent 25rem),
    linear-gradient(180deg, var(--v360-deep), var(--v360-ink));
  color: var(--v360-white);
  padding: var(--v360-space-xl) 0;
  position: relative;
}

.v360-section--light {
  background:
    radial-gradient(circle at 12% 50%, rgba(11, 221, 40, 0.08), transparent 26rem),
    linear-gradient(135deg, #061313 0%, #071d1b 48%, #061318 100%);
  color: var(--v360-white);
}

.v360-section--dark {
  background:
    radial-gradient(circle at 86% 24%, rgba(20, 72, 91, 0.26), transparent 27rem),
    linear-gradient(145deg, #020807, #061116 58%, #071a18);
  color: var(--v360-white);
}

.v360-section + .v360-section {
  border-top: 1px solid rgba(181, 218, 210, 0.07);
}

.v360-row {
  align-items: stretch;
  gap: var(--v360-space-m);
  justify-content: center;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: var(--v360-content) !important;
  width: var(--v360-content) !important;
}

.v360-row--three,
.v360-row--four,
.v360-row--cards,
.v360-row--profiles,
.v360-row--services {
  justify-content: center !important;
}

.v360-section--intro,
.v360-section--button,
.v360-admin-note {
  padding-bottom: var(--v360-space-s);
}

.v360-section--intro + .v360-section,
.v360-section--button + .v360-section,
.v360-admin-note {
  padding-top: var(--v360-space-s);
}

.v360-heading h1,
.v360-heading h2,
.v360-heading h3,
.v360-hero__title h1,
.v360-cta__title h2,
.v360-card__title h3,
.v360-profile__name h3 {
  color: inherit;
  font-family: var(--v360-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.01;
  padding: 0;
}

.v360-heading h1,
.v360-hero__title h1 {
  font-size: var(--v360-step-3);
  max-width: 15ch;
}

.v360-heading h2,
.v360-cta__title h2 {
  font-size: var(--v360-step-2);
  max-width: 22ch;
}

.v360-heading h3,
.v360-card__title h3,
.v360-profile__name h3 {
  font-size: var(--v360-step-1);
}

.v360-text,
.v360-lead,
.v360-hero__lead,
.v360-profile__bio,
.v360-card__text {
  color: var(--v360-copy) !important;
  font-size: var(--v360-step-0);
}

.v360-text p,
.v360-lead p,
.v360-hero__lead p,
.v360-profile__bio p,
.v360-card__text p {
  padding-bottom: 0.75em;
}

.v360-lead,
.v360-hero__lead {
  max-width: 54ch;
}

.v360-hero__lead {
  color: var(--v360-copy) !important;
  font-size: var(--v360-step-1);
}

.v360-eyebrow p {
  color: var(--v360-green);
  font-size: var(--v360-step--1);
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-bottom: 0;
  text-transform: uppercase;
}

.v360-button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--v360-space-s);
}

.v360-button.et_pb_button_module_wrapper,
.v360-button.et_pb_module,
.v360-button .et_pb_button_module_wrapper {
  align-self: flex-start;
  display: inline-block !important;
  margin: 0 !important;
  max-width: 100%;
  width: auto !important;
}

.v360-button a.et_pb_button,
a.et_pb_button.v360-button,
.v360-contact-form button.et_pb_contact_submit {
  align-items: center;
  background: linear-gradient(135deg, var(--v360-green), #08ba67) !important;
  border: 1px solid rgba(120, 255, 148, 0.78) !important;
  border-radius: 8px !important;
  color: var(--v360-deep) !important;
  display: inline-flex;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  justify-content: center;
  line-height: 1.2 !important;
  box-shadow: 0 10px 28px rgba(11, 221, 40, 0.14), inset 0 1px rgba(255, 255, 255, 0.22);
  height: auto !important;
  min-height: 50px;
  max-width: 100%;
  padding: 0.62rem 0.68rem 0.62rem 1.12rem !important;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
  width: auto !important;
}

.v360-button a.et_pb_button::after,
a.et_pb_button.v360-button::after,
.v360-contact-form button.et_pb_contact_submit::after {
  align-items: center;
  background: rgba(2, 8, 7, 0.94);
  border-radius: 5px;
  color: var(--v360-white);
  content: "↗" !important;
  display: inline-flex !important;
  font-family: var(--v360-font) !important;
  font-size: 0.98rem !important;
  flex: 0 0 30px;
  height: 30px;
  justify-content: center;
  margin: 0 0 0 0.68rem !important;
  opacity: 1 !important;
  position: static !important;
  transform: none !important;
  width: 30px;
}

.v360-button a.et_pb_button:hover,
a.et_pb_button.v360-button:hover,
.v360-contact-form button.et_pb_contact_submit:hover {
  background: linear-gradient(135deg, #30ee49, #0bd080) !important;
  border-color: #62f176 !important;
  box-shadow: 0 16px 42px rgba(11, 221, 40, 0.26), inset 0 1px rgba(255, 255, 255, 0.3);
  color: var(--v360-deep) !important;
  transform: translateY(-2px);
}

.v360-button--secondary a.et_pb_button,
a.et_pb_button.v360-button--secondary {
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  color: var(--v360-white) !important;
}

.v360-button--secondary a.et_pb_button::after,
a.et_pb_button.v360-button--secondary::after {
  background: var(--v360-white);
  color: var(--v360-deep);
}

.v360-button--secondary a.et_pb_button:hover,
a.et_pb_button.v360-button--secondary:hover {
  background: rgba(11, 221, 40, 0.1) !important;
  border-color: rgba(11, 221, 40, 0.7) !important;
}

/* CTAs seleccionados que deben verse como botones principales. */
.v360-button--forced-primary a.et_pb_button,
a.et_pb_button.v360-button--forced-primary {
  background: linear-gradient(135deg, var(--v360-green), #08ba67) !important;
  border-color: rgba(120, 255, 148, 0.78) !important;
  box-shadow: 0 10px 28px rgba(11, 221, 40, 0.14), inset 0 1px rgba(255, 255, 255, 0.22) !important;
  color: var(--v360-deep) !important;
}

.v360-button--forced-primary a.et_pb_button::after,
a.et_pb_button.v360-button--forced-primary::after {
  background: rgba(2, 8, 7, 0.94) !important;
  color: var(--v360-white) !important;
}

.v360-button--forced-primary a.et_pb_button:hover,
a.et_pb_button.v360-button--forced-primary:hover {
  background: linear-gradient(135deg, #30ee49, #0bd080) !important;
  border-color: #62f176 !important;
}

.v360-button--text a.et_pb_button,
a.et_pb_button.v360-button--text {
  background: transparent !important;
  border: 0 !important;
  color: inherit !important;
  min-height: 44px;
  padding-inline: 0 !important;
  text-decoration: none;
}

.v360-button--text a.et_pb_button::after,
a.et_pb_button.v360-button--text::after {
  background: rgba(11, 221, 40, 0.13);
  color: var(--v360-green);
}

.v360-card,
.v360-route-card,
.v360-profile,
.v360-service-panel {
  background: linear-gradient(145deg, rgba(14, 48, 45, 0.92), rgba(7, 24, 26, 0.96));
  border: 1px solid var(--v360-line);
  border-radius: var(--v360-radius);
  color: var(--v360-white);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
  padding: var(--v360-space-m);
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.v360-card:hover,
.v360-route-card:hover,
.v360-profile:hover,
.v360-service-panel:hover {
  border-color: rgba(11, 221, 40, 0.45);
  transform: translateY(-3px);
}

.v360-section--dark .v360-card,
.v360-section--dark .v360-profile,
.v360-section--dark .v360-service-panel {
  background: linear-gradient(145deg, rgba(10, 30, 41, 0.92), rgba(7, 27, 25, 0.95));
  border-color: var(--v360-line);
  color: var(--v360-white);
}

.v360-card--compact {
  min-height: 210px;
}

.v360-card__number p {
  color: var(--v360-green);
  font-size: 1.2rem;
  font-weight: 850;
  padding-bottom: 0.7rem;
}

.v360-route-card {
  min-height: clamp(310px, 35vw, 450px);
  justify-content: flex-end;
  overflow: hidden;
}

.v360-route-card::before {
  background: radial-gradient(circle, rgba(11, 221, 40, 0.9), rgba(11, 221, 40, 0));
  border-radius: 50%;
  content: "";
  height: 180px;
  opacity: 0.18;
  position: absolute;
  right: -55px;
  top: -70px;
  width: 180px;
}

.v360-route-card--org {
  background: linear-gradient(145deg, #0b2144, #092d2c);
  color: var(--v360-white);
}

.v360-route-card--pro {
  background: linear-gradient(145deg, #0d3430, #071519);
  color: var(--v360-white);
}

.v360-hero,
.v360-inner-hero,
.v360-final-cta,
.v360-news {
  background:
    radial-gradient(circle at 80% 25%, rgba(11, 221, 40, 0.12), transparent 24rem),
    linear-gradient(135deg, #020807, #071c1a 62%, #061322);
  color: var(--v360-white);
}

.v360-inner-hero {
  background:
    radial-gradient(circle at 75% 28%, rgba(11, 221, 40, 0.16), transparent 24rem),
    linear-gradient(120deg, #020807, #09231f 58%, #071426);
}

.v360-final-cta {
  background:
    radial-gradient(circle at 88% 10%, rgba(11, 221, 40, 0.25), transparent 22rem),
    linear-gradient(125deg, #071725, #092d29 54%, #04100f);
}

.v360-hero {
  background:
    radial-gradient(circle at 76% 42%, rgba(11, 221, 40, 0.22), transparent 27rem),
    radial-gradient(circle at 5% 15%, rgba(15, 82, 76, 0.32), transparent 30rem),
    linear-gradient(115deg, #020807 0%, #061b18 50%, #030b13 100%);
  min-height: min(860px, 92svh);
  overflow: hidden;
  padding-top: clamp(6rem, 12vh, 10rem);
}

.v360-row--hero {
  align-items: center;
}

.v360-hero__speaker {
  -webkit-mask-image: radial-gradient(ellipse 96% 92% at 58% 48%, #000 54%, rgba(0, 0, 0, 0.82) 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 96% 92% at 58% 48%, #000 54%, rgba(0, 0, 0, 0.82) 70%, transparent 100%);
  isolation: isolate;
  margin: clamp(-2rem, -3vw, -0.8rem) -10vw clamp(-5rem, -6vw, -2rem) -14%;
  overflow: hidden;
  position: relative;
}

.v360-hero__speaker::after {
  background:
    linear-gradient(90deg, #020807 0%, transparent 24% 84%, #020807 100%),
    linear-gradient(180deg, #020807 0%, transparent 13% 78%, #020807 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.v360-hero__speaker img {
  display: block;
  height: min(760px, 78svh);
  max-width: none;
  mix-blend-mode: lighten;
  object-fit: cover;
  object-position: 65% 42%;
  width: 132%;
}

body.home .v360-section--dark:has(.v360-row--four:not(.v360-row--cards)) {
  background:
    linear-gradient(135deg, rgba(2, 8, 7, 0.42), rgba(4, 20, 19, 0.6)),
    url("../images/audience-green-v2-1.webp") center / cover no-repeat;
}

body.home .v360-section--dark:has(.v360-row--four:not(.v360-row--cards)) .v360-card {
  background: linear-gradient(145deg, rgba(8, 29, 30, 0.9), rgba(5, 18, 19, 0.94));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.v360-trust {
  background: linear-gradient(90deg, #071519, #0a2925 48%, #081524);
  border-block: 1px solid var(--v360-line);
  padding-block: var(--v360-space-m);
}

.v360-stat p {
  color: var(--v360-mist);
  font-size: var(--v360-step--1);
  line-height: 1.35;
  padding: 0;
}

.v360-stat strong {
  color: var(--v360-white);
  font-size: var(--v360-step-1);
}

.v360-profile__image img {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--v360-radius) - 5px);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.v360-bio .v360-row {
  align-items: center;
}

.v360-profile__bio p + p {
  margin-top: 0.35rem;
}

.v360-news__logo img,
.v360-header__logo img,
.v360-footer__logo img {
  height: auto;
  object-fit: contain;
  width: 100%;
}

.v360-news__logo img {
  max-width: 280px;
}

.v360-placeholder-note {
  background: rgba(11, 221, 40, 0.09);
  border-left: 4px solid var(--v360-green);
  border-radius: 0 var(--v360-radius-small) var(--v360-radius-small) 0;
  color: inherit;
  padding: 1rem 1.2rem;
}

.v360-placeholder-note p {
  padding: 0;
}

.v360-header {
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background:
    radial-gradient(circle at 20% -40%, rgba(11, 221, 40, 0.3), transparent 45%),
    linear-gradient(110deg, #020807 0%, #06241f 55%, #0a2140 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32), 0 10px 36px rgba(11, 221, 40, 0.25) !important;
  color: var(--v360-white);
  min-height: 0 !important;
  padding: 0.38rem 0 !important;
  position: relative;
  z-index: 9999;
}

.v360-header__row {
  align-items: center;
  min-height: 58px;
  padding: 0 !important;
}

.v360-header__logo img {
  max-height: 46px;
  max-width: 196px;
}

.v360-header__home-link {
  align-items: center;
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.v360-header .et_pb_module,
.v360-header .et_pb_image,
.v360-header .et_pb_text,
.v360-header .et_pb_button_module_wrapper {
  margin-bottom: 0 !important;
}

.v360-header__nav p {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  justify-content: flex-end;
  padding: 0;
}

.v360-header__nav a {
  color: var(--v360-white);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.v360-header__nav a:last-child {
  align-items: center;
  background: linear-gradient(135deg, var(--v360-green), #08ba67);
  border: 1px solid rgba(120, 255, 148, 0.78);
  border-radius: 7px;
  color: var(--v360-deep);
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
}

.v360-header__nav a:hover {
  color: var(--v360-green);
}

.v360-header__nav a:last-child:hover {
  background: #31ed4a;
  color: var(--v360-deep);
}

.v360-menu-toggle {
  display: none !important;
}

.v360-header .v360-header__cta {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  width: 0 !important;
}

@media (min-width: 981px) {
  .v360-header__row {
    display: grid !important;
    grid-template-columns: minmax(190px, 0.8fr) auto;
  }

  .v360-header__brand,
  .v360-header__nav-column {
    width: auto !important;
  }

  .v360-header__actions,
  .v360-header__cta {
    display: none !important;
  }
}

.v360-footer {
  background: var(--v360-deep);
  border-top: 1px solid var(--v360-line);
  color: var(--v360-white);
  padding: var(--v360-space-l) 0 var(--v360-space-m);
}

.v360-footer__logo img {
  max-width: 260px;
}

.v360-footer__tagline,
.v360-footer__legal,
.v360-stat,
.v360-blog-grid .post-meta,
.v360-blog-grid .post-content,
.v360-blog-grid .post-content p {
  color: var(--v360-copy) !important;
}

.v360-socials {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  margin-top: 0.9rem;
}

.v360-socials a {
  align-items: center;
  background: rgba(11, 221, 40, 0.08);
  border: 1px solid rgba(167, 211, 170, 0.26);
  border-radius: 7px;
  color: var(--v360-copy);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 42px;
}

.v360-socials a:hover {
  background: var(--v360-green);
  border-color: var(--v360-green);
  color: var(--v360-deep);
  transform: translateY(-2px);
}

.v360-socials svg {
  fill: currentColor;
  height: 19px;
  width: 19px;
}

.v360-socials--profile {
  margin: 0.55rem 0 0.95rem;
}

.v360-socials--contact {
  margin-bottom: var(--v360-space-s);
}

/* En Nosotros, ambos perfiles mantienen foto a la izquierda y contenido a la derecha. */
.v360-row--bio-reverse {
  flex-direction: row-reverse !important;
}

.v360-footer__heading h3 {
  color: var(--v360-green);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.v360-footer__links a {
  color: var(--v360-white);
  display: inline-block;
  margin-block: 0.28rem;
}

.v360-footer__bottom {
  border-top: 1px solid var(--v360-line);
  margin-top: var(--v360-space-m);
  padding-top: var(--v360-space-s);
}

.v360-footer__legal p {
  color: var(--v360-mist);
  font-size: 0.85rem;
  padding: 0;
}

.v360-topic-chips p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
}

.v360-topic-chips a {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--v360-line);
  border-radius: 999px;
  color: var(--v360-white);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 750;
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
}

.v360-topic-chips a:hover {
  background: var(--v360-green);
  border-color: var(--v360-green);
  color: var(--v360-deep);
}

.v360-search input.et_pb_s,
.v360-search input[type="search"] {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid var(--v360-line) !important;
  border-radius: 999px !important;
  color: var(--v360-white) !important;
  min-height: 52px;
  padding-inline: 1rem !important;
}

.v360-search input::placeholder,
.v360-contact-form input::placeholder,
.v360-contact-form textarea::placeholder {
  color: var(--v360-mist) !important;
  opacity: 0.85;
}

.v360-blog-grid .et_pb_post,
.v360-blog-grid article {
  background: rgba(21, 42, 102, 0.38) !important;
  border: 1px solid var(--v360-line) !important;
  border-radius: var(--v360-radius) !important;
  color: var(--v360-white);
  overflow: hidden;
  padding: 1.1rem !important;
}

.v360-blog-grid .entry-title,
.v360-blog-grid .entry-title a,
.v360-blog-grid h2,
.v360-blog-grid h2 a {
  color: var(--v360-white) !important;
  font-family: var(--v360-display) !important;
  font-weight: 400 !important;
  font-size: var(--v360-step-1) !important;
  line-height: 1.15 !important;
}

.v360-blog-grid .post-meta,
.v360-blog-grid .post-meta a,
.v360-blog-grid .post-content,
.v360-blog-grid .post-content p {
  color: var(--v360-mist) !important;
}

.v360-blog-grid img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.v360-contact-form {
  background: linear-gradient(145deg, rgba(12, 45, 41, 0.94), rgba(5, 20, 24, 0.98));
  border: 1px solid var(--v360-line);
  border-radius: var(--v360-radius);
  color: var(--v360-white);
  padding: var(--v360-space-m);
}

.v360-contact-form input,
.v360-contact-form textarea,
.v360-contact-form select {
  background: rgba(255, 255, 255, 0.065) !important;
  border: 1px solid var(--v360-line) !important;
  border-radius: var(--v360-radius-small) !important;
  color: var(--v360-white) !important;
  font-size: 1rem !important;
  min-height: 52px;
}

.v360-contact-form textarea {
  min-height: 150px;
}

.v360-contact-form label {
  color: var(--v360-white) !important;
}

.v360-contact-form .et-pb-contact-message p {
  background: rgba(11, 221, 40, 0.12);
  border-left: 4px solid var(--v360-green);
  border-radius: var(--v360-radius-small);
  color: var(--v360-white);
  padding: 1rem;
}

.v360-faq .et_pb_accordion_item,
.v360-faq .et_pb_toggle {
  background: rgba(21, 42, 102, 0.36) !important;
  border: 1px solid var(--v360-line) !important;
  border-radius: var(--v360-radius-small) !important;
  color: var(--v360-white) !important;
  margin-bottom: 0.75rem;
}

.v360-faq .et_pb_toggle_title,
.v360-faq .et_pb_toggle_content {
  color: var(--v360-white) !important;
}

.v360-article .v360-row,
.v360-article-nav .v360-row,
.v360-post-hero .v360-row {
  max-width: var(--v360-reading) !important;
  width: var(--v360-reading) !important;
}

.v360-post-content {
  color: var(--v360-light);
}

.v360-post-content :where(p, ul, ol, blockquote) {
  font-size: var(--v360-step-0);
  margin-bottom: 1.15em;
}

.v360-post-content :where(h2, h3) {
  color: var(--v360-white);
  font-family: var(--v360-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-block: 1.35em 0.55em;
}

.v360-whatsapp-float {
  align-items: center;
  background: var(--v360-green);
  border: 2px solid var(--v360-deep);
  border-radius: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  color: var(--v360-deep);
  display: flex;
  font-size: 0.85rem;
  font-weight: 900;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 18px;
  text-decoration: none;
  width: 56px;
  z-index: 9998;
}

.v360-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.v360-reveal.is-visible,
.v360-no-motion .v360-reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root {
    --v360-content: min(100% - 32px, 760px);
    --v360-reading: min(100% - 32px, 720px);
  }

  .v360-section {
    padding-block: var(--v360-space-l);
  }

  .v360-row {
    flex-wrap: wrap !important;
  }

  .v360-row--bio-reverse {
    flex-direction: column-reverse !important;
  }

  .v360-row > .et_pb_column,
  .v360-row > [class*="et_pb_column"] {
    width: 100% !important;
  }

  .v360-row--trust > .et_pb_column,
  .v360-row--three > .et_pb_column,
  .v360-row--four > .et_pb_column {
    width: calc(50% - var(--v360-space-m) / 2) !important;
  }

  .v360-hero {
    min-height: auto;
    padding-top: var(--v360-space-xl);
  }

  .v360-hero__speaker {
    margin: -2rem -4vw -4rem 0;
  }

  .v360-hero__speaker img {
    height: min(680px, 70svh);
    object-position: 62% 42%;
    width: 110%;
  }

  .v360-header__row {
    display: grid !important;
    gap: 0.75rem !important;
    grid-template-columns: 1fr auto;
  }

  .v360-header__brand,
  .v360-header__actions {
    width: auto !important;
  }

  .v360-header__actions {
    align-items: center;
    display: flex;
    gap: 0.5rem;
  }

  .v360-menu-toggle {
    display: block !important;
    flex: 0 0 44px;
    height: 44px;
    width: 44px !important;
  }

  .v360-menu-toggle a.et_pb_button,
  a.et_pb_button.v360-menu-toggle {
    background: rgba(255, 255, 255, 0.055) !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    position: relative;
    width: 44px !important;
  }

  .v360-menu-toggle a.et_pb_button::before,
  a.et_pb_button.v360-menu-toggle::before {
    background: var(--v360-white);
    box-shadow: 0 -6px var(--v360-white), 0 6px var(--v360-white);
    content: "" !important;
    display: block !important;
    height: 2px;
    left: 50%;
    margin: 0 !important;
    opacity: 1 !important;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) !important;
    width: 20px;
  }

  .v360-menu-toggle a.et_pb_button::after,
  a.et_pb_button.v360-menu-toggle::after {
    display: none !important;
  }

  .v360-menu-toggle a.et_pb_button[aria-expanded="true"]::before,
  a.et_pb_button.v360-menu-toggle[aria-expanded="true"]::before {
    box-shadow: none;
    transform: translate(-50%, -50%) rotate(45deg) !important;
  }

  .v360-menu-toggle a.et_pb_button[aria-expanded="true"]::after,
  a.et_pb_button.v360-menu-toggle[aria-expanded="true"]::after {
    background: var(--v360-white);
    border: 0;
    border-radius: 0;
    content: "" !important;
    display: block !important;
    height: 2px;
    left: 50%;
    margin: 0 !important;
    opacity: 1 !important;
    position: absolute !important;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg) !important;
    width: 20px;
  }

  .v360-header__cta {
    display: none !important;
  }

  .v360-header__nav-column {
    display: none;
    grid-column: 1 / -1;
    width: 100% !important;
  }

  .v360-header.is-menu-open .v360-header__nav-column {
    display: block;
  }

  .v360-header__nav p {
    align-items: stretch;
    border-top: 1px solid var(--v360-line);
    flex-direction: column;
    gap: 0;
    padding-top: 0.5rem;
  }

  .v360-header__nav a {
    align-items: center;
    display: flex;
    min-height: 50px;
  }

  .v360-header__nav a:last-child {
    margin-top: 0.45rem;
    width: 100%;
  }
}

@media (max-width: 600px) {
  :root {
    --v360-content: calc(100% - 24px);
    --v360-reading: calc(100% - 24px);
    --v360-radius: 15px;
  }

  .v360-row {
    gap: var(--v360-space-s);
  }

  .v360-row--trust > .et_pb_column,
  .v360-row--three > .et_pb_column,
  .v360-row--four > .et_pb_column {
    width: 100% !important;
  }

  .v360-button-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .v360-button-row .v360-button,
  .v360-button-row .et_pb_button_module_wrapper,
  .v360-button-row a.et_pb_button {
    width: auto !important;
  }

  .v360-button a.et_pb_button,
  a.et_pb_button.v360-button {
    min-height: 50px;
    width: auto !important;
  }

  .v360-contact-form button.et_pb_contact_submit {
    min-height: 50px;
    width: 100%;
  }

  .v360-card,
  .v360-route-card,
  .v360-profile,
  .v360-service-panel,
  .v360-contact-form {
    padding: 1.15rem;
  }

  .v360-card--compact {
    min-height: 0;
  }

  .v360-route-card {
    min-height: 300px;
  }

  .v360-hero__speaker {
    margin: -1rem -12px -2.5rem;
  }

  .v360-hero__speaker::after {
    background: linear-gradient(180deg, var(--v360-deep), transparent 20% 72%, var(--v360-deep));
  }

  .v360-hero__speaker img {
    height: min(490px, 58svh);
    object-position: 66% 45%;
    width: 112%;
  }

  body.home .v360-section--dark:has(.v360-row--four:not(.v360-row--cards)) {
    background-position: center, 54% center;
  }

  .v360-blog-grid .et_pb_post,
  .v360-blog-grid article {
    margin-bottom: 0.8rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .v360-reveal { opacity: 1; transform: none; }
}

@media print {
  .v360-header,
  .v360-footer,
  .v360-whatsapp-float,
  .v360-button { display: none !important; }
  .v360-section { background: #fff !important; color: #000 !important; padding: 1rem 0; }
}
