:root {
  --areia: #F5E8D6;
  --creme: #FFF7EC;
  --terra: #B9653D;
  --terra-escuro: #8F4A2F;
  --oliva: #5E6442;
  --oliva-claro: #8A8B68;
  --text-dark: #3A3532;
  --text-mid: #5A534D;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--sans);
  background-color: var(--creme);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terracota {
  color: var(--terra);
  font-style: italic;
}

.home {
  width: 100%;
  padding: 40px 20px;
}

.home__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.home__logo img {
  height: 90px;
  width: auto;
  opacity: 0.9;
}

.home__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  background: white;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(185, 101, 61, 0.08);
}

.home__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 20px 20px 0 20px;
  overflow: hidden;
  background-color: var(--areia);
}

.home__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home__text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home__title {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
}

.home__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 12px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn--primary {
  background-color: var(--terra);
  color: #fff;
  box-shadow: 0 8px 24px rgba(185, 101, 61, 0.25);
}

.btn--primary:hover {
  background-color: var(--terra-escuro);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(185, 101, 61, 0.35);
}

@media (max-width: 900px) {
  .home__content {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 40px;
    text-align: center;
  }

  .home__image-wrapper {
    order: -1;
    max-width: 340px;
    margin: 0 auto;
  }

  .home__title {
    font-size: 2.4rem;
  }

  .btn {
    width: 100%;
  }
}
