/* ===================================================
   ABOUT / MEIO BILHÃO
   =================================================== */
.about-section {
  background: var(--cream2);
  padding: 40px 20px;
}

.about-section .container {
  max-width: 1150px;
}

.about-grid {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* ── Photo mosaic ── */
.about-photos {
  flex-shrink: 0;
  width: 175px;
  height: 777px;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.photo-mosaic {
  position: relative;
  height: 777px;
  width: 350px;
}

.pm-photo {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  width: 159px;
}

.pm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Column 1 (left: 0) */
.pm-c1-top { top: 0;     left: 0; height: 279px; }
.pm-c1-mid { top: 295px; left: 0; height: 187px; }
.pm-c1-bot { top: 498px; left: 0; height: 279px; }

/* Column 2 (left: 175px) */
.pm-c2-top { top: 15px;  left: 175px; height: 187px; }
.pm-c2-mid { top: 218px; left: 175px; height: 279px; }
.pm-c2-bot { top: 513px; left: 175px; height: 187px; }

/* ── About text ── */
.about-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 777px;
  padding-top: 15px;
  padding-bottom: 77px;
  padding-left: 175px;
  position: relative;
  z-index: 1;
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.about-btn {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 0;
  text-transform: uppercase;
}

.prazer-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.4;
}

.reconecta-logo-about { margin: 0; }

.reconecta-logo-about img {
  height: 44px;
  width: auto;
  max-width: 260px;
  display: block;
}

.about-headline {
  font-family: 'Cormorant Infant', serif;
  font-size: clamp(1.8rem, 3.5vw, 52px);
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 4px;
}

.about-headline .red {
  color: #d3111a;
  font-weight: 700;
}

.about-body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  letter-spacing: 0.5px;
}

.about-body p + p {
  margin-top: 16px;
}

/* --- responsive --- */
@media (max-width: 1100px) {
  .about-photos {
    width: 140px;
    height: 620px;
  }

  .photo-mosaic {
    width: 280px;
    height: 620px;
  }

  .pm-photo { width: 127px; }

  .pm-c1-top { height: 223px; }
  .pm-c1-mid { top: 236px; height: 150px; }
  .pm-c1-bot { top: 399px; height: 223px; }

  .pm-c2-top { top: 12px; left: 140px; height: 150px; }
  .pm-c2-mid { top: 175px; left: 140px; height: 223px; }
  .pm-c2-bot { top: 411px; left: 140px; height: 150px; }

  .about-text {
    padding-left: 140px;
    min-height: auto;
  }

  .about-body { font-size: 16px; }
}

@media (max-width: 900px) {
  .about-photos {
    width: 100px;
    height: 500px;
  }

  .photo-mosaic {
    width: 210px;
    height: 500px;
  }

  .pm-photo { width: 95px; }

  .pm-c1-top { height: 170px; }
  .pm-c1-mid { top: 183px; height: 115px; }
  .pm-c1-bot { top: 311px; height: 170px; }

  .pm-c2-top { top: 10px; left: 108px; height: 115px; }
  .pm-c2-mid { top: 138px; left: 108px; height: 170px; }
  .pm-c2-bot { top: 321px; left: 108px; height: 115px; }

  .about-text {
    padding-left: 110px;
  }

  .about-headline { font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: 2px; }
  .about-body { font-size: 15px; }
  .about-btn { padding: 12px 24px; font-size: 13px; }
}

@media (max-width: 768px) {
  .about-section { padding: 60px 0; }
  .about-photos { display: none; }

  .about-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .about-text {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    text-align: center;
    width: 100%;
    align-items: center;
  }

  .about-cta { margin-top: 0; }

  .about-header,
  .about-cta {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-headline { font-size: 1.35rem; }
}
