:root {
    --header: #FBF8F3; 
    --background: #FBF8F3; 
    --verde: #4A8B6D;
    --azul: #372D4F;
    --preto: #111827;
    --branco: #ffffff;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Andika', sans-serif;
  }
  
  body {
    background-color:var(--background);
    color: var(--preto);
    line-height: 1.6;
  }
  
  header {
    background-color: var(--header);
    color: var(--azul);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--azul);
  }
  
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-img {
    height: 45px;
    width: auto;
    margin-right: 0.5rem;
    display: inline-block;
  }
  
  nav a {
    color: var(--azul);
    margin-left: 1rem;
    text-decoration: none;
    font-weight: 600;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .hero {
    background-color: var(--background);
    color: var(--azul);
    padding: 4rem 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  .hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .hero-img {
    width: 500px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
  }
  
  .hero-text {
    flex: 1;
    text-align: left;
  }
  
  .sobre {
    background-color: var(--background);
    color: var(--azul);
    padding: 2rem 0;
  }
  
  .sobre .container {
    text-align: left;
  } 

  .novidade {
    padding: 3rem 2rem;
    background-color: var(--background);
    color: var(--azul);
  }
  
  .novidade .container {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .novidade-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .novidade-img {
    width: 130px;
    height: auto;
    flex-shrink: 0;
    border-radius: 8px;
  }
  
  .novidade-texto {
    flex: 1;
    text-align: left;
  }
  
  .novidade-texto p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .novidade .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--azul);
    color: var(--branco);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .novidade .btn:hover {
    background-color: var(--verde);
  }

  footer {
    background-color: var(--azul);
    color: var(--branco);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
  }