@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    list-style: none;
    text-decoration: none;
}
body{
    background:linear-gradient(125deg, #E6D8BD, #F4ECE1);
    padding: 24px;
}
header{
    width: 100%;
    height:40px;
    display:flex;
    padding: 40px;
    justify-content: space-between;
    margin-bottom: 24px;
}
header .nav-logo{
    width: 32px;
    display: flex;
    align-items:center;
    margin-right:4px;
    p{
        font-family: 'poppins';
        font-weight: 600;
        text-align: center;
        font-size:32px;
    }
}
.nav-logo{
    height: 90px;
}
header .nav-principal{
    width: 456px;
    margin:0 352px;
}
header .nav-principal ul{
    display: flex;
    justify-content:space-between;
    font-family: 'poppins';
    font-weight: 400;
    font-size: 22px;
    li a{
    text-decoration: none;
    color: #000;
    }
}
.search{
    width:314px;
    height:60px;
    box-shadow: 0 8px 12px #d1c7bb;
    border: 0 none;
    border-radius: 35px;
    padding: 12px;
    input{
        width:240px;
        height:40px;
        background-color: transparent;
        border: 0 0 none;
        border-color: transparent;
    }
}
.recepcao{
    display: flex;
    justify-content: space-between;
    margin: 140px 0 0 86px;
}
.container{ 
    text-decoration: none;
}
p{
    text-decoration: none;
}
.container .descricao{
    font-size: 22px;
    font-family: 'poppins';
    font-weight: 400;
    line-height: 30.54px;
    color: #000000;
    width: 568px;
    margin: 24px 0 0 6px;
    text-decoration: none;
}
.titulo{
    display:flex;
    justify-content: start;
    align-items: center;
    text-decoration: none;
}
.titulo h1{
    font-size: 125px;
    font-family: 'poppins';
    font-weight: 700;
    color: #E4B659;
    margin-right: 16px;
}
.titulo h2{
    font-size: 52px;
    font-family: 'poppins';
    font-weight: 700;
    line-height: 49.3px;
    color: #2f2f2f;
}
.buttons{
    margin: 25px 0 295px 0;
    display: flex;
}
.button{
    background-color: #2F2F2F;
    color: #fff;
    font-family: 'poppins';
    height: 40px;
    padding: 30px 45px;
    border-radius: 84px;
    font-weight: 600;
    margin-right: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.charge{
    height:635px;
    margin-top: 10px;
    position: absolute;
    left: 950px;
}

.menu-title {
    font-size: 48px;
    font-family: 'Poppins';
    font-weight: 700;
    color: #E4B659;
    margin-bottom: 40px;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.item-card {
    background-color: #46433C;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 260px;
    text-align: center;
    transition: transform 0.3s ease;
}

.item-card:hover {
    transform: scale(1.05);
}

.item-card img {
    width: 200px;
    height: auto;
    margin-bottom: 16px;
}

.item-card h3 {
    font-family: 'Poppins';
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #E4B659;
}

.item-card p {
    font-size: 20px;
    font-family: 'Poppins';
    color: #c29b4e;
    font-weight: 500;
}

.site-footer {
    background-color: #2F2F2F;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #E4B659;
}

.footer-links h3,
.footer-social h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #E4B659;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E4B659;
}

.social-icons a {
    margin-right: 15px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #aaa;
}

.menu-grid, .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .card, .shop-item {
    background: #333;
    color: #ffc107;
    border-radius: 20px;
    padding: 15px;
    text-align: center;
  }
  
  .card img, .shop-item img {
    width: 100%;
    border-radius: 10px;
  }
  
  
  .shop-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
  }
  
  .shop-item {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cart-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
  }

  .signup {
    font-family: 'Poppins', sans-serif;
    background-color: #e0cfa1;
    color: #333;
    justify-content: center;
    margin-top: 15vh;
    min-height: 55vh;
}


  h2{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 70px;
  }
  
  form input {
    padding: 15px;
    width: 100%;
    max-width: 300px;
    background: #333;
    color: #ffc107;
    border: none;
    border-radius: 20px;
    font-size: 16px;
  }
  
  form button {
    margin-top: 20px;
  }

  .btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 12px 30px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn:hover {
    background: #555;
  }

  body {
    margin: 0;
    font-family: sans-serif;
    background: #f5e9c9;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.5rem;
  }
  .logo span {
    display: block;
    font-size: 0.7rem;
    color: #f5c24d;
  }
  
  nav a {
    margin: 0 8px;
    text-decoration: none;
    color: #222;
  }
  
  .search {
    position: relative;
    background: #d3c8a5;
    padding: 5px 10px;
    border-radius: 20px;
  }
  .search input {
    border: none;
    background: none;
    outline: none;
  }
  .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    padding: 2px 5px;
  }
  
  .shop-title {
    margin-left: 300px;
    background-color: #f5c24d;
    display: inline-block;
    padding: 13px 35px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 35px;
    margin-top: 40px;
  }
  
  
  .product-list {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .product-card {
    width: 900px;
    background-color: #2f2f2f;
    color: #ffcb57;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 3px 3px 12px rgba(0,0,0,0.2);
  }
  
  .product-card img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-right: 15px;
  }
  
  .product-info h3 {
    font-size: 1.2rem;
  }
  
  .product-info p {
    font-size: 1rem;
  }
  
  .cart-icon {
    margin-left: auto;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }
  
  .finish-btn {
    background-color: #2f2f2f;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    display: block;
    margin: 0 auto;
    cursor: pointer;
  }
  .favorite-btn {
    margin-top: 10px;
    background: none;
    border: 2px solid #ffc107;
    border-radius: 20px;
    padding: 5px 10px;
    cursor: pointer;
    color: #ffc107;
    font-size: 14px;
  }
  
  .favorite-btn.active {
    background: #ffc107;
    color: #333;
  }
  
  @media (max-width: 1200px) {
    .recepcao {
        margin: 100px 0 0 50px;
    }
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .container .descricao {
        width: 100%;
        font-size: 18px;
    }
    .titulo h1 {
        font-size: 100px;
    }
    .titulo h2 {
        font-size: 40px;
    }
    .buttons .button {
        padding: 25px 40px;
    }
    .charge {
      height: 635px;
      margin-top: -100px; 
      position: relative;
      top: 0; 
  }
}
@media (max-width: 768px) {
    .recepcao {
        flex-direction: column;
        text-align: center;
        margin: 80px 0;
    }
    .titulo h1 {
        font-size: 80px;
    }
    .titulo h2 {
        font-size: 35px;
    }
    .container .descricao {
        font-size: 16px;
        width: 90%;
        margin: 20px auto;
    }
    .charge {
        height: 300px;
        position: relative;
        left: 0;
    }
    .buttons .button {
        width: 80%;
        padding: 20px 30px;
    }
}

