* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #2c2c2e;
  background-color: #caaf94;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: #caaf94;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
  width: auto;
}

.menu {
  display: flex;
  gap: 2rem;
}

.menu li a {
  font-weight: 500;
  color: #2c2c2e;
  transition: color 0.3s;
}

.menu li a:hover {
  opacity: .8;
}

#um {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  height: 100vh;
  padding: 120px 2.5% 25px;
  color: #2c2c2e;
  background-color: #caaf94;
}

.hero-content {
  width: 50%;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: #94734d;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary {
  background-color: #b68d5f;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 19.5px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 270px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


#dois {
  padding: 25px 5% 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background-color: #caaf94;
  width: 100%;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  width: 100%;
  max-width: 50%;

  .dollar-icon {
    width: 300px;
    height: auto;
    margin-bottom: 1rem;
  }
}

#calculadora {
  width: 100%;
  max-width: 50%;
}

#dois h2 {
  font-size: 4.375rem;
  margin-bottom: 0;
}

#dois h2 span {
  color: #94734d;
}

footer {
  background-color: #94734d;
  padding: 3rem 5% 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  color: #fff;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #caaf94;
  border-radius: 10px;
  transition: background-color 0.3s;
  color: #2c2c2e;
}

.footer-social a:hover {
  opacity: .8;
}

.footer-social img {
  width: 30px;
  height: 30px;
}

.footer-hours {
  text-align: right;
}

.footer-hours h2 {
  margin-bottom: 1rem;
  font-weight: bold;
  color: #fff;
}

.footer-hours p {
  font-size: 1.1rem;
  opacity: 0.8;
}

html {
  scroll-behavior: smooth;
}


@media (max-width: 1024px) {

  header {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .menu {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
  }

  .menu li {
    width: 100%;
    text-align: center;
  }

  #um {
    flex-direction: column;
    height: auto;
    padding: 80px 5% 25px;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-primary {
    width: 100%;
    font-size: 16px;
  }

  #dois {
    flex-direction: column;
    text-align: center;
    padding: 20px 5%;
  }

  .cta {
    width: 100%;
  }

  .dollar-icon {
    width: 250px;
  }

  #dois h2 {
    font-size: 3rem;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-hours {
    text-align: center;
  }

  .footer-hours h2, .footer-hours p {
    font-size: 1rem;
  }

  element.style {
    position: relative;
    width: auto;
    height: 615px;
  }
}

@media (max-width: 768px) {

  .menu{
    display: none;
  }

  header {
    padding: 0.5rem;
  }

  .menu {
    gap: 0.5rem;
  }

  #um {
    padding: 60px 5% 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  #dois {
    padding: 15px 5%;
  }

  #dois h2 {
    font-size: 2rem;
  }

  .dollar-icon {
    width: 150px;
  }

  footer {
    padding: 2rem 5%;
    gap: 1rem;
  }

  element.style {
    position: relative;
    width: auto;
    height: 615px;
  }
}

@media (max-width: 480px) {

  .menu{
    display: none;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .btn-primary {
    padding: 0.8rem 1rem;
    font-size: 14px;
  }

  #dois h2 {
    font-size: 1.5rem;
  }

  .footer-social a {
    flex-direction: column;
    align-items: center;
  }

  .footer-social img {
    width: 25px;
    height: 25px;
  }

  element.style {
    position: relative;
    width: auto;
    height: 615px;
  }
}
