@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
  --primary: #096c8a;
  --primary-dark: #064f66;
  --primary-soft: #e8f5f8;

  --secondary: #a2c636;
  --secondary-dark: #82a51e;
  --secondary-soft: #f1f8d8;

  --dark: #082432;
  --text: #243746;
  --muted: #667887;
  --light: #f5f9fa;
  --white: #ffffff;
  --border: #dce8ec;

  --shadow: 0 26px 70px rgba(8, 36, 50, 0.16);
  --shadow-soft: 0 16px 36px rgba(8, 36, 50, 0.09);

  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(162, 198, 54, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(9, 108, 138, 0.16), transparent 32%),
    var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(162, 198, 54, 0.22), rgba(9, 108, 138, 0.08), transparent 68%);
  filter: blur(8px);
  transition: opacity 0.25s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 0 0 7px rgba(162, 198, 54, 0.18);
}

h1,
h2,
h3 {
  color: var(--dark);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.35rem, 4.35vw, 4.15rem);
  max-width: 680px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

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

.section-heading p {
  font-size: 1.06rem;
  margin-top: 16px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background:
    linear-gradient(135deg, rgba(9, 108, 138, 0.96), rgba(6, 79, 102, 0.96));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(8, 36, 50, 0.16);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 172px;
  height: auto;
}

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

.main-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 0.94rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
  color: var(--secondary);
  transform: translateY(-1px);
}

.nav-cta {
  color: var(--dark) !important;
  background: linear-gradient(135deg, var(--secondary), #c5e76a);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(162, 198, 54, 0.34);
}

.nav-cta:hover {
  color: var(--dark) !important;
  box-shadow: 0 18px 34px rgba(162, 198, 54, 0.42);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 999px;
}

/* Hero */

.hero {
  position: relative;
  padding-top: 78px;
  padding-bottom: 86px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% -12% auto auto;
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, rgba(9, 108, 138, 0.16), rgba(162, 198, 54, 0.24));
  filter: blur(42px);
  border-radius: 50%;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  animation: fadeUp 0.7s ease both;
}

.hero-visual {
  position: relative;
  animation: fadeUp 0.85s ease 0.12s both;
}

