* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #e9e5df;
  color: #2f2f2f;
}

.navbar {
  padding: 30px 60px;
}

.logo {
  height: 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 60px;
  gap: 40px;
}

.hero-text h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 400;
}

.btn {
  display: inline-block;
  background: #d6d0c6;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  color: #2f2f2f;
  margin-bottom: 20px;
}

.redes-text {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.socials img {
  width: 22px;
  margin-right: 15px;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 80px 60px;
  gap: 60px;
}

.contact-image img {
  width: 100%;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #d6d0c6;
  margin-bottom: 10px;
}

.contact-form textarea {
  height: 140px;
  resize: none;
}

.contact-form button {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #9c9078;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
}

.footer{
  padding: 40px 60px;
  text-align: right;
}

.footer-mark{
  height: 18px;   /* ajustá a gusto */
  width: auto;
  display: inline-block;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .navbar {
    padding: 20px;
  }

  .hero,
  .contact-section {
    padding: 40px 20px;
  }

  .footer {
    padding: 30px 20px;
  }
}

.socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.socials a {
  text-decoration: none;
  display: inline-flex;
}

.socials img {
  width: 24px;
  height: 24px;
  display: block;
}