@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,600&family=Plus+Jakarta+Sans:wght@400;500;700&display=swap");

:root {
  --page-overlay: rgba(255, 255, 255, 0.72);
  --brand-blue: #00587c;
  --brand-blue-dark: #01324b;
  --brand-copper: #9b5e36;
  --brand-purple: #642dc0;
  --text-dark: #2e3134;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background-image:
    linear-gradient(var(--page-overlay), var(--page-overlay)),
    url("assets/FONDO.png");
  background-repeat: repeat;
  background-size: 520px auto;
  color: var(--text-dark);
  font-family: Arial, Helvetica, sans-serif;
}

img,
video {
  max-width: 100%;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  opacity: 1;
  transition:
    opacity 650ms ease,
    visibility 650ms ease;
}

.site-preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.preloader-content {
  display: grid;
  width: min(18rem, 58vw);
  justify-items: center;
  gap: clamp(1.25rem, 3vw, 1.85rem);
}

.preloader-logo {
  display: block;
  width: min(13.5rem, 48vw);
  height: auto;
  border-radius: 999px;
  object-fit: contain;
  animation: preloaderBreath 2.2s ease-in-out infinite;
}

.preloader-bar {
  width: min(12.5rem, 48vw);
  height: 0.24rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(1, 50, 75, 0.08);
}

.preloader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), #ff6f16);
  animation: preloaderProgress 1.35s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: clamp(1.25rem, 2vw, 1.75rem);
  right: 0;
  left: 0;
  z-index: 120;
  isolation: isolate;
  width: min(calc(100% - 2.25rem), 85rem);
  margin: clamp(1.25rem, 2vw, 1.75rem) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06),
    0 3px 10px rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    transform 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.045),
    0 3px 10px rgba(15, 23, 42, 0.025);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.is-scrolled:hover,
.site-header.is-scrolled:focus-within {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 14px 38px rgba(15, 23, 42, 0.07),
    0 4px 12px rgba(15, 23, 42, 0.035);
}

.header-nav {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: clamp(4.75rem, 6.3vw, 5.625rem);
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 2.9vw, 2.625rem);
  padding: 0 clamp(1.125rem, 1.6vw, 1.5rem) 0 clamp(1.5rem, 2.65vw, 2.375rem);
}

.brand-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(3rem, 4.2vw, 3.75rem);
  object-fit: contain;
}

.nav-menu {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(1.25rem, 2.75vw, 2.5rem);
}

.mobile-menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(1, 50, 75, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  color: var(--brand-blue-dark);
  cursor: pointer;
  transition:
    background 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.mobile-menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 0.13rem;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 250ms ease,
    opacity 250ms ease;
}

.mobile-menu-toggle span + span {
  margin-top: 0.28rem;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 24px rgba(0, 88, 124, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(0.41rem) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-0.41rem) rotate(-45deg);
}

.nav-link,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-link {
  position: relative;
  z-index: 1;
  min-height: 28px;
  padding: 0;
  color: var(--brand-blue-dark);
  cursor: pointer;
  transition:
    color 250ms ease-in-out,
    font-weight 250ms ease-in-out,
    transform 250ms ease-in-out;
}

.nav-link::after {
  position: absolute;
  z-index: 0;
  right: 27.5%;
  bottom: -8px;
  left: 27.5%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-copper));
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 250ms ease-in-out,
    transform 250ms ease-in-out;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  font-weight: 700;
  outline: none;
  transform: translateY(-1px);
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  flex: 0 0 auto;
  margin-left: 0;
  min-height: auto;
  padding: clamp(0.875rem, 1.1vw, 1rem) clamp(1.25rem, 1.95vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-copper));
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 88, 124, 0.13);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 14px 30px rgba(0, 88, 124, 0.16);
  outline: none;
  transform: translateY(-2px);
}

.page-shell {
  min-height: 100vh;
  padding-top: clamp(7.25rem, 9vw, 8.75rem);
}

.hero-section {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 120px);
  grid-template-areas: "hero";
  margin-top: 0;
  padding: 0;
  overflow: visible;
  background: #ffffff;
}

.hero-video-wrap {
  position: relative;
  display: grid;
  width: 100%;
  max-width: none;
  grid-area: hero;
  grid-template-areas: "hero";
}

.hero-video {
  grid-area: hero;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 1;
  filter: none;
  transform: none;
  backface-visibility: hidden;
  image-rendering: auto;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
  will-change: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 0;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  align-items: center;
  gap: 0;
  margin: 0 auto;
  pointer-events: none;
  grid-area: hero;
}

.hero-copy-space {
  min-height: clamp(18rem, 32vw, 29.375rem);
  border-radius: 2rem;
}

.hero-service-button {
  position: absolute;
  top: clamp(18rem, 38vw, 32.5rem);
  left: clamp(1.5rem, 2.35vw, 2rem);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(29rem, calc(100vw - 3rem));
  height: clamp(3.35rem, 5.15vw, 4.375rem);
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-copper));
  box-shadow: 0 12px 26px rgba(0, 88, 124, 0.18);
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(0.72rem, 1.25vw, 1rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: auto;
  text-decoration: none;
  transition:
    box-shadow 250ms ease-in-out,
    transform 250ms ease-in-out;
}

