/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fafafa;
  }
  
  /* Header */
  header {
    background: linear-gradient(45deg, #8e44ad, #c0392b);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  
  .header-content h1 {
    font-size: 3em;
    margin-bottom: 10px;
  }
  
  .header-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  header button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #fff;
    color: #c0392b;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  header button:hover {
    background-color: #f0f0f0;
  }
  
  /* Seção de Descrição */
  .description {
    padding: 40px 20px;
    text-align: center;
  }
  
  .description .desc-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  
  .description img {
    max-width: 300px;
    margin: 20px;
    border-radius: 10px;
  }
  
  .description .desc-text {
    max-width: 500px;
    margin: 20px;
    text-align: left;
  }
  
  /* Seção de Depoimentos */
  .testimonials {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
  }
  
  .testimonials h2 {
    margin-bottom: 30px;
  }
  
  .testimonial-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .testimonial {
    background-color: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
  }
  
  .testimonial img {
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  /* Seção de Call-to-Action */
  .cta {
    background-color: #c0392b;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .cta p {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  .cta button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: #fff;
    color: #c0392b;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .cta button:hover {
    background-color: #f0f0f0;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block; /* evita espaços indesejados abaixo da imagem */
  }
  
  /* Galeria de Bolos */
  .gallery {
    padding: 40px 20px;
    text-align: center;
    background-color: #f5f5f5;
  }
  
  .gallery h2 {
    margin-bottom: 30px;
    color: #333;
  }
  
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .gallery-item {
    width: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }