:root {
  --dark-blue: #1A2744;
  --light-blue: #40B4E5;
  --bright-green: #52D053;
  --bg-light: #F4F7F6;
  --text-dark: #2C3E50;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Heebo', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 14%, rgba(64, 180, 229, 0.12), transparent 26%),
    radial-gradient(circle at 18% 8%, rgba(82, 208, 83, 0.08), transparent 20%);
  z-index: -1;
}

a,
button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0D1424 100%);
  color: white;
  padding: 80px 0 60px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.hero-content {
  flex: 1.2;
  min-width: 300px;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.logo {
  max-width: 220px;
  margin-bottom: 25px;
}

.hero-logo {
  display: block;
  width: min(210px, 46vw);
  max-width: 210px;
  margin: 8px auto 18px;
  animation: floatLogo 5.8s ease-in-out infinite;
}

h1 {
  font-size: 3.2rem;
  color: white;
  margin-bottom: 15px;
  line-height: 1.1;
  font-weight: 900;
}

h1 span {
  color: var(--light-blue);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #D1D8E0;
}

.lead-form-box {
  background: white;
  padding: 35px 30px;
  border-radius: 12px;
  color: var(--text-dark);
  flex: 0.8;
  min-width: 320px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-top: 5px solid var(--bright-green);
  animation: floatCard 6.2s ease-in-out infinite;
}

.lead-form-box h3 {
  margin-bottom: 20px;
  color: var(--dark-blue);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.lead-form {
  display: block;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px;
  border: 1px solid #E0E6ED;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #F8FAFC;
  transition: border 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--light-blue);
  background-color: #fff;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #7F8C8D;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--light-blue);
  text-decoration: underline;
}

.btn {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: var(--bright-green);
  color: white;
  text-align: center;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(82, 208, 83, 0.4);
}

.btn:hover {
  background-color: #45b346;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82, 208, 83, 0.6);
}

.privacy-note {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #7F8C8D;
  margin-top: 12px;
}

.hidden-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.partners {
  background-color: #111A2E;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.partners p {
  color: #7F8C8D;
  font-size: 1rem;
  margin-bottom: 15px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 2rem;
  color: #4A5B75;
}

.partners-logos i {
  transition: color 0.3s;
}

.partners-logos i:hover {
  color: var(--light-blue);
}

.services {
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  color: var(--dark-blue);
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 800;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.split-message-grid {
  align-items: stretch;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  border: 1px solid #E0E6ED;
  position: relative;
  overflow: hidden;
}

.narrative-card {
  text-align: right;
  padding: 34px 32px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--light-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.pain-card::before {
  background: linear-gradient(90deg, #FF7A59 0%, #FFB347 100%);
}

.solution-card::before {
  background: linear-gradient(90deg, var(--light-blue) 0%, var(--bright-green) 100%);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--light-blue);
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.45;
}

.narrative-card p {
  margin-bottom: 22px;
  line-height: 1.9;
  color: #526173;
}

.service-badge,
.service-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  margin-bottom: 22px;
}

.service-badge {
  background: rgba(64, 180, 229, 0.12);
  color: var(--dark-blue);
}

.pain-card .service-badge {
  background: rgba(255, 122, 89, 0.12);
  color: #A6492E;
}

.service-summary {
  margin-top: 24px;
  margin-bottom: 0;
  background: rgba(82, 208, 83, 0.12);
  color: #1F6B2A;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.service-points i {
  flex: 0 0 auto;
  margin-top: 6px;
}

.pain-card .service-points i {
  color: #E15E3A;
}

.solution-card .service-points i {
  color: #3BB55F;
}

.target-audience {
  background: linear-gradient(135deg, var(--light-blue) 0%, #2A9BCB 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.target-audience h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 800;
}

.target-audience p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.footer-cta {
  background-color: var(--dark-blue);
  color: white;
  text-align: center;
  padding: 80px 0 40px;
}

.footer-cta h2 {
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 800;
}

.footer-btn {
  display: inline-block;
  width: auto;
  padding: 16px 50px;
  margin-bottom: 40px;
}

.thank-you-content {
  max-width: 620px;
}

.thank-you-btn {
  display: inline-block;
  width: auto;
  padding: 16px 42px;
}

.thank-you-box h3 {
  margin-bottom: 22px;
}

.thank-you-links {
  justify-content: flex-start;
  border-top: 0;
  padding-top: 0;
}

.footer-contact-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}

.footer-contact-links a {
  color: #D1D8E0;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.footer-contact-links a:hover {
  color: var(--light-blue);
}

.footer-contact-links i {
  font-size: 1.4rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #25D366;
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.privacy-shell {
  width: min(980px, calc(100% - 24px));
  margin: 24px auto 40px;
}

.privacy-page {
  background: linear-gradient(135deg, var(--dark-blue) 0%, #0D1424 100%);
  color: white;
  padding: 32px 28px;
  border-radius: 20px;
  display: grid;
  gap: 24px;
}

.privacy-hero-top {
  display: flex;
  justify-content: flex-start;
}

.privacy-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.privacy-page .brand-logo {
  width: 72px;
  max-width: 72px;
  flex: 0 0 auto;
}

.privacy-page .brand-name,
.privacy-page .brand-subtitle {
  margin: 0;
}

.privacy-page .brand-name {
  font-size: 1.35rem;
  font-weight: 800;
}

.privacy-page .brand-subtitle {
  color: #9edcf5;
  font-size: 0.98rem;
}

.privacy-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.privacy-page h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 0.95;
  margin: 0;
  font-weight: 900;
}

.privacy-page .hero-text {
  color: #D1D8E0;
  font-size: 1.18rem;
  line-height: 1.85;
  margin: 0;
  max-width: 560px;
}

.privacy-content {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.privacy-block {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid #E0E6ED;
}

.privacy-block h2 {
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.privacy-block p,
.privacy-block li {
  color: #5D6D7E;
  line-height: 1.8;
}

.privacy-block a {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 700;
}

.privacy-block ul {
  padding-right: 20px;
  margin-top: 8px;
}

.reveal-section {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .lead-form-box {
    width: 100%;
    max-width: 500px;
  }

  .thank-you-links {
    justify-content: center;
  }

  .privacy-page {
    padding: 26px 20px;
    border-radius: 16px;
  }

  .privacy-hero-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .privacy-page .hero-text {
    max-width: none;
  }

  .services-grid.split-message-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .services h2,
  .target-audience h2,
  .footer-cta h2,
  .privacy-page h1 {
    font-size: 2rem;
  }

  .target-audience p {
    font-size: 1.05rem;
  }

  .privacy-shell {
    width: min(100%, calc(100% - 16px));
    margin: 12px auto 28px;
  }

  .privacy-page .brand {
    gap: 10px;
  }

  .privacy-page .brand-logo {
    width: 58px;
    max-width: 58px;
  }

  .privacy-page .brand-name {
    font-size: 1.1rem;
  }

  .privacy-page .brand-subtitle {
    font-size: 0.88rem;
  }

  .privacy-page h1 {
    font-size: 2.3rem;
    line-height: 1;
  }

  .privacy-page .hero-text {
    font-size: 1rem;
    line-height: 1.75;
  }

  .privacy-block {
    border-radius: 14px;
    padding: 20px 18px;
  }

  .privacy-block h2 {
    font-size: 1.18rem;
  }

  .narrative-card {
    padding: 28px 22px;
  }

  .service-badge,
  .service-summary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .footer-contact-links {
    flex-direction: column;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal-section,
  .reveal-section.is-visible {
    opacity: 1;
    transform: none;
  }
}
