:root {
  --bg: #050a46;
  --bg-2: #08115a;
  --bg-3: #0c1875;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.11);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --accent: #d8b543;
  --accent-soft: rgba(216, 181, 67, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1200px;
  --fontFamily: "Poppins", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--fontFamily);
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 181, 67, 0.08), transparent 20%),
    radial-gradient(
      circle at 100% 10%,
      rgba(100, 130, 255, 0.18),
      transparent 24%
    ),
    linear-gradient(180deg, #050a46 0%, #07105a 42%, #04083b 100%);
}

a,
button,
input,
textarea {
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-soft::before {
  content: "";
  position: absolute;
  inset: 28px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.015)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

h4 {
  font-size: 1.2rem;
}

p,
li,
span,
a {
  color: var(--muted);
}

.text-accent {
  color: var(--accent);
}

.text-center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(216, 181, 67, 0.1);
  border: 1px solid rgba(216, 181, 67, 0.18);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
}


/* header */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5, 10, 70, 0.62);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header.scrolled {
  background: rgba(5, 10, 70, 0.88);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  flex: 1;
}

.nav a,
.mobile-nav a,
.footer-links a,
.contact-box a {
  text-decoration: none;
}

.nav a {
  color: #fff;
  font-weight: 500;
  position: relative;
  opacity: 0.9;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  margin: 6px 0;
}

.mobile-panel {
  display: none;
}

.login-btn,
.btn-primary,
.btn-secondary,
.contact-form button,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.login-btn {
  padding: 12px 18px;
  border: 1px solid rgba(216, 181, 67, 0.35);
  color: var(--accent);
  background: rgba(216, 181, 67, 0.07);
}

.login-btn:hover,
.btn-secondary:hover,
.btn-primary:hover,
.mobile-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  min-width: fit-content;
  padding: 15px 28px;
  background: linear-gradient(180deg, #e3c459 0%, #d8b543 100%);
  color: #08104b;
  box-shadow: 0 18px 34px rgba(216, 181, 67, 0.22);
}

.btn-secondary {
  padding: 15px 28px;
  border: 1px solid rgba(216, 181, 67, 0.35);
  color: var(--accent);
  background: rgba(216, 181, 67, 0.05);
}

/* hero */

.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(216, 181, 67, 0.08);
  filter: blur(40px);
  top: -120px;
  right: -120px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(96, 122, 255, 0.16);
  filter: blur(40px);
  left: -140px;
  top: 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin-bottom: 12px;
  max-width: 11ch;
}

.hero-copy h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin-bottom: 16px;
}

.hero-lead {
  color: #fff;
  font-weight: 500;
  margin-bottom: 12px;
}

.hero-copy p {
  max-width: 620px;
  font-size: 1.04rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 24px;
}

.hero-points div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-points i {
  color: var(--accent);
}

/* mockup */

.hero-product {
  position: relative;
  min-height: 560px;
}