@media (max-width: 480px) {
  .nav-principal {
        display: none;
    }
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
}

.logo img {
    max-width: 150px;
}

.search {
    display: none; 
}

.nav-menu {
    margin-top: 15px;
    display: block;
    width: 100%;
}

.nav-menu ul {
    display: none;
}

.nav-menu ul {
  list-style: none;
  display: none; 
}

  .titulo h1 {
        font-size: 60px;
    }
    .titulo h2 {
        font-size: 28px;
    }
    .container .descricao {
        font-size: 14px;
    }
    .buttons {
      margin: 25px 0 295px 0;
      display: flex;
      justify-content: center; 
      width: 100%; 
      position: relative;
      top: 400px; 
  }
  .button {
      background-color: #2F2F2F;
      color: #fff;
      font-family: 'poppins';
      height: 40px;
      padding: 30px 45px;
      border-radius: 84px;
      font-weight: 600;
      margin-right: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
    .charge {
      width: auto;  
      height: 635px;
      margin-top: -430px; 
      position: relative;
      top: 0;  
      object-fit: contain; 
  }
  .items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between; 
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .item-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #46433C;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .item-card:hover {
    transform: scale(1.03);
  }
  
  .item-card img {
    width: 100%; 
    height: auto;
    border-radius: 8px;
  }
  
  .item-card h3 {
    margin: 10px 0 5px;
    font-size: 1.1rem;
  }
  
  .item-card p {
    font-size: 0.95rem;
    color: #444;
  }

  .shop-title {
    margin-left: 0; 
    padding-left: 20px; 
}

  .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 15px;  
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-card {
    background-color: #46433C;  
    border-radius: 8px;  
    padding: 8px;  
    display: flex;
    align-items: center; 
    justify-content: flex-start;  
    height: 100px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);  
    width: 330px;
  }
  
  .product-card img {
    width: 70px;  
    height: 70px;  
    object-fit: contain;
    margin-right: 10px;  
  }
  
  .product-card .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .product-card h3 {
    font-size: 14px; 
    text-align: left;  
    margin-bottom: 4px;  
  }
  
  .product-card .price {
    font-size: 12px;  
    color: #f39c12;
    font-weight: bold;
  }
  
  
}
