/* ===== Página Inicial ===== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.65) 50%,
    rgba(10, 10, 10, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.2s both;
}

.hero__title #hero-nome {
  display: block;
  font-family: var(--font-serif);
  font-size: 1em;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--color-text);
  font-weight: 600;
}

.hero__title--logo {
  margin-bottom: 1.5rem;
}

.hero__logo {
  width: min(520px, 88vw);
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero__text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeUp 1s ease 0.4s both;
}

.hero__cta {
  animation: fadeUp 1s ease 0.6s both;
}

.hero__scroll {
  position: absolute;
  bottom: 6.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}

.hero__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.75) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.hero__footer-text {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0;
}

.hero__footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.hero__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 44px;
}

.hero__footer-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero__footer-link:hover {
  color: var(--color-accent);
}

.hero__footer-link--wa:hover {
  color: #25d366;
}

@media (max-width: 768px) {
  .hero__footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero__footer-links {
    justify-content: center;
    width: 100%;
  }

  .hero__scroll {
    bottom: 8.5rem;
  }
}

@media (max-width: 480px) {
  .hero__footer-text {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .hero__footer-link {
    font-size: 0.68rem;
  }

  .hero__scroll {
    display: none;
  }
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Destaques */

.highlights {
  background: var(--color-bg-soft);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  group: highlight;
}

.highlight-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.highlight-card:hover .highlight-card__img {
  transform: scale(1.08);
}

.highlight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background var(--transition);
}

.highlight-card:hover .highlight-card__overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 100%);
}

.highlight-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.highlight-card__link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.highlight-card:hover .highlight-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* Depoimentos */

.testimonials {
  background: var(--color-bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial {
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color var(--transition);
}

.testimonial:hover {
  border-color: rgba(201, 169, 98, 0.3);
}

.testimonial__stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial__author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Apresentação */

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.about-preview__content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.about-preview__content .btn {
  margin-top: 1rem;
}