.dashboard-shell {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 14px;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 6px 8px 14px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.window-bar span:first-child {
  background: rgba(255, 99, 99, 0.9);
}
.window-bar span:nth-child(2) {
  background: rgba(255, 201, 76, 0.9);
}
.window-bar span:nth-child(3) {
  background: rgba(74, 222, 128, 0.9);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  min-height: 470px;
}

.sidebar {
  background: rgba(7, 13, 60, 0.92);
  border-radius: 22px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-logo {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.sidebar-menu {
  display: grid;
  gap: 12px;
}

.menu-item {
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-item.active {
  background: rgba(216, 181, 67, 0.22);
  border: 1px solid rgba(216, 181, 67, 0.24);
}

.dashboard-main {
  display: grid;
  gap: 14px;
}

.dashboard-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.top-card,
.calendar-panel,
.info-card,
.feature,
.testimonial,
.about-card,
.visual-card,
.step-card,
.contact-box,
.contact-form,
.cta-band-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.top-card,
.calendar-panel,
.info-card {
  border-radius: 22px;
  padding: 18px;
}

.top-card {
  min-height: 96px;
}

.mini-title {
  width: 84px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 16px;
}

.mini-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.line-lg {
  width: 80%;
  margin-bottom: 10px;
}

.line-sm {
  width: 42%;
}

.stat-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(216, 181, 67, 0.24);
  margin-bottom: 16px;
}

.calendar-panel {
  min-height: 220px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.panel-title {
  width: 140px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.panel-actions {
  display: flex;
  gap: 8px;
}

.panel-actions span {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.calendar-cell {
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.calendar-cell.highlight {
  background: rgba(216, 181, 67, 0.24);
}

.calendar-cell.accent {
  background: rgba(96, 122, 255, 0.28);
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.info-list {
  display: grid;
  gap: 10px;
}

.info-list span {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.chart-line {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 70px;
}

.chart-line span {
  flex: 1;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(
    180deg,
    rgba(216, 181, 67, 0.45),
    rgba(216, 181, 67, 0.12)
  );
}

.chart-line span:nth-child(1) {
  height: 34px;
}
.chart-line span:nth-child(2) {
  height: 52px;
}
.chart-line span:nth-child(3) {
  height: 70px;
}
.chart-line span:nth-child(4) {
  height: 46px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 240px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(8, 16, 80, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.floating-card svg {
  fill: var(--accent);
  width: fit-content;
  margin-top: 3px;
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.floating-card p {
  font-size: 0.86rem;
}

.floating-card-a {
  left: -28px;
  top: 70px;
}

.floating-card-b {
  right: -16px;
  bottom: 40px;
}

.app-preview-slider {
  margin: 44px auto 0;
  padding-bottom: 54px;
  width: min(80%, 1100px);
  overflow: hidden;
}

.app-preview-slider .swiper-wrapper {
  align-items: center;
}

.app-preview-slider .swiper-slide {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 80px;
}

.app-preview-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 919;
  object-fit: cover;
}

.app-preview-slider .swiper-pagination-bullet {
  background: rgb(200 200 200);
  opacity: 1;
}

.app-preview-slider .swiper-pagination-bullet-active {
  background: var(--accent);
}

@media (max-width: 1024px) {
  .app-preview-slider {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .app-preview-slider .swiper-button-prev,
  .app-preview-slider .swiper-button-next {
    width: 42px;
    height: 42px;
  }
}

/* strip */

.logo-strip {
  padding: 0 0 24px;
}

.logo-strip-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-strip-box span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 500;
}

/* about */

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: start; /* importante */
}

.about-card,
.about-visuals,
.visual-card,
.visual-stage {
  height: 100%;
}

.about-card {
  padding: 38px;
  border-radius: 28px;
  height: fit-content;
}

.about-card h2 {
  margin-bottom: 24px;
}

.about-card p + p {
  margin-top: 20px;
}

.about-card h3 {
  margin-top: 28px;
}

.about-visuals {
  display: flex;
}

.visual-card {
  border-radius: 28px;
  overflow: hidden;
  flex: 1;
}

.visual-card-tall {
  min-height: auto;
}

.visual-stage {
  width: 100%;
}

.visual-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 100px;
}

.timeline-node {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.timeline-node.active {
  background: var(--accent);
  border-color: var(--accent);
}

.timeline-line {
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

/* headings */

.section-heading {
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.section-heading h3 {
  margin-bottom: 16px;
}

.section-heading p {
  max-width: 860px;
  margin: 0 auto;
}

/* steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.step-card {
  padding: 30px;
  border-radius: 22px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.step-card h3 {
  margin-bottom: 14px;
}

/* features */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 26px;
  margin-top: 44px;
}

.feature {
  position: relative;
  padding: 30px;
  border-radius: 22px;
}

.feature svg {
  padding: 20px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(216, 181, 67, 0.14);
  fill: var(--accent);
  margin-bottom: 18px;
  justify-items: center;
  align-items: center;
  justify-content: center;
}

.feature h4 {
  margin-bottom: 16px;
  color: #fff;
}

.feature ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

.feature li + li {
  margin-top: 6px;
}

.feature p + p {
  margin-top: 8px;
}

.feature strong {
  color: #fff;
}

/* cta band */

.cta-band-box {
  padding: 34px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(216, 181, 67, 0.08)
    ),
    rgba(255, 255, 255, 0.05);
}

.cta-band-box h2 {
  margin-bottom: 10px;
}

/* testimonials */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.testimonial {
  position: relative;
  padding: 28px;
  border-radius: 22px;
}

.testimonial::before {
  content: "“";
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 70px;
  color: rgba(216, 181, 67, 0.18);
  line-height: 1;
}

.testimonial img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid rgba(216, 181, 67, 0.22);
}

.testimonial p {
  margin-bottom: 12px;
}

.testimonial b {
  color: #fff;
}

/* Faq */

/* faq */

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 26px;
  margin-top: 44px;
}

.faq-item {
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.2rem;
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
}

/* contact */

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  margin-top: 44px;
}

.contact-column {
  display: grid;
  gap: 20px;
}

.contact-box,
.contact-form {
  padding: 28px;
  border-radius: 22px;
}

.contact-box svg {
  padding: 16px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(216, 181, 67, 0.14);
  fill: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.contact-box strong {
  color: #fff;
}

.contact-box a {
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: none;
  padding: 15px 30px;
  background: linear-gradient(180deg, #e3c459 0%, #d8b543 100%);
  color: #08104b;
  cursor: pointer;
  font-family: var(--fontFamily);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.4rem;
}
.contact-form button svg{
  width: 18px;
  height: 18px;
}

.form-feedback {
  min-height: 22px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
}

.form-feedback.success {
  color: #b6f3c9;
}

.form-feedback.error {
  color: #ffc1c1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

/* footer */

.footer {
  padding: 48px 0 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 28px;
}

.footer-brand p {
  margin-top: 16px;
  max-width: 420px;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 6px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social a svg path{
  transition: fill .2 ease-in-out;
}

.social a:hover {
  color: var(--accent);
  border-color: rgba(216, 181, 67, 0.24);
}
.social a:hover > svg > path{
  fill: var(--accent);
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, -40px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Variações opcionais */
[data-reveal="left"] {
  transform: translate3d(-40px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(40px, 0, 0);
}

[data-reveal="zoom"] {
  transform: scale(0.94);
}

[data-reveal="zoom"].is-visible {
  transform: scale(1);
}

/* mobile cta */

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  padding: 15px 18px;
  background: linear-gradient(180deg, #e3c459 0%, #d8b543 100%);
  color: #08104b;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
  display: none;
}

.pulse-dot {
  animation: pulseGlow 2s infinite;
}

.active-cell {
  animation: softFloat 3.5s ease-in-out infinite;
}

.floating-card {
  animation: floatCard 5s ease-in-out infinite;
}

.floating-card-b {
  animation-delay: 1.5s;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(216, 181, 67, 0.24);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(216, 181, 67, 0);
    transform: scale(1.04);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* focus */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(216, 181, 67, 0.8);
  outline-offset: 3px;
}

/* responsive */

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-main,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-copy p {
    margin: 0 auto;
  }

  .hero-buttons,
  .hero-points {
    justify-content: center;
  }

  .hero-product {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .about-visuals {
    /*grid-template-columns: 1fr 1fr;*/
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .cta-band-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 80px 0;
  }

  .header-content {
    justify-content: space-between;
  }

  .nav,
  .desktop-login {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid transparent;
  }

  .mobile-panel.open {
    max-height: 360px;
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav {
    display: grid;
    gap: 12px;
    padding: 18px 16px 20px;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
  }

  .mobile-nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
  }

  .dashboard-grid,
  .dashboard-top,
  .bottom-row,
  .about-visuals {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .hero-product {
    min-height: auto;
  }

  .feature,
  .testimonial,
  .contact-box,
  .contact-form,
  .about-card,
  .visual-card,
  .step-card,
  .cta-band-box {
    padding: 24px;
  }

  .btn-primary,
  .btn-secondary,
  .contact-form button {
    width: 100%;
  }

  .mobile-cta {
    display: inline-flex;
  }

  .footer {
    padding-bottom: 110px;
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  /*[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }*/
}
