/* Holana Art — estilos específicos da home (index.html) */


.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: grid;
  place-items: start center;
  position: relative;
  overflow: hidden;
}

.hero > .container {
  max-width: none;
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(var(--space-6), 5vw, var(--space-16));
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(var(--space-8), 4vw, var(--space-14));
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + var(--space-4));
  padding-bottom: var(--space-8);
  width: 100%;
  max-width: 1480px;
  margin-inline: auto;
}

.hero__content {
  flex: 1 1 48%;
  max-width: 680px;
  min-width: min(100%, 420px);
  margin-top: 0;
  padding-inline: clamp(var(--space-2), 1.5vw, var(--space-6));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-8);
}

.hero__title {
  font-size: clamp(2.5rem, 4.4vw, 4.35rem);
  line-height: 1.14;
  max-width: 22ch;
}

.hero__title .em-mauve {
  white-space: nowrap;
}

.hero__subtitle {
  max-width: 46ch;
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  line-height: 1.7;
  margin-inline: auto;
}

.hero__actions {
  justify-content: center;
}

.hero__marca-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 48%;
  width: auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
}

.hero__marca-frame {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: visible;
}

/* Imagem alinhada ao centro do bloco de texto */
.hero__marca-img {
  width: 100%;
  height: auto;
  max-width: min(680px, 48vw);
  max-height: min(72vh, 680px);
  min-width: 0;
  display: block;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
  transform: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  filter: drop-shadow(0 18px 36px rgba(44, 32, 24, 0.14));
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
}

.about__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-bottom: var(--space-6);
}

.about__photo-duo {
  position: relative;
  width: 100%;
  isolation: isolate;
}

.about__photo {
  margin: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(145deg, #EDD8C4, #EDD4C8, #D8C89C);
}

.about__photo--primary {
  position: relative;
  z-index: 1;
  width: min(82%, 380px);
  aspect-ratio: 3 / 4;
}

.about__photo--secondary {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 4%;
  width: min(48%, 220px);
  aspect-ratio: 3 / 4;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.about__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 3;
}

.about__badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-button);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}

.about__badge-num {
  font-family: var(--font-title);
  font-size: var(--text-xl);
  display: block;
  line-height: 1;
}

.about__badge-label {
  font-size: var(--text-xs);
  color: var(--gray-elegant);
}

.contact-full-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-20);
  align-items: start;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(var(--space-6), 4vw, var(--space-16));
  padding: var(--space-10) 0 0;
  border-top: 1px solid var(--beige);
  margin: 0;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  justify-items: center;
}

.about-meta {
  margin-top: var(--space-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
  width: 100%;
}

.stat-item { text-align: center; }

.stat-item__num {
  font-family: var(--font-title);
  font-size: var(--text-4xl);
  color: var(--text);
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-elegant);
  display: block;
  margin-top: var(--space-2);
}

@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: var(--space-5);
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-4));
    padding-bottom: var(--space-12);
  }
  .hero__content {
    align-items: center;
    text-align: center;
    max-width: 640px;
    min-width: 0;
    flex: 0 1 auto;
    margin-inline: auto;
    margin-top: 0;
    order: 1;
    padding-inline: var(--space-4);
  }
  .hero__subtitle { max-width: 46ch; margin-inline: auto; }
  .hero__marca-wrap {
    order: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    margin-top: 0;
  }
  .hero__marca-frame {
    max-width: min(520px, 62vw);
  }
  .hero__marca-img {
    max-width: min(520px, 62vw);
    max-height: min(52vh, 520px);
    transform: none;
  }
  .about-full-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .about__photo-wrap {
    max-width: 440px;
    margin-inline: auto;
  }
  .about__photo-duo {
    display: block;
  }
  .about__photo--primary {
    position: relative;
    width: 100%;
    max-width: none;
    right: auto;
    bottom: auto;
  }
  /* Mobile/tablet: só a foto colorida; PB só em telas maiores */
  .about__photo--secondary {
    display: none;
  }
  .about__badge {
    bottom: 0;
    left: 0;
    right: auto;
    padding: var(--space-3) var(--space-4);
  }
  .about__badge-icon {
    width: 34px;
    height: 34px;
  }
  .contact-full-wrap { grid-template-columns: 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
  .contact {
    padding: var(--space-16) 0;
  }
  .contact__form-wrap {
    padding: var(--space-6) var(--space-5);
  }
  .hero__marca-frame {
    max-width: min(440px, 70vw);
  }
  .hero__marca-img {
    max-width: min(440px, 70vw);
    max-height: min(48vh, 440px);
  }
  .about__photo-wrap {
    max-width: 360px;
    padding-bottom: var(--space-4);
  }
  .about__photo {
    border-radius: var(--radius-xl);
  }
}

@media (max-width: 640px) {
  .hero__marca-frame { max-width: 300px; }
  .hero__marca-img {
    max-width: min(300px, 78vw);
    max-height: min(40vh, 300px);
  }
  .hero__content { max-width: 100%; }
  .hero__title { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero__subtitle { max-width: 100%; }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: var(--space-4);
    padding-top: var(--space-8);
  }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}
