:root {
  /* Cores principais */
  --black: #0a0a0b;
  --white: #ffffff;

  /* Paleta de roxos */
  --purple-dark: #4d438c;
  --purple-bright: #cc5deb;
  --purple-light: #c084fc;
  --purple-gradient-dark: #733585;
  --purple-deep: #151226;

  /* Tons de cinza */
  --grey-dark: #303030;
  --grey-darker: rgba(131, 131, 131, 0.2);
  --grey-medium: #838383;
  --grey-text: #4a4a52;
  --grey-light: #e8e6eb;

  /* Cores de UI */
  --nav-color: rgba(192, 132, 252, 0.9);
  --input-bg: rgba(168, 85, 247, 0.2);
  --bg-light: #f5f4f6;
  --faq-accent: #e279f2;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

.raleway {
  font-family: "Raleway", sans-serif;
}

/* Utilities */
.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-vertical-center {
  display: flex;
  justify-content: center;
}

.page {
  min-height: 768px;
  height: 60vh;
  position: relative;
}

.bg-image {
  background-image: url("assets/hero-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lines-pattern {
  opacity: 0.05;
  position: absolute;
  top: 0;
  left: 0;
}

.lines-pattern-middle {
  opacity: 0.05;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  flex: 1;
  width: 100%;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 2rem;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 32px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  font-family: "Poppins", sans-serif;
}

nav a:hover {
  color: var(--nav-color);
}

.btn-client {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, #a855f7 0%, var(--purple-light) 100%);
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  flex-shrink: 0;
}

.btn-client:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.btn-client svg {
  width: 18px;
  height: 18px;
}

/* Hero */
.hero {
  gap: 3rem;
  align-items: flex-end;
  height: 100%;
  flex: 1;
}

.hero-content {
  height: 100%;
  justify-content: center;
  align-items: flex-start;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  font-family: "Raleway", sans-serif;
}

.hero-content .subheadline {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-family: "Raleway", sans-serif;
  line-height: 1.5;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--purple-bright);
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover {
  background: #b845d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204, 93, 235, 0.5);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  object-position: bottom right;
}

/* Simulador */
.simulator {
  background: var(--bg-light);
  padding: 4rem 0 5rem;
}

.simulator-header {
  margin-bottom: 2.5rem;
}

.simulator-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 0.5rem;
}

.simulator-header p {
  font-size: 1rem;
  color: var(--grey-text);
  font-weight: 400;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.sim-card {
  border-radius: 0px 32px 0px 32px;
  padding: 1.5rem 1.75rem;
  height: 100%;
}

.sim-card--asset {
  background: var(--grey-dark);
  color: var(--white);
}

.sim-card--asset h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.sim-card--asset .sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.asset-select {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--grey-darker);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.asset-select:hover {
  opacity: 0.95;
}

.asset-select svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--purple-bright);
}

.asset-select-main {
  flex: 1;
}

.asset-select-main .name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.asset-select-main .yield {
  font-size: 0.9rem;
  color: var(--purple-bright);
  font-weight: 600;
}

.asset-select .chevron {
  color: rgba(255, 255, 255, 0.6);
  width: 20px;
  height: 20px;
}

.asset-details {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.asset-details strong {
  font-weight: 600;
  color: var(--white);
}

.sim-card--form {
  background: var(--purple-dark);
  color: var(--white);
}

.sim-card--form h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.form-group input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--input-bg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-footer a {
  font-size: 0.9rem;
  color: var(--purple-light);
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

.btn-simulate {
  padding: 0.9rem 1.75rem;
  background: var(--purple-bright);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-simulate:hover {
  background: #9333ea;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* Quem somos */
.about {
  background: var(--white);
  padding: 4rem 0 5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-heading {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: var(--purple-dark);
}

.about-heading h2 {
  font-weight: 600;
  font-family: "Raleway", sans-serif;
}

.about-heading .highlight {
  color: var(--purple-bright);
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-badge-content {
  background: var(--purple-dark);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
}

.about-text {
  color: var(--grey-text);
  font-size: 1rem;
  line-height: 1.7;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Método Mohz */
.metodo {
  background-image: url("assets/fundo-metodos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: auto;
}

.metodo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--black);
  clip-path: polygon(0 0, 46% 0, 28% 100%, 0 100%);
}

.metodo-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  min-height: 700px;
  padding: 4rem;
}

.metodo-line1 {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  color: var(--white);
  font-family: "Raleway", sans-serif;
  margin-bottom: 0.25rem;
}

.metodo-line2 {
  display: block;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--purple-bright);
  font-family: "Raleway", sans-serif;
}

.metodo-cubos {
  position: absolute;
  left: 34%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  z-index: 2;
  pointer-events: none;
}

.metodo-right {
  padding-left: 8rem;
}

.metodo-list {
  list-style: none;
}

.metodo-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.metodo-list li:last-child {
  margin-bottom: 0;
}

.metodo-arrow {
  font-size: 1.25rem;
  color: var(--black);
  flex-shrink: 0;
  line-height: 1.4;
}

.metodo-list strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.metodo-list p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
}

/* Simulador V2 */
.simulador-section {
  background: var(--bg-light);
  padding: 4rem 0 5rem;
}

.simv2-header {
  margin-bottom: 2.5rem;
}

.simv2-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--purple-bright);
  margin-bottom: 0.5rem;
  font-family: "Raleway", sans-serif;
  line-height: 1.2;
}

.simv2-header p {
  font-size: 1rem;
  color: var(--grey-text);
}

.simv2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.simv2-form-card {
  background: var(--grey-dark);
  border-radius: 0 32px 0 32px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--white);
}

