/* Estilos do Carrossel de Ofertas Delivery */

.delivery-ofertas-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.delivery-ofertas-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.delivery-ofertas-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0c0c0c;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 0.5rem;
}

.delivery-ofertas-section .titulo-parte1 {
  color: #0c0c0c;
}

.delivery-ofertas-section .titulo-parte2 {
  color: #ffbe33;
}

.delivery-ofertas-section .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 0;
}

/* Loading */
.delivery-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: #6c757d;
}

.delivery-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #ffbe33;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Swiper Container */
.delivery-ofertas-swiper {
  padding: 1rem 0 3rem;
}

.delivery-ofertas-swiper .swiper-button-next,
.delivery-ofertas-swiper .swiper-button-prev {
  color: #ffbe33;
  background: rgba(255, 255, 255, 0.9);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.delivery-ofertas-swiper .swiper-button-next:after,
.delivery-ofertas-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.delivery-ofertas-swiper .swiper-pagination-bullet {
  background: #ffbe33;
}

.delivery-ofertas-swiper .swiper-pagination-bullet-active {
  background: #ffbe33;
}

/* Product Card */
.delivery-produto-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.delivery-produto-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Product Image */
.delivery-produto-imagem {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
  background: #f8f9fa;
}

.delivery-produto-imagem .delivery-produto-link,
.delivery-produto-imagem .delivery-produto-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.delivery-produto-card:hover .delivery-produto-img {
  transform: scale(1.05);
}

.delivery-produto-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

/* Badges */
.delivery-produto-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.delivery-produto-badges .badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-desconto {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: #fff;
}

/* Product Info */
.delivery-produto-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.delivery-produto-nome {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  min-height: 2.8rem;
  font-family: 'Open Sans', sans-serif;
  color: #0c0c0c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.delivery-produto-nome-link {
  color: inherit;
  text-decoration: none;
}

.delivery-produto-nome-link:hover {
  color: #ffbe33;
}

.delivery-produto-descricao {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Preço */
.delivery-produto-preco-container {
  margin-bottom: 1rem;
}

.delivery-preco-original {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}

.delivery-preco-atual {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffbe33;
  display: block;
}

/* Botão Pedir */
.btn-pedir {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #ffbe33 0%, #0c0c0c 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-pedir:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-pedir svg {
  width: 18px;
  height: 18px;
}

/* Section Actions */
.section-actions {
  text-align: center;
  margin-top: 2rem;
}

.btn-ver-cardapio {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #ffbe33;
  border: 2px solid #ffbe33;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ver-cardapio:hover {
  background: #ffbe33;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .delivery-ofertas-section {
    padding: 3rem 0;
  }

  .delivery-ofertas-section .section-title {
    font-size: 2rem;
  }

  .delivery-produto-info {
    padding: 1rem;
  }

  .delivery-preco-atual {
    font-size: 1.25rem;
  }
}
