.about {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.about-title {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.about-text {
  max-width: 900px;
  margin: 0 auto 15px;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.6;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}

.about-image {
  border-radius: 20px;
  padding: 20px;
}

.about-image img {
  max-width: 400px;
  width: 100%;
}

.about-info {
  max-width: 500px;
  text-align: left;
}

.about-info h3 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 10px;
}

.about-info p {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.btn-primary,
.btn-secondary {
  padding: 10px 25px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-secondary {
  background: var(--accent);
  color: var(--primary);
}

.about-note {
  color: red;
  font-size: 12px;
}

.about-subtitle {
  margin-top: 30px;
  color: #0f6c73;
  font-size: 20px;
}

/* =========================
<= 1030px (ajuste geral)
========================= */
@media (max-width: 1030px) {
  .about-content {
    max-width: 900px;
    gap: 30px;
  }

  .about-image img {
    max-width: 350px;
  }
}

/* =========================
<= 1020px (tablet landscape)
========================= */
@media (max-width: 1020px) {
  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 13px;
  }

  .about-info h3 {
    font-size: 20px;
  }

  .about-image img {
    max-width: 320px;
  }
}

/* =========================
<= 768px (tablet / mobile)
========================= */
@media (max-width: 768px) {

  .about {
    padding: 40px 15px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-info {
    text-align: center;
  }

  .about-buttons {
    justify-content: center;
  }

  .about-image img {
    max-width: 280px;
  }

  .about-subtitle {
    font-size: 18px;
  }
}

/* =========================
<= 750px (mobile fino)
========================= */
@media (max-width: 750px) {

  .about-title {
    font-size: 24px;
  }

  .about-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .about-info p {
    font-size: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 14px;
  }

  .about-image {
    padding: 15px;
  }

  .about-image img {
    max-width: 250px;
  }
}

/* =========================
<= 300px (ultra pequeno)
========================= */
@media (max-width: 300px) {

  .about-title {
    font-size: 18px;
  }

  .about-text {
    font-size: 11px;
  }

  .about-info h3 {
    font-size: 16px;
  }

  .about-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    font-size: 12px;
    padding: 8px;
  }

  .about-image img {
    max-width: 180px;
  }
}