/* [project]/src/components/cartasur/HomeLanding.module.css [app-client] (css) */
.HomeLanding-module__tMJ-2W__landingContainer {
  color: #334155;
  background-color: #f8fafc;
  flex-direction: column;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  display: flex;
  position: relative;
  overflow-x: hidden;
}

.HomeLanding-module__tMJ-2W__navbar {
  z-index: 50;
  -webkit-backdrop-filter: blur(12px);
  background: #ffffffd9;
  border-bottom: 1px solid #e2e8f0cc;
  width: 100%;
  position: sticky;
  top: 0;
  box-shadow: 0 4px 6px -1px #0000000d;
}

.HomeLanding-module__tMJ-2W__navContent {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  height: 5rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
}

.HomeLanding-module__tMJ-2W__brandInfo {
  flex-direction: column;
  display: flex;
}

.HomeLanding-module__tMJ-2W__brandLogo {
  object-fit: contain;
  width: auto;
  height: 44px;
  display: block;
}

.HomeLanding-module__tMJ-2W__navLinks {
  display: none;
}

@media (min-width: 768px) {
  .HomeLanding-module__tMJ-2W__navLinks {
    align-items: center;
    gap: 2rem;
    display: flex;
  }
}

.HomeLanding-module__tMJ-2W__navItem {
  color: #475569;
  border-radius: .375rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.HomeLanding-module__tMJ-2W__navItem:hover {
  color: #042a69;
  background-color: #042a690d;
}

.HomeLanding-module__tMJ-2W__contactBtn {
  color: #fff;
  cursor: pointer;
  background-color: #e3000f;
  border: none;
  border-radius: 9999px;
  padding: .6rem 1.25rem;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 14px #e3000f4d;
}

.HomeLanding-module__tMJ-2W__contactBtn:hover {
  background-color: #b9000c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #e3000f66;
}

.HomeLanding-module__tMJ-2W__heroSection {
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  position: relative;
}

@media (min-width: 1024px) {
  .HomeLanding-module__tMJ-2W__heroSection {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 4rem;
    padding-top: 2rem;
    display: grid;
  }
}

.HomeLanding-module__tMJ-2W__formSection {
  box-sizing: border-box;
  border-top: 1px solid #e8eef6;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5rem;
  display: flex;
  position: relative;
}

@media (min-width: 768px) {
  .HomeLanding-module__tMJ-2W__formSection {
    padding: 3rem 1.5rem 5rem;
  }
}

@media (min-width: 1024px) {
  .HomeLanding-module__tMJ-2W__formSection {
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 4rem;
    padding-top: 4rem;
    display: grid;
  }
}

.HomeLanding-module__tMJ-2W__bgBlob1 {
  opacity: .05;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, #042a69 0%, #0000 70%);
  width: 1500px;
  height: 800px;
  margin-left: -750px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-30%)rotate(10deg);
}

.HomeLanding-module__tMJ-2W__bgBlob2 {
  mix-blend-mode: multiply;
  filter: blur(80px);
  opacity: .15;
  pointer-events: none;
  z-index: 0;
  background-color: #f87171;
  border-radius: 50%;
  width: 24rem;
  height: 24rem;
  animation: 7s infinite alternate HomeLanding-module__tMJ-2W__blob;
  position: absolute;
  top: 10rem;
  right: 0;
}

@keyframes HomeLanding-module__tMJ-2W__blob {
  0% {
    transform: translate(0)scale(1);
  }

  33% {
    transform: translate(30px, -50px)scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px)scale(.9);
  }

  100% {
    transform: translate(0)scale(1);
  }
}

