/* ===================================================
   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 carousel ── */
.about-photos {
  flex-shrink: 0;
  width: 350px;
  height: 777px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Sombra nas extremidades */
.about-photos::before,
.about-photos::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 3;
  pointer-events: none;
}

.about-photos::before {
  top: 0;
  background: linear-gradient(to bottom, var(--cream2) 0%, transparent 100%);
}

.about-photos::after {
  bottom: 0;
  background: linear-gradient(to top, var(--cream2) 0%, transparent 100%);
}

.photo-mosaic {
  display: flex;
  gap: 16px;
  height: 100%;
}

.carousel-col {
  width: 159px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  contain: layout style;
}

.carousel-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.carousel-down .carousel-track {
  animation: scrollDown 32s linear infinite;
}

.carousel-up .carousel-track {
  animation: scrollUp 32s linear infinite;
}

.pm-photo {
  border-radius: 16px;
  overflow: hidden;
  width: 159px;
  flex-shrink: 0;
}

.pm-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scrollDown {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, -50%, 0); }
}

@keyframes scrollUp {
  0% { transform: translate3d(0, -50%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* ── 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: 0;
  position: relative;
  z-index: 1;
}

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

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

.about-btn {
  padding: 16px 48px;
  font-size: 18px;
  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: 280px;
    height: 620px;
  }

  .carousel-col { width: 127px; }
  .pm-photo { width: 127px; }

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

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

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

  .carousel-col { width: 95px; }
  .pm-photo { width: 95px; }

  .about-text {
    padding-left: 0;
  }

  .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; }
}
