/* === SEÇÃO 2 GASTRONOMIA === */
.gastronomia-nova-section {
  width: 100%;
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 50%, #ECE3DA 50%, #ECE3DA 100%);
  border-bottom: 1px solid #BA8C54;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.gastronomia-nova-content {
  max-width: 800px;
  text-align: center;
}

.talheres-icon {
  width: 100px;
  margin-bottom: -20px;
  margin-top: -30px;
  opacity: 0;
}

.gastronomia-nova-title {
  font-family: 'Cormorant SC', serif;
  font-size: 48px;
  color: #BA8C54;
  margin-bottom: 5px;
  opacity: 0;
}

.gastronomia-nova-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #21151C;
  margin-bottom: 30px;
  line-height: 1.5;
  opacity: 0;
}

.gastronomia-nova-button {
  display: inline-block;
  background-color: #33212C;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 1s ease;
  opacity: 0;
}

.gastronomia-nova-button:hover {
  transform: scale(1.05);
}

/* === RESPONSIVIDADE MOBILE PARA GASTRONOMIA === */
@media (max-width: 768px) {
  .gastronomia-nova-section {
    padding: 40px 15px;
  }
  
  .gastronomia-nova-content {
    max-width: 100%;
  }
  
  .talheres-icon {
    width: 80px;
    margin-bottom: -15px;
    margin-top: -20px;
  }
  
  .gastronomia-nova-title {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .gastronomia-nova-text {
    font-size: 18px;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .gastronomia-nova-button {
    font-size: 15px;
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .gastronomia-nova-section {
    padding: 30px 10px;
  }
  
  .talheres-icon {
    width: 60px;
    margin-bottom: -10px;
    margin-top: -15px;
  }
  
  .gastronomia-nova-title {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .gastronomia-nova-text {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 0 5px;
    line-height: 1.4;
  }
  
  .gastronomia-nova-button {
    font-size: 14px;
    padding: 10px 18px;
  }
}

