/* projects/marketing/src/styles.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
img,
video {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
a {
  text-decoration: none;
  color: inherit;
}
html {
  scroll-behavior: auto;
  overflow-x: clip;
}
body {
  font-family:
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: #1f2937;
  background-color: #fff;
  overflow-x: hidden;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #7e22ce;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover {
  background-color: #6b21a8;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
  background-color: #fff;
  color: #6b21a8;
}
.btn-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 0.75rem;
  background-color: #fff;
  color: #7e22ce;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-on-dark:hover {
  background-color: #f3e8ff;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background-color: #fff;
  color: #059669;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-whatsapp:hover {
  background-color: #d1fae5;
}
.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.btn-img {
  width: 1.5rem;
  height: 1.5rem;
}
.btn-icon-big {
  width: 1.5rem;
  height: 1.5rem;
}
.badge-brand {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: #f3e8ff;
  color: #6b21a8;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #581c87;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}
.section-subtitle {
  color: #6b7280;
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
