/* ==================== RECEITA DO DIA ==================== */

.recipe-of-day-container {
    margin-bottom: 32px;
}

.recipe-of-day-card {
    background: linear-gradient(135deg, #FFE5F1 0%, #FFD6E8 100%);
    border-radius: 24px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(236, 64, 122, 0.2);
    box-shadow: 0 4px 16px rgba(236, 64, 122, 0.15);
    position: relative;
    overflow: hidden;
}

.recipe-of-day-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(236, 64, 122, 0.25);
    border-color: var(--medium-pink);
}

.recipe-of-day-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.recipe-of-day-badge {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-pink);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.recipe-of-day-badge svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.recipe-of-day-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.recipe-of-day-info {
    flex: 1;
}

.recipe-of-day-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-title);
    margin-bottom: 8px;
    line-height: 1.3;
}

.recipe-of-day-description {
    font-size: 14px;
    color: var(--dark-subtitle);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-of-day-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.recipe-of-day-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--dark-subtitle);
    font-weight: 500;
}

.recipe-of-day-meta-item svg {
    color: var(--medium-pink);
}

.recipe-of-day-image-container {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.recipe-of-day-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recipe-of-day-card:hover .recipe-of-day-image {
    transform: scale(1.1);
}

.recipe-of-day-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-pink);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.recipe-of-day-card:hover .recipe-of-day-arrow {
    transform: translateX(4px);
    background: var(--dark-pink);
    color: white;
}

/* Skeleton Loading */
.recipe-of-day-skeleton {
    background: linear-gradient(135deg, #FFE5F1 0%, #FFD6E8 100%);
    border-radius: 24px;
    padding: 20px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.recipe-of-day-skeleton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .recipe-of-day-title {
        font-size: 20px;
    }
    
    .recipe-of-day-image-container {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .recipe-of-day-content {
        flex-direction: column-reverse;
    }
    
    .recipe-of-day-image-container {
        width: 100%;
        height: 180px;
        border-radius: 16px;
    }
    
    .recipe-of-day-title {
        font-size: 18px;
    }
    
    .recipe-of-day-card {
        padding: 16px;
    }
}