 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

 body {
     font-family: 'Poppins', sans-serif;
     scroll-behavior: smooth;
 }

 .hero-gradient {
     background: linear-gradient(135deg, rgba(255, 228, 225, 0.9) 0%, rgba(173, 216, 230, 0.8) 50%, rgba(255, 255, 224, 0.9) 100%);
 }

 .flavor-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .flavor-card {
     transition: all 0.3s ease;
 }

 .social-icon {
     transition: all 0.3s ease;
 }

 .social-icon:hover {
     transform: scale(1.2);
 }

 .whatsapp-btn {
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
     }
 }

 .imglogo {
     width: 70px;
 }

 .textlogo {
     font-size: large;
 }

 #products img{
    height: 350px;
    object-fit: cover;
    object-position: bottom;
 }

  #products .picole{
    height: 350px;
    object-fit: cover;
    object-position: top !important;
 }

 #products .acai{
    height: 350px;
    object-position: 50% 30% !important;
 }

 /* Modal styles */
  .modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.9);
     overflow: auto;
 }

 .modal-content {
     margin: auto;
     display: block;
     max-width: 90%;
     max-height: 90vh;
     width: auto;
     height: auto;
     margin-top: 5vh;
     object-fit: contain;
 }

 .close {
     position: absolute;
     top: 20px;
     right: 35px;
     color: #f1f1f1;
     font-size: 40px;
     font-weight: bold;
     transition: 0.3s;
     cursor: pointer;
 }

 .close:hover {
     color: #bbb;
 }

 /* Carousel styles - REVISADO */
 .carousel-container {
     position: relative;
     max-width: 100%;
     overflow: hidden;
     padding-bottom: 40px;
     /* Espaço para os indicadores */
 }

 .carousel {
     display: flex;
     transition: transform 0.5s ease;
 }

 .carousel-item {
     min-width: 100%;
     padding: 0 10px;
     box-sizing: border-box;
 }

 /* Ajustes responsivos para os itens */
 @media (min-width: 640px) {
     .carousel-item {
         min-width: 50%;
     }
 }

 @media (min-width: 1024px) {
     .carousel-item {
         min-width: calc(100% / 3);
     }
 }

 /* Ajustes para as imagens - NOVA ABORDAGEM */
 .carousel-item img {
     width: 100%;
     height: 400px;
     /* Altura base */
     object-fit: cover;
     border-radius: 8px;
 }

 @media (min-width: 768px) {
     .carousel-item img {
         height: 200px;
     }
 }

 @media (min-width: 1024px) {
     .carousel-item img {
         height: 500px;
         /* Altura maior para desktop */
     }
 }

 /* Botões de navegação - REVISADO */
 .carousel-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.9);
     border: none;
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     transition: all 0.3s;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
 }

 .carousel-btn i {
     font-size: 1rem;
     color: #333;
 }

 .carousel-btn:hover {
     background: rgba(255, 255, 255, 1);
 }

 .carousel-btn.prev {
     left: 15px;
 }

 .carousel-btn.next {
     right: 15px;
 }

 .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap; /* Para muitos indicadores */
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #4a5568;
    transform: scale(1.2);
}