.simv2-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.simv2-select-native {
  width: 100%;
  padding: 0.85rem 2.75rem 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255%2C255%2C255%2C0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 18px;
}

.simv2-select-native:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.simv2-select-native:focus {
  border-color: var(--purple-bright);
  background-color: rgba(255, 255, 255, 0.1);
}

.simv2-select-native option {
  background: #303030;
  color: var(--white);
  font-weight: 400;
}

.simv2-meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}

.simv2-meta strong {
  font-weight: 600;
  color: var(--white);
}

.simv2-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 2px solid var(--purple-bright);
  border-radius: 10px;
  color: var(--grey-dark);
  font-size: 1.05rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
}

.simv2-btn {
  width: 100%;
  padding: 1rem;
  background: var(--purple-bright);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  margin-top: auto;
}

.simv2-btn:hover {
  background: #b845d4;
  transform: translateY(-1px);
}

.simv2-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.simv2-btn:disabled:hover {
  background: var(--purple-bright);
  transform: none;
}

.simv2-result-card.simv2-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s;
}

.simv2-result-card {
  background: var(--white);
  border-radius: 0 32px 0 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.simv2-result-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-dark);
  padding: 1.75rem 2rem 0;
}

.simv2-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
  padding: 1.5rem 3rem 0;
  min-height: 220px;
}

.simv2-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 200px;
  justify-content: flex-end;
}

.simv2-bar-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 0.5rem;
  white-space: nowrap;
  text-align: center;
}

.simv2-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.simv2-bar--grey {
  background: #c5c5c5;
}

.simv2-bar--purple {
  background: var(--purple-dark);
}

.simv2-legend {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--purple-dark);
  margin-top: 1.5rem;
}

.simv2-legend-col {
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.simv2-legend-col:last-child {
  border-right: none;
}

.simv2-legend-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.simv2-legend-mohz {
  font-style: italic;
}

.simv2-legend-rate {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Entenda */
.entenda-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.entenda-left {
  background: var(--bg-light);
  display: flex;
  align-items: center;
  padding: 5rem 4rem;
}

.entenda-left-inner {
  max-width: 480px;
}

.entenda-left h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--purple-bright);
  font-family: "Raleway", sans-serif;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.entenda-left p {
  font-size: 1rem;
  color: var(--grey-text);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.entenda-left p:last-child {
  margin-bottom: 0;
}

.entenda-right {
  background-image: url("assets/bgentenda.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 5rem 4rem;
}

.entenda-stats {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.entenda-stat h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--purple-bright);
  font-family: "Raleway", sans-serif;
  margin-bottom: 0.4rem;
}

.entenda-stat p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
}

.entenda-source {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  display: block;
  margin-top: 0.25rem;
}

/* Oportunidades */
.opportunities {
  height: 100%;
  position: relative;
  padding: 4rem 0 5rem;
  background: linear-gradient(
    to bottom,
    var(--purple-dark),
    var(--purple-deep)
  );
}
.opportunities .lines-pattern {
  width: 50vw;
}

.opportunities .lines-pattern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opportunities-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.opportunities-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: "Raleway", sans-serif;
}

.opportunities-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  font-family: "Raleway", sans-serif;
}

.oppo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.oppo-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  color: var(--grey-dark);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.oppo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.oppo-card-image {
  width: 100%;
  aspect-ratio: 400 / 220;
  object-fit: cover;
  display: block;
}

.oppo-card-body {
  padding: 1.25rem 1.5rem;
}

.oppo-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.oppo-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--grey-medium);
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--grey-medium);
  border-radius: 6px;
  margin-bottom: 1rem;
}

.oppo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--grey-text);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.oppo-meta p {
  color: var(--grey-medium);
}

.oppo-meta strong {
  color: var(--purple-dark);
}

.oppo-disponivel {
  margin-top: 1rem;
}

.oppo-disponivel-label {
  font-size: 0.85rem;
  color: var(--grey-text);
  margin-bottom: 0.5rem;
}

.oppo-progress {
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.oppo-progress-fill {
  height: 100%;
  background: var(--purple-dark);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.oppo-progress-pct {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-dark);
}

/* Skeleton Loading */
@keyframes skeleton-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  border-radius: 6px;
}

.oppo-card--skeleton {
  pointer-events: none;
}

.skeleton-image {
  width: 100%;
  aspect-ratio: 400 / 220;
  border-radius: 16px 16px 0 0;
}