.hero-description {
  font-size: 1.12rem;
  max-width: 610px;
  margin-top: 24px;
  color: #536a78;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

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

.btn-primary {
  color: var(--dark);
  background: linear-gradient(135deg, var(--secondary), #c9eb69);
  box-shadow: 0 16px 36px rgba(162, 198, 54, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 22px 46px rgba(162, 198, 54, 0.44);
}

.btn-secondary {
  color: var(--primary);
  background: var(--white);
  border-color: rgba(9, 108, 138, 0.16);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  border-color: rgba(9, 108, 138, 0.34);
}

.btn-full {
  width: 100%;
  border: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  background:
    linear-gradient(135deg, rgba(9, 108, 138, 0.24), rgba(162, 198, 54, 0.28));
  border-radius: 40px;
  transform: rotate(-2deg);
  z-index: -1;
}

.system-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: scale(1.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.system-card:hover {
  transform: translateY(-5px) scale(1.055);
  box-shadow: 0 34px 82px rgba(8, 36, 50, 0.22);
}

.system-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 23px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards generales */

.cards-grid {
  display: grid;
  gap: 22px;
}

.pain-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pain-card,
.feature-card,
.screenshot-card,
.contact-form-card,
.solution-panel,
.cta-box,
.audience-box,
.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.pain-card,
.feature-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  min-height: 230px;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.pain-card:hover,
.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(162, 198, 54, 0.72);
  box-shadow: 0 28px 60px rgba(8, 36, 50, 0.15);
}

.pain-card span,
.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 38px;
  padding: 0 12px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: var(--secondary-soft);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.pain-card h3,
.feature-card h3 {
  margin-bottom: 12px;
}

.pain-card p,
.feature-card p {
  font-size: 0.95rem;
}

/* Sección problemas */

.pain-section {
  background:
    linear-gradient(180deg, rgba(245, 249, 250, 0.5), rgba(255, 255, 255, 0.96));
}

/* Solución */

.solution-section {
  background: linear-gradient(180deg, rgba(245, 249, 250, 0.84), rgba(255, 255, 255, 0.86));
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.solution-copy > p {
  font-size: 1.08rem;
  margin-top: 18px;
  max-width: 660px;
}

.solution-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.solution-list div {
  padding: 21px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.solution-list div:hover {
  transform: translateX(6px);
  border-color: rgba(162, 198, 54, 0.72);
}

.solution-list strong {
  display: block;
  color: var(--dark);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.solution-list span {
  color: var(--muted);
}

.solution-panel {
  position: relative;
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(162, 198, 54, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(9, 108, 138, 0.08), rgba(255, 255, 255, 0.96));
  overflow: hidden;
}

.solution-panel::after {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -76px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: rgba(9, 108, 138, 0.09);
}

.solution-panel img {
  width: 84px;
  margin-bottom: 28px;
}

.solution-panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  margin-bottom: 18px;
}

/* Features */

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Audience */

.audience-section {
  padding-top: 42px;
}

.audience-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 46px;
  background:
    radial-gradient(circle at top right, rgba(162, 198, 54, 0.28), transparent 30%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.audience-box h2 {
  color: var(--white);
}

.audience-box .eyebrow {
  color: #d9f48c;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 900;
}

/* Screenshots */

.screenshots-section {
  background: var(--light);
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.screenshot-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(8, 36, 50, 0.16);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  filter: saturate(0.96) contrast(1.02);
  transition: transform 0.28s ease;
}

.screenshot-card:hover img {
  transform: scale(1.035);
}

.screenshot-card div {
  padding: 24px;
  background: var(--white);
}

.screenshot-card h3 {
  margin-bottom: 10px;
}

/* Clientes */

.clients-section {
  background:
    radial-gradient(circle at center left, rgba(162, 198, 54, 0.18), transparent 28%),
    var(--white);
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.clients-marquee::before,
.clients-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 110px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  padding: 24px;
  animation: marquee 24s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-logo {
  width: 220px;
  height: 86px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-4px);
}

.client-logo img {
  max-width: 170px;
  max-height: 54px;
  object-fit: contain;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Testimonios */

.testimonials-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.testimonials-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  display: block;
  padding: 26px;
  border-radius: 24px;
  min-height: 315px;
  background:
    linear-gradient(135deg, rgba(9, 108, 138, 0.08), rgba(162, 198, 54, 0.12)),
    var(--white);
}

.quote-mark {
  display: block;
  color: var(--secondary);
  font-size: 3.2rem;
  line-height: 0.7;
  font-weight: 900;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
  font-weight: 700;
}

.testimonial-author {
  margin-top: 22px;
  min-width: auto;
}

.testimonial-author strong {
  display: block;
  color: var(--primary);
  font-size: 0.98rem;
}

.testimonial-author span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

/* CTA */

.final-cta {
  padding-bottom: 74px;
}

.cta-box {
  text-align: center;
  border-radius: 34px;
  padding: 58px 32px;
  background:
    radial-gradient(circle at top left, rgba(162, 198, 54, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(9, 108, 138, 0.11), rgba(255, 255, 255, 1));
}

.cta-box p {
  max-width: 690px;
  margin: 18px auto 0;
}

.cta-box .hero-actions {
  justify-content: center;
}

/* Contacto */

.contact-section {
  background: linear-gradient(180deg, var(--white), var(--light));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy p {
  margin-top: 18px;
  font-size: 1.04rem;
}

.contact-data {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.contact-data p {
  margin: 0;
  color: var(--text);
}

.contact-data strong {
  color: var(--primary);
}

.contact-form-card {
  border-radius: var(--radius-lg);
  padding: 30px;
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  color: var(--dark);
  font-weight: 900;
  font-size: 0.92rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 14px 15px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(9, 108, 138, 0.62);
  box-shadow: 0 0 0 4px rgba(9, 108, 138, 0.11);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.82rem;
  text-align: center;
}

/* WhatsApp flotante */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 36px rgba(18, 140, 126, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 46px rgba(18, 140, 126, 0.42);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

/* Footer */

.site-footer {
  background:
    radial-gradient(circle at top right, rgba(162, 198, 54, 0.18), transparent 28%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 54px 0 28px;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-content img {
  width: 170px;
  margin-bottom: 16px;
}

.footer-content p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  transition: color 0.22s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 0.9rem;
}

/* Páginas simples: gracias / privacidad */

.simple-page,
.legal-page {
  min-height: 70vh;
  background:
    radial-gradient(circle at top left, rgba(162, 198, 54, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(9, 108, 138, 0.13), transparent 30%),
    var(--light);
}

.simple-card,
.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 46px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.simple-card {
  text-align: center;
}

.simple-icon {
  width: 82px;
  margin: 0 auto 26px;
}

.simple-card h1,
.legal-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 760px;
}

.simple-card h1 {
  margin-inline: auto;
}

.simple-card p {
  max-width: 680px;
  margin: 20px auto 0;
  font-size: 1.06rem;
}

.simple-card .hero-actions {
  justify-content: center;
}

.legal-card h2 {
  font-size: 1.35rem;
  margin-top: 32px;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.legal-card p {
  margin-top: 10px;
}

.legal-card ul {
  margin-top: 16px;
  padding-left: 22px;
  color: var(--text);
}

.legal-card li {
  margin-bottom: 8px;
}

.legal-date {
  margin-top: 30px;
  font-weight: 800;
  color: var(--primary);
}

/* Responsive */

@media (max-width: 1040px) {
  .hero-grid,
  .solution-grid,
  .contact-grid,
  .audience-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  h1 {
    max-width: 820px;
    margin-inline: auto;
  }

  .hero-description {
    max-width: 720px;
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .system-card {
    transform: none;
  }

  .system-card:hover {
    transform: translateY(-5px);
  }

  .pain-grid,
  .features-grid,
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy {
    position: static;
  }

  .testimonials-grid-2 {
    grid-template-columns: 1fr;
  }

  .testimonials-grid-2 .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 70px 0;
  }

  .header-content {
    min-height: 70px;
  }

  .brand img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: var(--primary-dark);
    box-shadow: var(--shadow-soft);
  }

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

  .main-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding-top: 62px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero-description {
    font-size: 1.02rem;
  }

  .hero-visual::before {
    inset: -12px;
    border-radius: 28px;
  }

  .system-card {
    border-radius: 24px;
    padding: 9px;
  }

  .system-card img {
    border-radius: 16px;
  }

  .pain-grid,
  .features-grid,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .audience-box,
  .solution-panel,
  .cta-box,
  .contact-form-card,
  .testimonial-card,
  .simple-card,
  .legal-card {
    padding: 28px;
    border-radius: 24px;
  }

  .clients-track {
    animation-duration: 20s;
  }

  .client-logo {
    width: 180px;
    height: 76px;
  }

  .footer-content,
  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .audience-tags span {
    font-size: 0.82rem;
  }

  .contact-form-card {
    padding: 22px;
  }

  .clients-marquee::before,
  .clients-marquee::after {
    width: 54px;
  }
}


/* ===============================
   Zoho Forms embebido
   =============================== */

.zoho-form-card {
  overflow: hidden;
}

.zoho-form-header {
  margin-bottom: 18px;
}

.zoho-form-header h3 {
  color: var(--dark);
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.zoho-form-header p {
  font-size: 0.95rem;
}

.zoho-form-embed {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(8, 36, 50, 0.06);
}

.zoho-form-iframe {
  display: block;
  width: 100%;
  min-height: 1060px;
  height: 1060px;
  border: 0;
  background: var(--white);
}

.zoho-form-note {
  margin-top: 14px;
}

@media (max-width: 780px) {
  .zoho-form-iframe {
    min-height: 1140px;
    height: 1140px;
  }
}

@media (max-width: 480px) {
  .zoho-form-iframe {
    min-height: 1220px;
    height: 1220px;
  }
}
