.historia-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
}

/* GRID: texto ao lado da imagem */
.historia-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.historia-coluna-texto {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  font-size: 35px;
  line-height: 1.7;
  color: #000;
}
.historia-coluna-texto span {
  color: #f9c56a;
  font-weight: 700;
}

.historia-coluna-imagem {
  flex: 1 1 40%;
  text-align: center;
}

.historia-coluna-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.12);
}

.historia-botao-comprar {
  display: inline-block;
  margin-top: 100px; /* Aumentado */
  background: linear-gradient(to right, #07b45b, #07b45b);
  color: white;
  font-weight: bold;
  padding: 14px 24px;
  font-size: 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.historia-botao-comprar:hover {
  background: linear-gradient(to right, #2ac773, #2ac773);
}

/* Texto abaixo da imagem */
.historia-rodape {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-size: 30px;
  line-height: 1.8;
  color: #000;
}

.historia-rodape span {
  color: #120a35;
  font-size: 2rem;
}

.historia-rodape .destaque-dourado {
  color: #d4a246;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  margin: 40px 0 30px;
  line-height: 1.4;
}

.historia-rodape .assinatura {
  margin-top: 30px;
  font-size: 1.8rem;
  color: #121331;
  text-align: center;
  font-weight: 600;
  font-style: italic;
}

.cta-final {
  color: #0b0d4f;
  font-weight: bold;
  text-align: center;
  padding: 14px;
  margin-top: 30px;
  border-radius: 6px;
  font-size: 2.8rem;
}

/* Responsivo */
@media (max-width: 1024px) {
  .historia-coluna-texto {
    font-size: 28px;
    line-height: 1.6;
  }

  .historia-rodape {
    font-size: 24px;
  }

  .historia-rodape .assinatura {
    font-size: 1.5rem;
  }

  .cta-final {
    font-size: 60px;
  }
}

/* Telas até 900px */
@media (max-width: 900px) {
  .historia-coluna-texto {
    font-size: 22px;
    line-height: 1.6;
  }

  .historia-rodape {
    font-size: 20px;
  }

  .historia-rodape .assinatura {
    font-size: 1.1rem;
  }

  .cta-final {
    font-size: 28px;
  }
}

/* Telas até 768px */
@media (max-width: 768px) {
  .historia-grid {
    flex-direction: column;
  }
  .historia-botao-comprar {
    font-size: 0.95rem;
    padding: 12px 20px;
    margin-top: 70px; /* Também aumentado no mobile */
  }
  .historia-coluna-texto,
  .historia-coluna-imagem {
    flex: 1 1 100%;
  }

  .historia-botao-comprar {
    font-size: 0.95rem;
    padding: 12px 20px;
    margin-top: 50px; /* Também aumentado no mobile */
  }

  .historia-coluna-texto {
    font-size: 18px;
    line-height: 1.6;
  }

  .historia-rodape {
    font-size: 18px;
  }

  .historia-rodape .assinatura {
    font-size: 1rem;
  }

  .cta-final {
    font-size: 25px;
    padding: 12px;
  }
}
