:root {
  --blue-900: #062a53;
  --blue-700: #0b5cad;
  --blue-100: #eaf4ff;
  --orange: #f59e0b;
  --green: #16a34a;
  --ink: #132033;
  --muted: #65758b;
  --line: #dce6f2;
  --white: #ffffff;
  --soft: #f7fbff;
  --shadow: 0 18px 45px rgba(6, 42, 83, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-weight: 800;
  background: var(--blue-700);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(11, 92, 173, 0.25);
}

.brand strong,
.site-footer strong {
  display: block;
  color: var(--blue-900);
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-weight: 700;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-700);
  background: var(--blue-100);
}

.main-nav .nav-cta {
  color: var(--white);
  background: var(--green);
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: #12823d;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-900);
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #fff7e8 100%);
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  padding-top: clamp(52px, 8vw, 86px);
  padding-bottom: clamp(52px, 8vw, 86px);
}

.hero-content,
.split-content,
.page-hero > div {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: 1.12rem;
}

.hero-text,
.section-heading p,
.split-content p,
.page-hero p,
.contact-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions,
.cta-band,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 800;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 14px 24px rgba(11, 92, 173, 0.24);
}

.btn-primary:hover {
  background: var(--blue-900);
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-light {
  color: var(--blue-900);
  background: var(--white);
}

.hero-proof {
  margin-top: 26px;
}

.hero-proof span {
  padding: 9px 13px;
  color: var(--blue-900);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-media img,
.split-media img,
.page-hero img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media-animated {
  position: relative;
  isolation: isolate;
  animation: heroFloat 5200ms ease-in-out infinite;
}

.hero-media-animated::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(11, 92, 173, 0.18), rgba(245, 158, 11, 0.18));
  border-radius: 14px;
  transform: rotate(-2deg);
}

.hero-media-animated::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: imageShine 4600ms ease-in-out infinite;
  pointer-events: none;
}

.hero-media-animated img {
  animation: heroImageZoom 7200ms ease-in-out infinite;
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: min(310px, calc(100% - 36px));
  padding: 14px 16px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 230, 242, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(6, 42, 83, 0.16);
  backdrop-filter: blur(10px);
  animation: badgeLift 5200ms ease-in-out infinite;
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  font-size: 0.98rem;
}

.hero-badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 34px;
  text-align: center;
}

.benefit-grid,
.testimonial-grid,
.pricing-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card,
.price-card,
.testimonial,
.value-grid article,
.contact-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefit-card {
  overflow: hidden;
}

.benefit-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.benefit-card div,
.price-card,
.testimonial,
.value-grid article,
.contact-card,
.contact-form {
  padding: 24px;
}

.benefit-card p,
.price-card li,
.testimonial span,
.value-grid p,
.steps p,
.site-footer p,
.site-footer a {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  background: var(--soft);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.section-blue {
  background: var(--blue-900);
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.testimonial {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.testimonial p,
.testimonial strong {
  color: var(--white);
}

.testimonial span {
  display: block;
  margin-top: 4px;
  color: #b8d6f5;
}

.cta-band {
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
}

.cta-band h2,
.cta-band p {
  margin: 0;
  color: var(--white);
}

.cta-band p {
  margin-top: 6px;
  color: #d9ecff;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--blue-700);
  transform: translateY(-12px);
}

.plan-label {
  margin: 0 0 10px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 14px 0 0;
  color: var(--blue-700);
  font-size: 2rem;
  font-weight: 900;
}

.price-card .btn {
  margin-top: auto;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.steps div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span,
.icon-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-weight: 900;
  background: var(--blue-700);
  border-radius: 8px;
}

.steps p {
  margin: 0;
}

.values-section {
  background: var(--white);
}

.icon-badge {
  margin-bottom: 16px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.whatsapp-large {
  display: inline-flex;
  margin: 10px 0 18px;
  padding: 14px 18px;
  color: var(--white);
  font-weight: 900;
  background: var(--green);
  border-radius: 8px;
}

.contact-note {
  padding: 16px;
  color: var(--blue-900);
  background: var(--blue-100);
  border-radius: 8px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: var(--blue-900);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.legal-hero {
  max-width: 980px;
  padding: clamp(52px, 8vw, 86px) clamp(18px, 5vw, 72px) 28px;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
  padding-top: 24px;
}

.legal-content article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content article p {
  margin: 8px 0 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--blue-700);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 26px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: #f4f8fd;
  border-top: 1px solid var(--line);
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 7px 0;
}

.site-footer a:hover {
  color: var(--blue-700);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  font-weight: 900;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.34);
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .hero,
  .page-hero,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .testimonial-grid,
  .pricing-grid,
  .value-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .page-hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .btn,
  .hero-actions,
  .cta-band .btn {
    width: 100%;
  }

  .cta-band {
    align-items: stretch;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}

body.is-loaded .hero-content,
body.is-loaded .page-hero > div {
  animation: riseIn 680ms ease both;
}

body.is-loaded .hero-media,
body.is-loaded .page-hero img {
  animation: softZoom 820ms ease both;
}

.check-list li::before {
  content: "\2713";
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.stats-strip div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(6, 42, 83, 0.08);
}

.stats-strip strong {
  display: block;
  color: var(--blue-700);
  font-size: 1.85rem;
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.benefit-card,
.price-card,
.value-grid article,
.contact-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover,
.price-card:hover,
.value-grid article:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 92, 173, 0.28);
  box-shadow: 0 24px 54px rgba(6, 42, 83, 0.16);
}

.benefit-card img,
.split-media img,
.hero-media img,
.page-hero img {
  transition: transform 420ms ease;
}

.benefit-card:hover img,
.split-media:hover img,
.hero-media:hover img,
.page-hero:hover img {
  transform: scale(1.035);
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  color: var(--blue-900);
  font: inherit;
  font-weight: 900;
  text-align: left;
  background: var(--white);
  border: 0;
  cursor: pointer;
}

.faq-question span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 8px;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .faq-question span {
  background: var(--orange);
  transform: rotate(45deg);
}

.floating-whatsapp {
  animation: whatsappPulse 1800ms ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softZoom {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
}

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

@keyframes heroImageZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.025);
  }
}

@keyframes imageShine {
  0%,
  42% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

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

@media (max-width: 940px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