.hero-service-button:hover,
.hero-service-button:focus-visible {
  box-shadow: 0 16px 34px rgba(0, 88, 124, 0.22);
  outline: none;
  transform: translateY(-2px);
}

.services-section {
  padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1rem, 4vw, 2.5rem) clamp(4rem, 6vw, 5.5rem);
  scroll-margin-top: clamp(8rem, 12vw, 10rem);
}

.services-visual-panel {
  width: min(86rem, 100%);
  margin: 0 auto;
  padding: clamp(0.75rem, 1.7vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: clamp(1.25rem, 2.4vw, 2rem);
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.18)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06),
    0 3px 10px rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.services-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.services-image + .services-image {
  margin-top: clamp(0.65rem, 1.4vw, 1rem);
}

.method-image-section {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1rem, 4vw, 2.5rem) clamp(4rem, 7vw, 6rem);
  scroll-margin-top: clamp(8rem, 12vw, 10rem);
  overflow: hidden;
}

.method-image-panel {
  position: relative;
  width: min(98rem, 100%);
  margin: 0 auto;
  padding: clamp(0.75rem, 1.6vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.24) 76%, rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06),
    0 3px 10px rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.method-image-panel::before,
.method-image-panel::after {
  position: absolute;
  z-index: 2;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 0 18px rgba(0, 88, 124, 0.36),
    0 0 34px rgba(255, 122, 24, 0.26);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.method-image-panel::before {
  top: 18%;
  left: 14%;
}

.method-image-panel::after {
  right: 18%;
  bottom: 20%;
}

.method-sparkle {
  position: absolute;
  z-index: 2;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: currentColor;
  color: var(--brand-blue);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 20px currentColor;
}

.method-sparkle:nth-child(1) {
  top: 24%;
  right: 22%;
  color: var(--brand-purple);
}

.method-sparkle:nth-child(2) {
  top: 63%;
  left: 20%;
  color: var(--brand-copper);
}

.method-sparkle:nth-child(3) {
  right: 11%;
  bottom: 34%;
  color: var(--brand-blue);
}

.method-image-section:hover .method-image-panel::before,
.method-image-section:hover .method-image-panel::after,
.method-image-section.is-sparkling .method-image-panel::before,
.method-image-section.is-sparkling .method-image-panel::after {
  animation: methodSparkle 3.8s ease-in-out infinite;
}

.method-image-section:hover .method-sparkle,
.method-image-section.is-sparkling .method-sparkle {
  animation: methodSparkle 4.4s ease-in-out infinite;
}

.method-image-section:hover .method-sparkle:nth-child(2),
.method-image-section.is-sparkling .method-sparkle:nth-child(2) {
  animation-delay: 600ms;
}

.method-image-section:hover .method-sparkle:nth-child(3),
.method-image-section.is-sparkling .method-sparkle:nth-child(3) {
  animation-delay: 1200ms;
}

.method-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.success-strip-section {
  padding: clamp(0.9rem, 1.8vw, 1.4rem) clamp(1rem, 4vw, 2.5rem) clamp(0.85rem, 1.6vw, 1.35rem);
  scroll-margin-top: clamp(8rem, 12vw, 10rem);
}

.success-strip {
  position: relative;
  display: flex;
  width: min(68rem, 88%);
  min-height: clamp(3.25rem, 5vw, 4.4rem);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(100deg, rgba(0, 88, 124, 0.72) 0%, rgba(22, 135, 173, 0.62) 52%, rgba(155, 94, 54, 0.68) 100%);
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06),
    0 3px 10px rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.success-strip p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 1.4vw, 1rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(0.78rem, 1.45vw, 1.32rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.success-strip strong {
  color: #ffffff;
  font-size: 1.12em;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.success-strip p > span:last-child {
  color: #052b42;
}

.strip-separator {
  display: inline-flex;
  width: 0.42rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
}

.strip-separator::before,
.strip-separator::after {
  display: block;
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.42);
  content: "";
}

.success-carousel-section {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}

.success-carousel {
  width: min(94rem, calc(100% - clamp(2rem, 8vw, 5rem)));
  margin: 0 auto;
  overflow: hidden;
}

.success-track {
  display: flex;
  width: max-content;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: center;
  animation: successMarquee 62s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.success-carousel:hover .success-track,
.success-track:hover {
  animation-play-state: paused;
}

.success-card {
  display: block;
  width: clamp(22rem, 48vw, 44rem);
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-section {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1rem, 4vw, 2.5rem) clamp(5rem, 8vw, 7rem);
  scroll-margin-top: clamp(8rem, 12vw, 10rem);
}

.contact-panel {
  position: relative;
  display: grid;
  width: min(92rem, 100%);
  min-height: clamp(34rem, 48vw, 47rem);
  grid-template-columns: minmax(20rem, 0.92fr) minmax(26rem, 1.08fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(2rem, 4.8vw, 4.5rem) clamp(1.5rem, 5vw, 5.25rem);
  border-radius: clamp(2rem, 4vw, 3.75rem);
  background:
    radial-gradient(circle at 18% 16%, rgba(100, 45, 192, 0.08), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(255, 122, 24, 0.08), transparent 18%),
    rgba(255, 255, 255, 0.78);
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06),
    0 3px 10px rgba(15, 23, 42, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-panel::before,
.contact-panel::after {
  position: absolute;
  width: 5rem;
  height: 5rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(100, 45, 192, 0.08);
  content: "";
  opacity: 0.7;
  transform: rotate(-13deg);
}

.contact-panel::before {
  top: 4%;
  left: 5%;
}

.contact-panel::after {
  right: 7%;
  bottom: 13%;
  transform: rotate(16deg);
}

.contact-content,
.contact-visual {
  position: relative;
  z-index: 1;
}

.contact-kicker {
  display: inline-flex;
  margin-bottom: clamp(1rem, 1.8vw, 1.45rem);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(100, 45, 192, 0.1), rgba(255, 122, 24, 0.12));
  color: var(--brand-purple);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.36em;
}

.contact-title {
  max-width: 40rem;
  margin: 0;
  color: #06123d;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 4.3vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.contact-title em {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-purple), #ff6f16);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-intro {
  max-width: 36.5rem;
  margin: clamp(1rem, 1.9vw, 1.35rem) 0 clamp(1.5rem, 2.8vw, 2.25rem);
  color: #1d2a52;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(0.98rem, 1.35vw, 1.14rem);
  font-weight: 500;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  max-width: 36.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.2vw, 0.95rem);
}

.contact-field {
  position: relative;
  display: flex;
  min-height: 3.6rem;
  align-items: center;
  border: 1px solid rgba(6, 18, 61, 0.11);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.contact-field:focus-within {
  border-color: rgba(100, 45, 192, 0.42);
  box-shadow:
    0 0 0 4px rgba(100, 45, 192, 0.08),
    0 10px 22px rgba(0, 88, 124, 0.06);
  transform: translateY(-1px);
}

.contact-field.is-invalid {
  border-color: rgba(230, 63, 59, 0.72);
  box-shadow: 0 0 0 4px rgba(230, 63, 59, 0.08);
}

.contact-field-wide,
.contact-submit,
.contact-security,
.contact-status {
  grid-column: 1 / -1;
}

.field-icon {
  display: inline-flex;
  width: 3.35rem;
  flex: 0 0 3.35rem;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #162145;
  font: 600 0.98rem/1.2 "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(22, 33, 69, 0.58);
}

.contact-field select {
  appearance: none;
  padding-right: 2.6rem;
  color: rgba(22, 33, 69, 0.68);
  cursor: pointer;
}

.contact-field-wide::after {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #162145;
  border-bottom: 2px solid #162145;
  content: "";
  pointer-events: none;
  transform: translateY(-64%) rotate(45deg);
}

.contact-message-field {
  min-height: 6rem;
  align-items: flex-start;
  padding-top: 1rem;
}

.contact-message-field::after {
  display: none;
}

.contact-field textarea {
  min-height: 4.6rem;
  resize: vertical;
}

.contact-submit {
  position: relative;
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 0.85rem;
  background: linear-gradient(100deg, #5629ff 0%, var(--brand-purple) 34%, #ef3e65 66%, #ff7116 100%);
  box-shadow: 0 18px 38px rgba(100, 45, 192, 0.2);
  color: #ffffff;
  cursor: pointer;
  font: 800 clamp(1rem, 1.55vw, 1.28rem)/1 "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  overflow: hidden;
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  box-shadow: 0 22px 46px rgba(100, 45, 192, 0.26);
  outline: none;
  transform: translateY(-2px);
}

.contact-submit.is-loading {
  cursor: wait;
  opacity: 0.92;
}

.submit-icon {
  width: 0;
  height: 0;
  border-top: 0.52rem solid transparent;
  border-bottom: 0.52rem solid transparent;
  border-left: 0.9rem solid #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.16));
  transform: rotate(-18deg);
}

.contact-submit.is-loading .submit-icon {
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 999px;
  animation: contactSpin 800ms linear infinite;
}

.contact-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.5rem 0 0;
  color: #344061;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.contact-security span,
.contact-security strong {
  color: #5629ff;
}

.contact-status {
  min-height: 1.35rem;
  margin: 0;
  color: var(--brand-blue);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.contact-status.is-error {
  color: #c0362f;
}

.contact-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: visible;
  min-height: clamp(25rem, 36vw, 36rem);
}

.contact-illustration {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: clamp(25rem, 36vw, 36rem);
  object-fit: contain;
  object-position: center center;
}

.contact-dashboard {
  position: absolute;
  top: 13%;
  left: 38%;
  width: clamp(12rem, 22vw, 18rem);
  min-height: clamp(10rem, 18vw, 15rem);
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 48px rgba(50, 43, 135, 0.13);
  overflow: hidden;
}

.dashboard-top {
  height: 1.9rem;
  background: linear-gradient(90deg, #5c36ed, #ff6f16);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.8rem;
  padding: 1.25rem 1.2rem 0.9rem;
}

.donut {
  width: 4rem;
  height: 4rem;
  border: 1rem solid #5c36ed;
  border-right-color: #ff8a00;
  border-radius: 999px;
}

.bar {
  display: block;
  align-self: end;
  width: 0.9rem;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #5c36ed, #ff6f16);
}

.bar-one {
  height: 3.1rem;
  margin-left: 0.2rem;
}

.bar-two {
  height: 4.6rem;
  margin-left: 1.45rem;
  margin-top: -4.6rem;
}

.bar-three {
  height: 6rem;
  margin-left: 2.75rem;
  margin-top: -6rem;
}

.dashboard-lines {
  display: grid;
  gap: 0.45rem;
  padding: 0 1.25rem 1.2rem;
}

.dashboard-lines span {
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(100, 45, 192, 0.18);
}

.contact-people {
  position: absolute;
  right: 2%;
  bottom: 1%;
  width: min(38rem, 86%);
  height: min(23rem, 60%);
}

.person {
  position: absolute;
  bottom: 4.2rem;
  width: clamp(5.5rem, 9vw, 8rem);
  height: clamp(8.5rem, 14vw, 12rem);
  border-radius: 999px 999px 1.4rem 1.4rem;
  background: linear-gradient(180deg, #ffb000 0 45%, #5932d8 45% 100%);
  box-shadow: 0 14px 28px rgba(41, 32, 91, 0.12);
}

.person::before {
  position: absolute;
  top: -2rem;
  left: 50%;
  width: clamp(2.4rem, 4.2vw, 3.5rem);
  height: clamp(2.4rem, 4.2vw, 3.5rem);
  border-radius: 999px;
  background: #ffd6b5;
  content: "";
  transform: translateX(-50%);
}

.person-left {
  left: 8%;
  transform: rotate(-5deg);
}

.person-center {
  left: 42%;
  background: linear-gradient(180deg, #5932d8 0 100%);
  transform: translateY(-1rem) rotate(4deg);
}

.person-right {
  right: 5%;
  background: linear-gradient(180deg, #ff7a18 0 48%, #11194a 48% 100%);
  transform: rotate(5deg);
}

.laptop {
  position: absolute;
  bottom: 3.2rem;
  left: 22%;
  width: clamp(10rem, 17vw, 14.5rem);
  height: clamp(5.4rem, 9vw, 7.4rem);
  border-radius: 0.55rem;
  background: linear-gradient(135deg, #392aa6, #5b3de2);
  box-shadow: 0 16px 30px rgba(35, 29, 92, 0.16);
}

.table-line {
  position: absolute;
  right: 0;
  bottom: 1.3rem;
  left: 0;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(100, 45, 192, 0.18), rgba(255, 122, 24, 0.22));
}

.floating-icon {
  position: absolute;
  z-index: 2;
  width: clamp(2.2rem, 3.8vw, 3.2rem);
  height: clamp(2.2rem, 3.8vw, 3.2rem);
  border: 2px solid currentColor;
  border-radius: 0.75rem;
  color: var(--brand-purple);
  opacity: 0.9;
  animation: contactFloat 5.4s ease-in-out infinite;
}

.floating-icon::before,
.floating-icon::after {
  position: absolute;
  content: "";
}

.icon-growth {
  top: 5%;
  left: 16%;
  color: var(--brand-blue);
}

.icon-growth::before {
  inset: 28% 22%;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skew(-16deg);
}

.icon-chat {
  top: 7%;
  left: 58%;
  border-radius: 1rem;
  color: var(--brand-purple);
  animation-delay: 500ms;
}

.icon-chat::before {
  top: 43%;
  left: 22%;
  width: 56%;
  height: 0.35rem;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0.65rem 0 currentColor;
}

.icon-target {
  top: 3%;
  right: 16%;
  border-radius: 999px;
  color: #e32f59;
  animation-delay: 900ms;
}

.icon-target::before {
  inset: 24%;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.icon-megaphone {
  top: 21%;
  right: 4%;
  color: #ff6f16;
  transform: rotate(-8deg);
  animation-delay: 300ms;
}

.icon-megaphone::before {
  inset: 25% 18%;
  border-left: 1.45rem solid currentColor;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
}

.icon-camera {
  top: 31%;
  right: 25%;
  color: var(--brand-blue);
  animation-delay: 1300ms;
}

.icon-camera::before {
  inset: 27%;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 2.6vw, 2rem);
  bottom: clamp(1rem, 2.6vw, 2rem);
  z-index: 80;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.whatsapp-float-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border: 0.32rem solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-blue) 46%, #ff6f16 100%);
  box-shadow:
    0 18px 38px rgba(8, 31, 45, 0.2),
    0 0 0 0 rgba(100, 45, 192, 0.24);
  cursor: pointer;
  pointer-events: auto;
  transform: translateZ(0);
  transition:
    box-shadow 250ms ease,
    transform 250ms ease;
  animation: whatsappBreath 3.6s ease-in-out infinite;
}

.whatsapp-float-button::before {
  position: absolute;
  inset: -1.05rem;
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(255, 111, 22, 0.16), transparent 58%),
    rgba(100, 45, 192, 0.14);
  content: "";
  opacity: 0;
  transform: scale(0.75);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.whatsapp-float-button:hover,
.whatsapp-float-button:focus-visible,
.whatsapp-float.is-open .whatsapp-float-button {
  box-shadow:
    0 22px 48px rgba(8, 31, 45, 0.24),
    0 0 0 1.1rem rgba(100, 45, 192, 0.12),
    0 0 42px rgba(255, 111, 22, 0.24);
  outline: none;
  transform: scale(1.06);
}

.whatsapp-float-button:hover::before,
.whatsapp-float-button:focus-visible::before,
.whatsapp-float.is-open .whatsapp-float-button::before {
  opacity: 1;
  transform: scale(1);
}

.whatsapp-icon,
.whatsapp-box-icon {
  display: block;
  fill: currentColor;
}

.whatsapp-icon {
  position: relative;
  z-index: 1;
  width: 2.55rem;
  height: 2.55rem;
  color: #ffffff;
}

.whatsapp-notification {
  position: absolute;
  top: -0.22rem;
  right: -0.22rem;
  width: 1rem;
  height: 1rem;
  border: 0.18rem solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef2c55, #ff6f16);
  box-shadow: 0 8px 16px rgba(239, 44, 85, 0.22);
}

.whatsapp-card {
  position: absolute;
  right: 0;
  bottom: calc(100% + 1.05rem);
  width: min(25rem, calc(100vw - 2rem));
  padding: clamp(1.65rem, 3vw, 2.35rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(1.35rem, 2.8vw, 2rem);
  background:
    radial-gradient(circle at 82% 12%, rgba(100, 45, 192, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    0 12px 35px rgba(15, 23, 42, 0.06),
    0 3px 10px rgba(15, 23, 42, 0.03);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0.75rem, 0) scale(0.94);
  transform-origin: right bottom;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.whatsapp-float.is-open .whatsapp-card {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.whatsapp-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #071443;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.whatsapp-close:hover,
.whatsapp-close:focus-visible {
  background: rgba(100, 45, 192, 0.08);
  outline: none;
  transform: rotate(90deg);
}

.whatsapp-card-title {
  max-width: 18rem;
  margin: 0;
  color: #071443;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.whatsapp-card-title em {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.14em;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(90deg, #5629ff, var(--brand-purple), #ff6f16);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.whatsapp-card-line {
  display: block;
  width: 4.1rem;
  height: 0.32rem;
  margin: 1.35rem 0 1.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #5629ff, #e02f74, #ff6f16);
}

.whatsapp-card-text {
  max-width: 18.5rem;
  margin: 0 0 1.45rem;
  color: rgba(7, 20, 67, 0.62);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 500;
  line-height: 1.48;
}

.whatsapp-contact-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(7, 20, 67, 0.06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06),
    0 3px 10px rgba(15, 23, 42, 0.03);
  cursor: pointer;
  text-decoration: none;
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.whatsapp-contact-box:hover,
.whatsapp-contact-box:focus-visible {
  box-shadow:
    0 16px 38px rgba(100, 45, 192, 0.12),
    0 0 24px rgba(255, 111, 22, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.whatsapp-box-icon {
  width: 3.1rem;
  height: 3.1rem;
  flex: 0 0 3.1rem;
  color: var(--brand-purple);
}

.whatsapp-contact-box strong,
.whatsapp-contact-box span,
.whatsapp-contact-number {
  display: block;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

.whatsapp-contact-box strong {
  color: #071443;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 800;
  line-height: 1.2;
}

.whatsapp-contact-box span {
  margin-top: 0.25rem;
  color: rgba(7, 20, 67, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
}

.whatsapp-contact-number {
  margin-top: 0.12rem;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-blue), #ff6f16);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.external-icon {
  position: relative;
  width: 1.22rem;
  height: 1.22rem;
  border: 0.16rem solid currentColor;
  border-radius: 0.18rem;
}

.external-icon::before,
.external-icon::after {
  position: absolute;
  content: "";
}

.external-icon::before {
  top: -0.34rem;
  right: -0.34rem;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 0.16rem solid currentColor;
  border-right: 0.16rem solid currentColor;
}

.external-icon::after {
  top: 0.07rem;
  right: -0.18rem;
  width: 1.08rem;
  height: 0.16rem;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.site-footer {
  width: 100%;
  padding: clamp(1.45rem, 2.8vw, 2.75rem) clamp(1rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
  background:
    radial-gradient(circle at 8% 96%, rgba(100, 45, 192, 0.36), transparent 25%),
    radial-gradient(circle at 96% 90%, rgba(255, 111, 22, 0.32), transparent 26%),
    linear-gradient(135deg, #030712 0%, #071022 50%, #020611 100%);
  color: #ffffff;
}

.footer-shell {
  width: 100%;
  max-width: none;
  padding: clamp(1.8rem, 3.1vw, 3rem) clamp(1.5rem, 4.4vw, 4.5rem) clamp(1.25rem, 2.4vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: clamp(1.5rem, 2.4vw, 2.25rem);
  background:
    radial-gradient(circle at 0% 100%, rgba(100, 45, 192, 0.16), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(255, 111, 22, 0.15), transparent 34%),
    rgba(3, 8, 21, 0.84);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(22rem, 1.4fr) minmax(13rem, 0.55fr) minmax(18rem, 0.8fr);
  gap: clamp(1.5rem, 3.8vw, 4rem);
  align-items: start;
}

.footer-brand,
.footer-column {
  position: relative;
}

.footer-brand {
  padding-right: clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-pages {
  padding-right: clamp(1.5rem, 4vw, 4rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: clamp(8.5rem, 14vw, 14.25rem);
  height: auto;
  border-radius: 999px;
  object-fit: contain;
}

.footer-description {
  max-width: 33rem;
  margin: clamp(0.85rem, 1.45vw, 1.3rem) 0 clamp(0.75rem, 1.35vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
}

.footer-gradient-line {
  display: block;
  width: 5.4rem;
  height: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #5629ff, #e02f74, #ff6f16);
}

.footer-widgets {
  display: grid;
  max-width: 35rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(1rem, 1.8vw, 1.45rem);
}

.footer-widget {
  display: grid;
  gap: 0.22rem;
  justify-items: center;
  padding: 0 1rem;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  text-align: center;
}

.footer-widget + .footer-widget {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget-icon {
  position: relative;
  display: inline-flex;
  width: 3.65rem;
  height: 3.65rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.18rem;
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#071022, #071022) padding-box,
    linear-gradient(135deg, #5629ff, #e02f74, #ff6f16) border-box;
  color: #9b60ff;
}

.footer-widget-icon::before,
.footer-widget-icon::after {
  position: absolute;
  content: "";
}

.rocket-icon::before {
  width: 0.9rem;
  height: 1.55rem;
  border: 0.16rem solid currentColor;
  border-radius: 999px 999px 0.35rem 0.35rem;
  transform: rotate(42deg);
}

.rocket-icon::after {
  right: 1.08rem;
  bottom: 0.82rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: #ff6f16;
}

.target-icon::before {
  width: 1.68rem;
  height: 1.68rem;
  border: 0.18rem solid currentColor;
  border-radius: 999px;
  box-shadow: inset 0 0 0 0.48rem #071022, inset 0 0 0 0.64rem currentColor;
}

.target-icon::after {
  top: 0.84rem;
  right: 0.78rem;
  width: 1rem;
  height: 0.18rem;
  border-radius: 999px;
  background: #ff6f16;
  transform: rotate(-40deg);
}

.chart-icon::before {
  bottom: 1rem;
  left: 1.02rem;
  width: 0.34rem;
  height: 0.58rem;
  border-radius: 0.12rem;
  background: currentColor;
  box-shadow:
    0.62rem -0.38rem 0 currentColor,
    1.24rem -0.76rem 0 #ff6f16;
}

.chart-icon::after {
  top: 1.05rem;
  right: 0.9rem;
  width: 1.08rem;
  height: 1.08rem;
  border-top: 0.18rem solid #ff6f16;
  border-right: 0.18rem solid #ff6f16;
  transform: rotate(-8deg);
}

.footer-widget strong {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 800;
}

.footer-widget span:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.88rem, 1.15vw, 1rem);
  font-weight: 500;
}

.footer-column h2 {
  margin: clamp(0.35rem, 0.8vw, 0.65rem) 0 0.9rem;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-column nav {
  display: grid;
  gap: 1rem;
  margin-top: 1.9rem;
}

.footer-column nav a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-column nav a::before {
  width: 0.55rem;
  height: 0.55rem;
  border-top: 0.16rem solid #e02f74;
  border-right: 0.16rem solid #ff6f16;
  content: "";
  transform: rotate(45deg);
}

.footer-column nav a:hover,
.footer-column nav a:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateX(0.25rem);
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.45vw, 1.15rem);
  margin-top: 1.9rem;
}

.footer-social-links a {
  display: inline-flex;
  width: clamp(3rem, 4vw, 3.65rem);
  height: clamp(3rem, 4vw, 3.65rem);
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#071022, #071022) padding-box,
    linear-gradient(135deg, #5629ff, #e02f74, #ff6f16) border-box;
  color: #8b55ff;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(1.5rem, 2.35vw, 1.95rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition:
    box-shadow 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  color: #ff6f16;
  box-shadow:
    0 0 30px rgba(100, 45, 192, 0.34),
    0 0 24px rgba(255, 111, 22, 0.18);
  outline: none;
  transform: translateY(-3px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto minmax(18rem, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(1.4rem, 2.8vw, 2.35rem);
  padding-top: clamp(1rem, 2vw, 1.45rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-email {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  font-weight: 500;
  text-decoration: none;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateY(-2px);
}

.footer-mail-icon {
  position: relative;
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 3.25rem;
  border: 2px solid transparent;
  border-radius: 0.65rem;
  background:
    linear-gradient(#071022, #071022) padding-box,
    linear-gradient(135deg, #5629ff, #e02f74, #ff6f16) border-box;
}

.footer-mail-icon::before {
  position: absolute;
  inset: 0.86rem 0.72rem;
  border: 0.16rem solid #9b60ff;
  border-radius: 0.18rem;
  content: "";
}

.footer-mail-icon::after {
  position: absolute;
  top: 1.08rem;
  left: 0.78rem;
  width: 1.6rem;
  height: 0.82rem;
  border-right: 0.16rem solid #ff6f16;
  border-bottom: 0.16rem solid #ff6f16;
  content: "";
  transform: rotate(45deg) skew(10deg, 10deg);
}

.footer-dot-grid {
  display: grid;
  width: 10rem;
  grid-template-columns: repeat(8, 0.22rem);
  gap: 0.72rem;
  justify-content: center;
}

.footer-dot-grid::before {
  display: contents;
  content: "";
}

.footer-dot-grid {
  background-image: radial-gradient(circle, currentColor 42%, transparent 44%);
  background-position: 0 0;
  background-size: 1rem 1rem;
  color: rgba(255, 111, 22, 0.75);
  height: 3rem;
  opacity: 0.9;
}

.footer-legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
}

.footer-legal strong {
  background: linear-gradient(90deg, #5629ff, #e02f74, #ff6f16);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes successMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - clamp(0.625rem, 1.25vw, 1rem)), 0, 0);
  }
}

@keyframes methodSparkle {
  0%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.6);
  }

  35% {
    opacity: 0.65;
    transform: translate3d(0.35rem, -0.45rem, 0) scale(1);
  }

  68% {
    opacity: 0.2;
    transform: translate3d(-0.25rem, 0.3rem, 0) scale(0.8);
  }
}

@keyframes contactFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.45rem, 0);
  }
}

@keyframes contactSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes whatsappBreath {
  0%,
  100% {
    box-shadow:
      0 18px 38px rgba(8, 31, 45, 0.2),
      0 0 0 0 rgba(100, 45, 192, 0.24);
  }

  50% {
    box-shadow:
      0 20px 42px rgba(8, 31, 45, 0.22),
      0 0 0 0.62rem rgba(255, 111, 22, 0.08);
  }
}

@keyframes preloaderBreath {
  0%,
  100% {
    filter: drop-shadow(0 14px 28px rgba(1, 50, 75, 0.08));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 20px 38px rgba(100, 45, 192, 0.14));
    transform: scale(1.045);
  }
}

@keyframes preloaderProgress {
  0% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(240%);
  }
}


.growth-section {
  position: relative;
  isolation: isolate;
  background: transparent;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
}

.growth-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.86) 46%,
      rgba(255, 255, 255, 0.58) 78%,
      rgba(255, 255, 255, 0.18) 100%
    );
  content: "";
  pointer-events: none;
}

.growth-content {
  width: min(53.75rem, 100%);
  margin: 0 auto;
  text-align: center;
}

.growth-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 3.2vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.growth-title-line {
  white-space: nowrap;
}

.growth-title em {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.08em;
  font-style: italic;
  font-weight: 600;
  line-height: 0;
  vertical-align: -0.03em;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.growth-subtitle {
  width: min(45rem, 100%);
  margin: 10px auto 0;
  color: var(--brand-blue-dark);
  font-size: clamp(0.98rem, 1.2vw, 1.0625rem);
  font-weight: 600;
  line-height: 1.24;
}

.widgets-section {
  padding: clamp(0.75rem, 1.6vw, 1.125rem) clamp(1rem, 3vw, 2rem) clamp(4.75rem, 7vw, 6rem);
}

.widgets-grid {
  display: grid;
  width: min(73.75rem, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
  align-items: center;
  justify-items: center;
  margin: 0 auto;
  perspective: 1400px;
}

.widget-card {
  position: relative;
  width: 100%;
  max-width: min(22.5rem, 100%);
  overflow: hidden;
  border-radius: clamp(1.5rem, 2.4vw, 2.125rem);
  box-shadow:
    0 12px 35px rgba(15, 23, 42, 0.06),
    0 3px 10px rgba(15, 23, 42, 0.03);
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    filter 260ms ease,
    transform 420ms ease,
    box-shadow 420ms ease;
}

.widget-card::before {
  position: absolute;
  inset: -30%;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 24%,
    rgba(255, 214, 121, 0.08) 38%,
    rgba(255, 238, 169, 0.56) 48%,
    rgba(255, 214, 121, 0.1) 58%,
    transparent 72%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-95%) rotate(10deg);
}

.widget-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(
    circle at center,
    rgba(255, 244, 190, 0.48),
    rgba(255, 214, 121, 0.18) 34%,
    transparent 68%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
}

.widget-card:hover {
  box-shadow: 0 26px 58px rgba(10, 30, 70, 0.18);
}

.widget-card:hover::before,
.widget-card.is-flipping::before {
  animation: widgetShine 1200ms ease-in-out;
}

.widget-card.is-flipping::after {
  animation: widgetFlash 1200ms ease-in-out;
}

.widget-card.is-flipping {
  animation: widgetFlip 1200ms ease-in-out;
}

.widget-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  transform: translateZ(0);
}

@keyframes widgetFlip {
  0% {
    transform: scale(1) rotateY(0deg);
  }

  45% {
    transform: scale(1.045) rotateY(178deg);
  }

  100% {
    transform: scale(1) rotateY(360deg);
  }
}

@keyframes widgetShine {
  0% {
    opacity: 0;
    transform: translateX(-95%) rotate(10deg);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(95%) rotate(10deg);
  }
}

@keyframes widgetFlash {
  0%,
  76% {
    opacity: 0;
  }

  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .header-nav {
    gap: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link,
  .nav-cta {
    font-size: 0.9rem;
  }

  .widgets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-content {
    order: 1;
  }

  .contact-visual {
    order: 2;
    min-height: 26rem;
  }

  .contact-form,
  .contact-title,
  .contact-intro {
    max-width: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-dot-grid {
    justify-self: center;
  }

  .footer-legal {
    text-align: left;
  }

}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 1rem);
  }

  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.85rem;
  }

  .brand-link {
    width: 100%;
    justify-content: center;
  }

  .nav-menu {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-service-button {
    min-height: 2.15rem;
  }

  .growth-title-line {
    white-space: normal;
  }

  .widgets-section {
    padding: 12px 24px 78px;
  }

  .widgets-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .success-strip {
    border-radius: 2rem;
    padding: 1.4rem 1rem;
  }

  .success-strip p {
    flex-direction: column;
    gap: 0.6rem;
  }

  .strip-separator {
    width: 2rem;
    height: 0.5rem;
  }

  .contact-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contact-panel {
    padding: 2rem 1rem 1.5rem;
    border-radius: 2rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-kicker {
    letter-spacing: 0.22em;
  }

  .contact-title {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .contact-visual {
    min-height: 22rem;
  }

  .contact-dashboard {
    left: 28%;
  }

  .contact-people {
    width: 100%;
  }

  .floating-icon {
    opacity: 0.55;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-float-button {
    width: 3.65rem;
    height: 3.65rem;
  }

  .whatsapp-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .whatsapp-card {
    right: -0.25rem;
    width: calc(100vw - 2rem);
    padding: 1.55rem;
  }

  .whatsapp-contact-box {
    align-items: flex-start;
    padding: 0.9rem;
  }

  .site-footer {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .footer-shell {
    padding: 2rem 1.15rem;
    border-radius: 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-pages {
    padding-right: 0;
    padding-bottom: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-logo {
    width: min(14rem, 82vw);
  }

  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-widget {
    padding: 0;
  }

  .footer-widget + .footer-widget {
    border-left: 0;
  }

  .footer-column nav,
  .footer-social-links {
    margin-top: 1.7rem;
  }

  .footer-email {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .footer-dot-grid {
    width: 7rem;
  }

}

@media (max-width: 1120px) {
  .site-header {
    width: min(calc(100% - 1.25rem), 85rem);
    margin-top: 0.75rem;
    border-radius: 2rem;
  }

  .header-nav {
    min-height: clamp(4.25rem, 9vw, 5rem);
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    justify-content: space-between;
    padding: 0.65rem clamp(0.85rem, 2vw, 1.25rem);
  }

  .brand-link {
    width: auto;
    justify-content: flex-start;
  }

  .brand-logo {
    height: clamp(2.8rem, 7vw, 3.35rem);
  }

  .mobile-menu-toggle {
    display: grid;
    order: 3;
  }

  .nav-menu {
    order: 4;
    width: 100%;
    max-height: 0;
    flex: 0 0 100%;
    flex-direction: column;
    gap: 0.3rem;
    align-items: stretch;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 300ms ease,
      opacity 250ms ease,
      padding 300ms ease;
  }

  .site-header.is-menu-open .nav-menu {
    max-height: 24rem;
    padding: 0.5rem 0 0.35rem;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    min-height: 2.55rem;
    justify-content: center;
    font-size: 0.98rem;
  }

  .nav-link::after {
    bottom: 0.24rem;
  }

  .nav-cta {
    order: 2;
    margin-left: auto;
    padding: 0.82rem clamp(1rem, 2vw, 1.35rem);
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .hero-section,
  .hero-video-wrap,
  .hero-content {
    width: 100%;
  }

  .hero-service-button {
    top: clamp(14.5rem, 39vw, 26rem);
    left: clamp(1rem, 3vw, 1.75rem);
    width: min(25rem, calc(100vw - 2rem));
  }
}

@media (max-width: 1024px) {
  .hero-service-button {
    display: none !important;
  }

  .contact-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    overflow: hidden;
  }

  .contact-content {
    width: 100%;
    max-width: none;
  }

  .contact-form,
  .contact-title,
  .contact-intro {
    max-width: none;
  }

  .contact-visual {
    display: none !important;
    min-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .contact-illustration {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: clamp(5.6rem, 18vw, 7rem);
  }

  .site-header {
    top: 0.5rem;
    width: calc(100% - 0.85rem);
    border-radius: 1.65rem;
  }

  .header-nav {
    min-height: 4.15rem;
    padding: 0.55rem 0.7rem;
  }

  .brand-logo {
    height: clamp(2.55rem, 12vw, 3rem);
  }

  .nav-cta {
    order: 5;
    width: 100%;
    margin: 0.25rem 0 0;
  }

  .site-header:not(.is-menu-open) .nav-cta {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-video {
    width: 100%;
    height: auto;
  }

  .hero-content {
    display: none;
  }

  .hero-service-button {
    top: clamp(12rem, 48vw, 18.5rem);
    left: clamp(0.75rem, 4vw, 1rem);
    width: min(20rem, calc(100vw - 1.5rem));
    height: clamp(2.75rem, 11vw, 3.6rem);
  }

  .growth-section,
  .widgets-section,
  .services-section,
  .method-image-section,
  .success-strip-section,
  .contact-section {
    padding-right: clamp(0.75rem, 4vw, 1rem);
    padding-left: clamp(0.75rem, 4vw, 1rem);
  }

  .services-visual-panel,
  .method-image-panel,
  .contact-panel,
  .footer-shell {
    max-width: 100%;
  }

  .success-carousel {
    width: calc(100% - 1rem);
  }

  .success-card {
    width: clamp(17rem, 82vw, 24rem);
  }

  .contact-panel {
    min-height: auto;
    overflow: visible;
  }

  .contact-illustration {
    max-height: none;
  }
}

@media (max-width: 430px) {
  .mobile-menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
  }

  .nav-link {
    font-size: 0.94rem;
  }

  .hero-service-button {
    top: clamp(10.2rem, 50vw, 13.5rem);
    width: min(17rem, calc(100vw - 1.25rem));
  }

  .whatsapp-float {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .whatsapp-card {
    right: 0;
    width: min(22rem, calc(100vw - 1.5rem));
    max-height: calc(100vh - 7.5rem);
    overflow: auto;
  }

  .footer-social-links {
    flex-wrap: wrap;
  }
}