.skeleton-title {
  height: 1.5rem;
  width: 80%;
  margin-bottom: 0.75rem;
}

.skeleton-tag {
  height: 1.5rem;
  width: 40%;
  margin-bottom: 1rem;
}

.skeleton-meta {
  height: 2.5rem;
  width: 100%;
  margin-bottom: 0.5rem;
}

.skeleton-progress {
  height: 4rem;
  width: 100%;
  margin-top: 0.5rem;
}

/* Empty & Error States */
.oppo-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  color: var(--grey-text);
}

.oppo-empty p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.oppo-empty p:last-of-type {
  margin-bottom: 0;
}

.oppo-error {
  color: var(--grey-dark);
}

.btn-retry {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--purple-dark);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.btn-retry:hover {
  background: #5d3890;
  transform: translateY(-1px);
}

.oppo-cta-wrap {
  text-align: center;
}

.btn-invest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border: 2px solid var(--white);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-invest:hover {
  background: #5d3890;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76, 45, 122, 0.5);
  border-color: var(--purple-light);
}

/* Diferenciais */
.diferenciais {
  background-image: url("assets/bgentenda.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.diferenciais .lines-pattern-bottom {
  position: absolute;
  opacity: 0.5;
  bottom: 0;
  left: 0;
  width: 60vw;
}

.diferenciais .lines-pattern-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.diferenciais .triangle-black {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 270px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 0 250%);
}

.diferenciais::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 150%);
}

.diferenciais .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.diff-left {
  display: flex;
  flex-direction: column;
}

.diff-heading {
  padding: 2.5rem 2rem 1.5rem 2.5rem;
  flex-shrink: 0;
}

.diff-heading .line1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--grey-dark);
  display: block;
  font-family: "Raleway", sans-serif;
}

.diff-heading .line2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--purple-bright);
  display: block;
  font-family: "Raleway", sans-serif;
}

.diff-visual {
  flex: 1;
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.diff-visual img {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.diff-right {
  padding: 2.5rem 2.5rem 3rem;
  display: flex;
  align-items: center;
}

.diff-list {
  list-style: none;
}

.diff-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

.diff-list li:last-child {
  margin-bottom: 0;
}

.diff-list .arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--black);
  margin-top: 0.2rem;
}

/* App Mohz */
.app-section {
  background: url("assets/bgapp.png") no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.app-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  font-family: "Raleway", sans-serif;
}

.app-content .desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.app-content .slogan {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.app-badge {
  text-decoration: none;
}

.app-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-phones img {
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.app-phones .app-phone-2 {
  margin-right: -400px;
  margin-top: -50px;
}

.app-qrcode {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1rem;
  border-radius: 16px;
  max-width: 300px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.app-qrcode #qrcode {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: var(--white);
  border-radius: 8px;
}

.app-qrcode #qrcode img {
  border-radius: 8px;
}

.app-qrcode p {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

/* Dúvidas / FAQ */
.faq-section {
  background: url("assets/bgduvidas.png") no-repeat center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  height: 100%;
}

.faq-intro {
  position: sticky;
  top: 2rem;
}

.faq-intro h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
  font-family: "Raleway", sans-serif;
}

.faq-intro .sub {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--faq-accent);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: "Raleway", sans-serif;
}

.faq-intro p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.faq-list {
  list-style: none;
}

.faq-item {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.faq-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-weight: 400;
}

/* Footer */
.footer {
  background: var(--grey-light);
  padding: 3rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-logo {
  display: block;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) saturate(100%) invert(18%) sepia(60%) saturate(1200%)
    hue-rotate(255deg);
}

.footer-address {
  font-size: 0.95rem;
  color: var(--grey-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-contact a {
  color: var(--purple-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact .sep {
  color: rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  user-select: none;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: var(--purple-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--grey-text);
}

.disclaimer-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: justify;
}

.disclaimer-section p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--grey-text);
  margin: 0;
}

/* Responsivo */
@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content .subheadline {
    margin-bottom: 1.5rem;
  }

  .hero-image {
    justify-content: center;
    order: -1;
  }

  .hero-image img {
    max-height: 50vh;
  }

  .simulator-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .form-footer .btn-simulate {
    width: 100%;
  }

  .entenda-section {
    grid-template-columns: 1fr;
  }

  .entenda-left,
  .entenda-right {
    padding: 3rem 1.5rem;
  }

  .simv2-grid {
    grid-template-columns: 1fr;
  }

  .simv2-chart {
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
  }

  .metodo::before {
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  }

  .metodo-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .metodo-cubos {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 200px;
    margin: 2rem auto;
    display: block;
  }

  .metodo-right {
    padding-left: 0;
  }

  .oppo-cards {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .diferenciais {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .diff-right {
    padding: 2rem 1.5rem;
  }

  .diff-visual {
    min-height: 280px;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .app-phones {
    min-height: 320px;
    order: -1;
  }

  .app-phones img {
    max-height: 320px;
  }

  .app-qrcode {
    display: none;
  }

  .app-badges {
    justify-content: flex-start;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-right {
    align-items: flex-start;
    text-align: left;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}
