* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    background: linear-gradient(to right bottom, #a67c52, #5d4037, #5d4037);
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  header h1 {
    font-size: 2.5rem;
  }
  
  header p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #f0e0d6;
  }
  
  .cafes {
    text-align: center;
    background: #fde7e7;
    color: #5d4037;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
  }
  
  .cafe-opcoes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .cafe-card {
    background-color: #fdf3e7;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 160px;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .cafe-card:hover {
    transform: scale(1.05);
  }
  
  .cafe-card img {
    width: 100%;
    border-radius: 10px;
  }
  
  .cafe-card p {
    margin-top: 10px;
    font-weight: bold;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background-color: #fff;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 300px;
    width: 90%;
  }
  
  .modal-content img {
    width: 100%;
    margin-top: 15px;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  
  .preco {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #5d4037;
    font-weight: bold;
  }
  
  footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #e0d6cd;
  }
  
  footer a {
    color: #ffe0b2;
    font-weight: bold;
    text-decoration: none;
  }