* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f8f8f5;
  color: #2b2b2b;
  font-family: Arial, sans-serif;
}

.navbar {
  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  padding: 0 80px;
  box-sizing: border-box;

  background-color: #f8f8f5;
  border-bottom: 1px solid #dcdcdc;

  z-index: 1000;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
  justify-self: start;
  font-weight: 100;
  

}

.logo-link {

  display: inline-flex;

  flex-direction: column;

  align-items: flex-start;

  text-decoration: none;

}

.logo-link h1 {

  font-family: 'Belleza', sans-serif;

  font-size: 64px;

  font-weight: 300;

  letter-spacing: 4px;

  color: #6d9195;

  margin: 0;

}

.logo-line {

  width: 100%;

  height: 4px;

  background-color: #d4af37;

  border-radius: 20px;

  margin-top: 8px;

}


.logo img {
  width: 220px;
  display: block;
}

.nav-buttons {
  gap: 15px;
  justify-self: end;
  display: flex;

}

.btn {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 16px;
  transition: 0.3s;
}

.btn2 {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 16px;
  transition: 0.3s;
  
}

.menu-buttons {
  gap: 15px;
  justify-content: center;
  align-items: center;
  justify-self: center;
  display: flex;
  font-weight: 700;
}

.btn-home {
  color: #676F54;
  font-family: 'Poppins', sans-serif;

}

.btn-home:hover {
  color: #000000;
  background-color: #79B4A9;
}

.btn-about {
  color: #676F54;
}

.btn-about:hover {
  background-color: #79B4A9;
  color: #000000;
}

.btn-feat {
  color: #676F54;
}

.btn-feat:hover {
  background-color: #79B4A9;
  color: #000000;
}



.btn-primary {
  background-color: #79B4A9;
  color: white;
}

.btn-primary:hover {
  background-color: #676F54;
}

.btn-secondary {
  border: 2px solid #79B4A9;
  color: #676F54;
}

.btn-secondary:hover {
  background-color: #79B4A9;
  color: white;
}

/* HERO */

.hero {
    max-width: 1200px;
    margin: 150px auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
}

/* ABOUT HERO */

.about-hero {
    max-width: 1000px;
    margin: 120px auto 60px;
    text-align: center;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3rem;
    color: #7bb5ab;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #666;
}

/* SECTIONS */

.about-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #6f735a;
}

.about-section p {
    font-size: 1.1rem;
    color: #555;
}

/* CARDS */

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 20px;

    box-shadow: 0 5px 20px rgba(0,0,0,.08);

    transition: .3s;
}

.about-card:hover {
    transform: translateY(-8px);
}

.about-card h3 {
    color: #7bb5ab;
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
}

/* LISTA */

.about-section ul {
    margin-top: 20px;
    padding-left: 25px;
}

.about-section li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* CTA FINAL */

.about-cta {
    max-width: 900px;
    margin: 120px auto;
    text-align: center;

    background: white;

    padding: 60px;
    border-radius: 30px;

    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}

.about-cta h2 {
    font-size: 2.5rem;
    color: #6f735a;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #666;
}

.about-cta a {
    display: inline-block;

    background: #7bb5ab;
    color: white;

    text-decoration: none;

    padding: 15px 35px;
    border-radius: 30px;

    font-weight: 600;

    transition: .3s;
}

.about-cta a:hover {
    background: #6aa398;
    transform: translateY(-3px);
}


.newsletter-section {
  margin-top: 80px;
  padding: 60px 40px;
}


.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 70px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  background: linear-gradient(135deg, #D7F2BA, #79B4A9);
  border-radius: 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter-form input {

  width: 280px;

  padding: 16px 20px;

  border-radius: 30px;

  border: none;

  outline: none;
}

.newsletter-form button {

  padding: 16px 24px;

  border-radius: 30px;

  border: none;

  background: #676F54;

  color: white;

  cursor: pointer;
}

.newsletter-text h3 {
  font-size: 36px;
}

.newsletter-text p { 
  color: #000000;
}

footer {
  background-color: #676F54;
  padding: 50px 40px 20px;
  color: white;
}

/* CONTAINER PRINCIPAL */
.footer-top {
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 50px;
  flex-wrap: wrap;
}

/* LOGO */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-brand h3 {
  font-family: 'Belleza', sans-serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #6d9195;
  margin: 0;
}

/* LINHA DA LOGO */
.footer-line {
  width: 220px;
  height: 4px;
  background-color: #d4af37;
  border-radius: 999px;
}

/* ÍCONES */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.footer-social a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: black;
  font-size: 26px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #79B4A9;
  transform: translateY(-3px);
}

/* COLUNAS */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 18px;

  min-width: 180px;
}

/* TÍTULOS */
.footer-column h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

/* LINKS */
.footer-column a {
  text-decoration: none;
  color: #e8e8e8;
  font-size: 16px;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #79B4A9;
  transform: translateX(4px);
}

/* PARTE DE BAIXO */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);

  margin-top: 60px;
  padding-top: 25px;

  text-align: center;
}

.footer-bottom p {
  color: #d9d9d9;
  font-size: 14px;
}




.links-social {
  display: flex;
  gap: 32px;
  margin-top: 30px;
  margin-left: 65px;
}

.links-social img {
  width: 40px;
  height: 32px;
  transition: 0.3s;
  
}

.links-social img:hover {
  transform: translateY(-4px);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 200px;
  margin-top: -120px;
  padding: -50px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links p {
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #2b2b2b;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #79B4A9;
  transform: translateX(4px);
}

/* =========================
   RESPONSIVO - ABOUT
========================= */

@media (max-width: 900px) {

  .navbar {
    height: auto;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .logo {
    justify-self: center;
    align-items: center;
  }

  .logo-link {
    align-items: center;
  }

  .logo-link h1 {
    font-size: 48px;
  }

  .menu-buttons,
  .nav-buttons {
    justify-self: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .btn,
  .btn2 {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    margin: 60px auto;
    gap: 35px;
  }

  .hero-image img {
    max-width: 320px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .about-hero {
    margin: 70px auto 40px;
  }

  .about-hero h1 {
    font-size: 2.3rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-section {
    margin: 55px auto;
  }

  .about-section h2 {
    font-size: 1.9rem;
    text-align: center;
  }

  .about-section p,
  .about-section li {
    font-size: 1rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-cta {
    margin: 70px 20px;
    padding: 35px 25px;
  }

  .about-cta h2 {
    font-size: 2rem;
  }

  .newsletter-section {
    padding: 40px 20px;
  }

  .newsletter-container {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .newsletter-text h3 {
    font-size: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }
}

@media (max-width: 480px) {

  .logo-link h1 {
    font-size: 42px;
  }

  .menu-buttons,
  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn,
  .btn2 {
    width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-section h2,
  .about-cta h2,
  .newsletter-text h3 {
    font-size: 1.7rem;
  }

  .hero-image img {
    max-width: 260px;
  }
}