.HomeLanding-module__tMJ-2W__contentText {
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

@media (min-width: 1024px) {
  .HomeLanding-module__tMJ-2W__contentText {
    text-align: left;
    padding: 0;
  }
}

.HomeLanding-module__tMJ-2W__badge {
  color: #042a69;
  background-color: #e0e7ff;
  border: 1px solid #c7d2fe;
  border-radius: 9999px;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: .375rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  display: inline-flex;
  box-shadow: 0 1px 2px #0000000d;
}

.HomeLanding-module__tMJ-2W__badgeDot {
  background-color: #042a69;
  border-radius: 50%;
  width: .625rem;
  height: .625rem;
  margin-right: .5rem;
  animation: 2s cubic-bezier(.4, 0, .6, 1) infinite HomeLanding-module__tMJ-2W__pulse;
}

@keyframes HomeLanding-module__tMJ-2W__pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

.HomeLanding-module__tMJ-2W__heroTitle {
  color: #042a69;
  letter-spacing: -.025em;
  max-width: 340px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .HomeLanding-module__tMJ-2W__heroTitle {
    max-width: none;
    font-size: 3.75rem;
    line-height: 1.1;
  }
}

@media (min-width: 1024px) {
  .HomeLanding-module__tMJ-2W__heroTitle {
    margin-left: 0;
    margin-right: 0;
  }
}

.HomeLanding-module__tMJ-2W__heroTitleGradient {
  color: #0000;
  background-image: linear-gradient(to right, #042a69, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
}

.HomeLanding-module__tMJ-2W__heroSubtitle {
  color: #4b5563;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .HomeLanding-module__tMJ-2W__heroSubtitle {
    font-size: 1.25rem;
  }
}

.HomeLanding-module__tMJ-2W__features {
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  display: flex;
}

@media (min-width: 640px) {
  .HomeLanding-module__tMJ-2W__features {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .HomeLanding-module__tMJ-2W__features {
    justify-content: flex-start;
  }
}

.HomeLanding-module__tMJ-2W__featureItem {
  background-color: #fff;
  border: 1px solid #f1f5f9;
  border-radius: .75rem;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  display: flex;
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px -1px #0000001a;
}

.HomeLanding-module__tMJ-2W__featureIconWrapper {
  border-radius: 9999px;
  padding: .5rem;
  display: flex;
}

.HomeLanding-module__tMJ-2W__featureIconWrapper svg {
  width: 1.25rem;
  height: 1.25rem;
}

.HomeLanding-module__tMJ-2W__featureIconGreen {
  color: #16a34a;
  background-color: #dcfce7;
}

.HomeLanding-module__tMJ-2W__featureIconBlue {
  color: #2563eb;
  background-color: #dbeafe;
}

.HomeLanding-module__tMJ-2W__featureText {
  color: #334155;
  font-size: .95rem;
  font-weight: 600;
}

.HomeLanding-module__tMJ-2W__formContainerWrapper {
  z-index: 10;
  opacity: 0;
  animation: .8s ease-out .4s forwards HomeLanding-module__tMJ-2W__fadeInUp;
  position: relative;
}

.HomeLanding-module__tMJ-2W__formBackdrop {
  opacity: .15;
  filter: blur(16px);
  background: linear-gradient(to top right, #042a69, #60a5fa);
  border-radius: 1.5rem;
  position: absolute;
  inset: 0;
  transform: skewY(6deg);
  box-shadow: 0 20px 25px -5px #0000001a;
}

@media (min-width: 640px) {
  .HomeLanding-module__tMJ-2W__formBackdrop {
    transform: skewY(0)rotate(-6deg);
  }
}

.HomeLanding-module__tMJ-2W__formCard {
  background-color: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px #00000040;
}

.HomeLanding-module__tMJ-2W__formHeader {
  background-color: #042a69;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.HomeLanding-module__tMJ-2W__formHeaderDecoration {
  background-color: #ffffff0d;
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  position: absolute;
  top: -4rem;
  right: -3rem;
}

.HomeLanding-module__tMJ-2W__formHeaderTitle {
  color: #fff;
  z-index: 1;
  margin: 0 0 .5rem;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}

.HomeLanding-module__tMJ-2W__formHeaderSubtitle {
  color: #bfdbfe;
  z-index: 1;
  margin: 0;
  font-size: .875rem;
  font-weight: 500;
  position: relative;
}

.HomeLanding-module__tMJ-2W__formBody {
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  display: flex;
}

@media (min-width: 640px) {
  .HomeLanding-module__tMJ-2W__formHeader {
    padding: 1.5rem 2rem;
  }

  .HomeLanding-module__tMJ-2W__formBody {
    padding: 2rem;
  }
}

.HomeLanding-module__tMJ-2W__formGroup {
  flex-direction: column;
  gap: .25rem;
  display: flex;
}

.HomeLanding-module__tMJ-2W__formRow {
  grid-template-columns: 1fr;
  gap: 1.5rem;
  display: grid;
}

@media (min-width: 640px) {
  .HomeLanding-module__tMJ-2W__formRow {
    grid-template-columns: 1fr 1fr;
  }
}

.HomeLanding-module__tMJ-2W__formRowEmail {
  grid-template-columns: 2fr 1fr;
  gap: .5rem;
  display: grid;
}

.HomeLanding-module__tMJ-2W__formLabel {
  color: #334155;
  margin-bottom: 4px;
  font-size: .875rem;
  font-weight: 600;
  display: block;
}

.HomeLanding-module__tMJ-2W__inputWrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.HomeLanding-module__tMJ-2W__inputIcon {
  color: #94a3b8;
  pointer-events: none;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  left: 1rem;
}

.HomeLanding-module__tMJ-2W__formInput, .HomeLanding-module__tMJ-2W__formSelect {
  color: #0f172a;
  box-sizing: border-box;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: .75rem;
  width: 100%;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all .2s;
}

.HomeLanding-module__tMJ-2W__formInputHasIcon {
  padding-left: 2.75rem;
}

.HomeLanding-module__tMJ-2W__formInput:focus, .HomeLanding-module__tMJ-2W__formSelect:focus {
  background-color: #fff;
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px #3b82f633;
}

.HomeLanding-module__tMJ-2W__phoneInputGroup {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: .75rem;
  transition: all .2s;
  display: flex;
  overflow: hidden;
}

.HomeLanding-module__tMJ-2W__phoneInputGroup:focus-within {
  background-color: #fff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px #3b82f633;
}

.HomeLanding-module__tMJ-2W__phonePrefix {
  color: #64748b;
  background-color: #f1f5f9;
  border-right: 1px solid #e2e8f0;
  align-items: center;
  padding: 0 1rem;
  font-size: .875rem;
  font-weight: 600;
  display: flex;
}

.HomeLanding-module__tMJ-2W__phoneInput {
  color: #0f172a;
  background: none;
  border: none;
  outline: none;
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: .75rem 1rem;
  font-size: 1rem;
}

.HomeLanding-module__tMJ-2W__submitBtn {
  color: #fff;
  cursor: pointer;
  background-image: linear-gradient(to right, #22c55e, #16a34a);
  border: none;
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all .3s;
  display: flex;
  box-shadow: 0 10px 15px -3px #22c55e66;
}

.HomeLanding-module__tMJ-2W__submitBtn:hover {
  background-image: linear-gradient(to right, #16a34a, #15803d);
  transform: translateY(-2px)scale(1.02);
  box-shadow: 0 15px 20px -3px #22c55e80;
}

.HomeLanding-module__tMJ-2W__submitBtn svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: .5rem;
}

.HomeLanding-module__tMJ-2W__securityNote {
  text-align: center;
  color: #94a3b8;
  margin-top: 1rem;
  font-size: .75rem;
}

.HomeLanding-module__tMJ-2W__inputError {
  background-color: #fff5f5 !important;
  border-color: #ef4444 !important;
}

.HomeLanding-module__tMJ-2W__inputError:focus {
  box-shadow: 0 0 0 3px #ef44442e !important;
}

.HomeLanding-module__tMJ-2W__fieldError {
  color: #dc2626;
  margin-top: .3rem;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

.HomeLanding-module__tMJ-2W__formErrorBanner {
  color: #b91c1c;
  background-color: #fef2f2;
  border-top: 1px solid #fecaca;
  border-bottom: 1px solid #fecaca;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

@media (min-width: 640px) {
  .HomeLanding-module__tMJ-2W__formErrorBanner {
    padding: .75rem 2rem;
  }
}

.HomeLanding-module__tMJ-2W__spinnerDot {
  border: 2px solid #fff6;
  border-top-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-right: .5rem;
  animation: .7s linear infinite HomeLanding-module__tMJ-2W__spin;
  display: inline-block;
}

@keyframes HomeLanding-module__tMJ-2W__spin {
  to {
    transform: rotate(360deg);
  }
}

.HomeLanding-module__tMJ-2W__submitBtn:disabled {
  opacity: .75;
  cursor: not-allowed;
  transform: none !important;
}

.HomeLanding-module__tMJ-2W__successScreen {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 3rem 1.5rem;
  display: flex;
}

@media (min-width: 640px) {
  .HomeLanding-module__tMJ-2W__successScreen {
    padding: 3.5rem 2.5rem;
  }
}

.HomeLanding-module__tMJ-2W__successIcon {
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 700;
  animation: .4s cubic-bezier(.34, 1.56, .64, 1) both HomeLanding-module__tMJ-2W__popIn;
  display: flex;
  box-shadow: 0 8px 24px #22c55e59;
}

@keyframes HomeLanding-module__tMJ-2W__popIn {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.HomeLanding-module__tMJ-2W__successTitle {
  color: #042a69;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.HomeLanding-module__tMJ-2W__successSubtitle {
  color: #475569;
  margin: 0;
  font-size: .925rem;
  line-height: 1.6;
}

.HomeLanding-module__tMJ-2W__successResetBtn {
  color: #64748b;
  cursor: pointer;
  background: none;
  border: 1px solid #cbd5e1;
  border-radius: 9999px;
  margin-top: 1rem;
  padding: .5rem 1.25rem;
  font-size: .85rem;
  transition: all .2s;
}

.HomeLanding-module__tMJ-2W__successResetBtn:hover {
  color: #042a69;
  border-color: #042a69;
}

.HomeLanding-module__tMJ-2W__footer {
  background-color: #fff;
  border-top: 1px solid #e2e8f0;
  width: 100%;
  margin-top: auto;
}

.HomeLanding-module__tMJ-2W__footerTop {
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
}

@media (min-width: 768px) {
  .HomeLanding-module__tMJ-2W__footerTop {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .HomeLanding-module__tMJ-2W__footerTop {
    grid-template-columns: 1.2fr 1.5fr 1.5fr 1.2fr;
  }
}

.HomeLanding-module__tMJ-2W__footerCol {
  flex-direction: column;
  gap: 1.25rem;
  display: flex;
}

.HomeLanding-module__tMJ-2W__footerIconLink {
  color: #042a69;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.HomeLanding-module__tMJ-2W__footerIconLink span {
  font-size: 1.25rem;
}

.HomeLanding-module__tMJ-2W__footerIconLink strong {
  font-size: .875rem;
  font-weight: 700;
}

.HomeLanding-module__tMJ-2W__footerColLinks {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.HomeLanding-module__tMJ-2W__footerColLinks a {
  color: #64748b;
  font-size: .875rem;
  text-decoration: none;
  transition: color .2s;
}

.HomeLanding-module__tMJ-2W__footerColLinks a:hover {
  color: #042a69;
}

.HomeLanding-module__tMJ-2W__footerColFiscal {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  display: flex;
}

.HomeLanding-module__tMJ-2W__fiscalPlaceholder {
  color: #fff;
  text-align: center;
  background-color: #0ea5e9;
  border: 4px solid #fff;
  justify-content: center;
  align-items: flex-end;
  width: 80px;
  height: 100px;
  padding: 1rem;
  font-size: .75rem;
  font-weight: bold;
  display: flex;
  box-shadow: 0 0 0 1px #0ea5e9;
}

.HomeLanding-module__tMJ-2W__usuariosFinancieros {
  color: #fff;
  background-color: #f59e0b;
  border-radius: 4px;
  flex-direction: column;
  gap: .25rem;
  padding: .75rem;
  display: flex;
}

.HomeLanding-module__tMJ-2W__usuariosFinancieros span {
  font-size: .7rem;
  font-weight: bold;
}

.HomeLanding-module__tMJ-2W__usuariosFinancieros a {
  color: #fff;
  font-size: .7rem;
  text-decoration: underline;
}

.HomeLanding-module__tMJ-2W__footerBottom {
  color: #94a3b8;
  text-align: center;
  background-color: #111827;
  padding: 1.5rem;
}

.HomeLanding-module__tMJ-2W__footerCopy {
  max-width: 1280px;
  margin: 0 auto;
  font-size: .75rem;
}

/* [project]/src/components/landing/WhatsAppConversion.module.css [app-client] (css) */
.WhatsAppConversion-module__qf1nfa__section {
  text-align: center;
  -webkit-backdrop-filter: blur(14px);
  background: #ffffffe6;
  border: 1px solid #25d3662e;
  border-radius: 2rem;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 3rem auto;
  padding: 4rem 1.5rem 3rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px #042a6914, 0 1px 4px #0000000d;
}

.WhatsAppConversion-module__qf1nfa__blobDecor {
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, #25d36624 0%, #0000 70%);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  position: absolute;
  top: -60px;
  right: -60px;
}

.WhatsAppConversion-module__qf1nfa__section > :not(.WhatsAppConversion-module__qf1nfa__blobDecor) {
  z-index: 1;
  position: relative;
}

.WhatsAppConversion-module__qf1nfa__badge {
  color: #1a9c52;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: #25d3661f;
  border: 1px solid #25d36659;
  border-radius: 9999px;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
  padding: .35rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  display: inline-flex;
}

.WhatsAppConversion-module__qf1nfa__shieldIcon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.WhatsAppConversion-module__qf1nfa__title {
  color: #042a69;
  letter-spacing: -.02em;
  margin: 0 0 .75rem;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
}

.WhatsAppConversion-module__qf1nfa__titleHighlight {
  color: #25d366;
}

.WhatsAppConversion-module__qf1nfa__subtitlePrimary {
  color: #1e3a5f;
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.WhatsAppConversion-module__qf1nfa__subtitleSecondary {
  color: #5a7090;
  max-width: 440px;
  margin: 0 0 2rem;
  font-size: .92rem;
  line-height: 1.55;
}

.WhatsAppConversion-module__qf1nfa__ctaButton {
  color: #fff;
  letter-spacing: .01em;
  cursor: pointer;
  will-change: transform, box-shadow;
  background: #25d366;
  border: none;
  border-radius: 9999px;
  outline: none;
  justify-content: center;
  align-items: center;
  gap: .65rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex;
  box-shadow: 0 4px 20px #25d36659;
}

.WhatsAppConversion-module__qf1nfa__ctaButton:hover {
  background: #1db954;
}

.WhatsAppConversion-module__qf1nfa__ctaButton:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #25d366;
}

.WhatsAppConversion-module__qf1nfa__waIcon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.WhatsAppConversion-module__qf1nfa__divider {
  border: none;
  border-top: 1px dashed #5a70904d;
  width: 100%;
  max-width: 320px;
  margin: 1.75rem 0 1.5rem;
}

.WhatsAppConversion-module__qf1nfa__legalText {
  color: #7a90a8;
  max-width: 480px;
  font-size: .78rem;
  line-height: 1.6;
}

.WhatsAppConversion-module__qf1nfa__legalLink {
  color: #3b82f6;
  text-underline-offset: 2px;
  text-decoration: underline;
  transition: color .15s;
}

.WhatsAppConversion-module__qf1nfa__legalLink:hover {
  color: #042a69;
}

@media (max-width: 480px) {
  .WhatsAppConversion-module__qf1nfa__section {
    border-radius: 1.5rem;
    margin: 2rem 1rem;
    padding: 3rem 1.25rem 2rem;
  }

  .WhatsAppConversion-module__qf1nfa__ctaButton {
    width: 100%;
    padding: .95rem 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .WhatsAppConversion-module__qf1nfa__section {
    margin: 4rem auto;
    padding: 5rem 3rem 3.5rem;
  }
}

/*# sourceMappingURL=src_components_4352f9b3._.css.map*/